Set libraries and file paths

# load libraries
library(tidyverse)
library(maftools)

# define directories 
root_dir <- rprojroot::find_root(rprojroot::has_dir(".git"))
analysis_dir <- file.path(root_dir, "analyses", "two-hits")
input_dir <- file.path(analysis_dir, "input")
results_dir <- file.path(analysis_dir, "results")
data_dir <- file.path(root_dir, "data")
plot_dir <- file.path(analysis_dir, "plots")

# If the input and results directories do not exist, create it
if (!dir.exists(results_dir)) {
  dir.create(results_dir, recursive = TRUE)
}

# add histologies file so we can subset maf
histologies_file <- file.path(root_dir,"analyses", 
                              "collapse-tumor-histologies", "results", 
                              "germline-primary-plus-tumor-histologies-plot-groups-clin-meta.tsv")

# remove cell lines from histologies file
opc_hist_file <- file.path(data_dir, "histologies.tsv")

plp_sv_file <- file.path(data_dir, "pbta_germline_svs.tsv")

# goi file
cpg_file <- file.path(root_dir, "analyses", "oncokb-annotation", "input", "cpg.txt")

Load oncokb annotated maf and explore data

germline <- read_tsv(file.path(root_dir, params$germ_in)) %>%
  bind_rows(read_tsv(file.path(data_dir,
                               "pbta-merged-plp-variants-autogvp-abridged-lowVAF-cpgs.tsv"))) %>%
  dplyr::rename(Matched_Norm_Sample_Barcode = Kids_First_Biospecimen_ID_normal,
                Hugo_Symbol = gene_symbol_vep,
                HGVSc_germ = HGVSc,
                HGVSp_germ = HGVSp) 
Rows: 2869 Columns: 23── Column specification ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: "\t"
chr (19): Kids_First_Biospecimen_ID_normal, chr, ref, alt, variant_ids, gene_symbol_vep, variant_classification_vep, HGVSg, HGVSc, HGVSp, autogvp_call, autogvp_call_reason, clinv...
dbl  (4): start, clinvar_stars, clinvar_variant_id, gnomad_3_1_1_AF_non_cancer_popmax
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.Rows: 10 Columns: 24── Column specification ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: "\t"
chr (20): Kids_First_Biospecimen_ID_normal, chr, ref, alt, variant_ids, gene_symbol_vep, variant_classification_vep, HGVSg, HGVSc, HGVSp, autogvp_call, autogvp_call_reason, clinv...
dbl  (4): start, clinvar_stars, clinvar_variant_id, gnomad_3_1_1_AF_non_cancer_popmax
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
integrated_hist <- read_tsv(histologies_file)
Rows: 837 Columns: 36── Column specification ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: "\t"
chr (26): Kids_First_Participant_ID, Kids_First_Biospecimen_ID_normal, sample_id_normal, Kids_First_Biospecimen_ID_tumor, sample_id_tumor, tumor_descriptor, pathology_diagnosis, ...
dbl (10): broad_histology_order, age_at_diagnosis_days, age_last_update_days, OS_days, EFS_days, PC1, PC2, PC3, PC4, PC5
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
opc_hist <- read_tsv(opc_hist_file, guess_max = 3000) %>%
  filter(!is.na(pathology_diagnosis),
         experimental_strategy == "WGS",
         tumor_descriptor != "Derived Cell Line")
Rows: 47895 Columns: 66── Column specification ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: "\t"
chr (45): Kids_First_Participant_ID, Kids_First_Biospecimen_ID, sample_id, aliquot_id, sample_type, tumor_descriptor, composition, cell_line_composition, pathology_diagnosis, pat...
dbl (21): cell_line_passage, OS_days, EFS_days, age_at_diagnosis_days, age_at_event_days, age_at_chemo_start, age_at_radiation_start, age_last_update_days, dkfz_v12_methylation_s...
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# CPGs
cpg <- read_lines(cpg_file)

# load maf
maf <- data.table::fread(file.path(root_dir, params$maf_in), data.table = F) %>%
  filter(Tumor_Sample_Barcode %in% opc_hist$Kids_First_Biospecimen_ID)

# CPGs without somatic hits
setdiff(cpg, unique(maf$Hugo_Symbol))
[1] "GPC161"   "H19"      "KCNQ1OT1" "L2HGA"    "MRE11A"   "RMRP"     "TNFRSF6" 
# table of gene counts by oncogenic effect
maf %>%
  count(ONCOGENIC) %>%
  arrange(-n)

# extract oncogenic/likely oncogenic and/or other LOF variants
lof_hits <- maf %>%
  filter(ONCOGENIC %in% c("Likely Oncogenic", "Oncogenic", "Resistance") |
           Variant_Classification %in% c("Frame_Shift_Del", "Frame_Shift_Ins",
                                         "Missense_Mutation", "Nonsense_Mutation",
                                         "Splice_Site", "Translation_Start_Site")) %>%
  write_tsv(file.path(results_dir, "pbta-oncokb-oncogenic-lof-maf.tsv"))

# prevalence by gene
lof_hits %>%
  count(Hugo_Symbol) %>%
  arrange(-n)

# prevalence by variant in oncokb
lof_hits %>%
  count(VARIANT_IN_ONCOKB) %>%
  arrange(-n)

# prevalence by variant in oncokb
lof_hits %>%
  count(MUTATION_EFFECT) %>%
  arrange(-n)

# how many are hotspots?
lof_hits %>%
  count(HotSpotAllele) %>%
  arrange(-n)
NA

Integrate with germline data

# collapse calls a bit
lof_hits_subset <- lof_hits %>%
  mutate(VAF = t_alt_count / t_depth) %>%
  select(Matched_Norm_Sample_Barcode, Tumor_Sample_Barcode, Hugo_Symbol, Transcript_ID, HGVSc, HGVSp, VAF, SIFT, PolyPhen, Variant_Classification, HotSpotAllele, ONCOGENIC, MUTATION_EFFECT, VARIANT_IN_ONCOKB)

# two hit CPG matches
germline_somatic_gene_matches <- germline %>%
  inner_join(lof_hits_subset, by = c("Matched_Norm_Sample_Barcode", "Hugo_Symbol")) %>%
  write_tsv(file.path(results_dir, "germline-somatic-two-gene-hits.tsv"))
Warning: Detected an unexpected many-to-many relationship between `x` and `y`.

List germline + somatic gene hits by sample

collapsed <- germline %>%
  filter(Hugo_Symbol %in% cpg) %>%
  dplyr::rename(Kids_First_Biospecimen_ID_normal = Matched_Norm_Sample_Barcode) %>%
  group_by(Kids_First_Biospecimen_ID_normal) %>%
  summarise(Hugo_Symbol = str_c(sort(unique(Hugo_Symbol)), collapse = "; ")) %>%
  left_join(integrated_hist)
Joining with `by = join_by(Kids_First_Biospecimen_ID_normal)`
collapsed_lof <- lof_hits_subset %>%
  dplyr::rename(Kids_First_Biospecimen_ID_normal = Matched_Norm_Sample_Barcode,
                Kids_First_Biospecimen_ID_tumor_maf = Tumor_Sample_Barcode,
                Hugo_Symbol_somatic = Hugo_Symbol) %>%
  group_by(Kids_First_Biospecimen_ID_normal, Kids_First_Biospecimen_ID_tumor_maf) %>%
  summarise(Hugo_Symbol_somatic = str_c(sort(unique(Hugo_Symbol_somatic)), collapse = "; "))
`summarise()` has grouped output by 'Kids_First_Biospecimen_ID_normal'. You can override using the `.groups` argument.
collapsed_germ_som <- collapsed %>%
  left_join(collapsed_lof, by = "Kids_First_Biospecimen_ID_normal") %>%
  write_tsv(file.path(results_dir, "germline-somatic-collapsed-by-gene.tsv"))
germline_sv <- read_tsv(plp_sv_file) %>%
  dplyr::rename(Matched_Norm_Sample_Barcode = Kids_First_Biospecimen_ID_normal,
                Hugo_Symbol = Hugo_Symbol_cpg) 
Rows: 18 Columns: 10── Column specification ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: "\t"
chr (7): Kids_First_Biospecimen_ID_normal, Chromosome, Type, Classification, Caller, Hugo_Symbol_all, Hugo_Symbol_cpg
dbl (3): Start, End, Length
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# two hit CPG matches
germline_sv_somatic_gene_matches <- germline_sv %>%
  inner_join(lof_hits_subset, by = c("Matched_Norm_Sample_Barcode", "Hugo_Symbol")) %>%
  write_tsv(file.path(results_dir, "germline-sv-somatic-two-gene-hits.tsv"))

Create lollipop plots of germline variants + somatic mutations. First, modify germline variant df to be compatible with maf columns:

# Load amino acid abbreviation key
aa_key <- read_tsv(file.path(input_dir, "aa_symbol_key.tsv"))
Rows: 21 Columns: 2── Column specification ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
Delimiter: "\t"
chr (2): AA_three_letter, AA_one_letter
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
germ_maf <- germline_somatic_gene_matches %>%
  dplyr::select(-HGVSc, -HGVSp, -Variant_Classification) %>%
  # rename columns to match maf columns
  dplyr::rename(Chromosome = chr,
                Start_Position = start,
                Variant_Classification = variant_classification_vep,
                Reference_Allele = ref,
                HGVSc = HGVSc_germ,
                HGVSp_Short = HGVSp_germ) %>%
  # modify variant classifications to match those in maf
  dplyr::mutate(Variant_Classification = case_when(
    Variant_Classification == "missense_variant" ~ "Missense_Mutation",
    grepl("stop_gained", Variant_Classification) ~ "Nonsense_Mutation",
    grepl("splice_acceptor|splice_donor", Variant_Classification) ~ "Splice_Site",
    Variant_Classification == "frameshift_variant" & nchar(alt) > nchar(Reference_Allele) ~ "Frame_Shift_Ins",
    Variant_Classification == "frameshift_variant" & nchar(alt) < nchar(Reference_Allele) ~ "Frame_Shift_Del",
    Variant_Classification == "inframe_deletion" ~ "In_Frame_Del",
    TRUE ~ Variant_Classification
  )) %>%
  # add variant_type column
  dplyr::mutate(Variant_Type = case_when(
    nchar(alt) == nchar(Reference_Allele) ~ "SNP",
    nchar(alt) < nchar(Reference_Allele) ~ "DEL",
    nchar(alt) > nchar(Reference_Allele) ~ "INS"
  )) %>%
  dplyr::select(Matched_Norm_Sample_Barcode, Hugo_Symbol,
                Tumor_Sample_Barcode,
                Chromosome, Start_Position, Variant_Classification,
                Reference_Allele, HGVSc, HGVSp_Short, Variant_Type)

merged_maf <- maf %>%
  bind_rows(germ_maf) %>%
  # Replace AA symbols with one-letter symbols
  dplyr::mutate(HGVSp_Short = reduce2(aa_key$AA_three_letter, aa_key$AA_one_letter,
                                      .init = HGVSp_Short, str_replace))

write_tsv(merged_maf, file.path(results_dir, "germ-somatic-merged-maf.tsv"))

Re-load merged_maf as maf object and generate lollipop plots

merged_maf <- maftools::read.maf(file.path(results_dir, "germ-somatic-merged-maf.tsv"))
-Reading
-Validating
--Removed 1 duplicated variants
-Silent variants: 25629 
-Summarizing
--Mutiple centers found
.;NA-Processing clinical data
--Missing clinical data
-Finished in 0.569s elapsed (0.475s cpu) 
ids <- germline_somatic_gene_matches %>%
  distinct(Tumor_Sample_Barcode) %>%
  pull(Tumor_Sample_Barcode)

for (id in ids){
  
  gene <- germline_somatic_gene_matches %>%
    dplyr::filter(Tumor_Sample_Barcode == id) %>%
    pull(Hugo_Symbol) %>%
    unique()
  
  to_rm <- unique(maf$Tumor_Sample_Barcode[maf$Tumor_Sample_Barcode != id])

  plot_maf <- maftools::filterMaf(merged_maf, tsb = to_rm)
  
  pdf(file.path(plot_dir,
                   glue::glue("{id}-{gene}-lollipop.pdf")),
         width = 6, height = 4)
  
  lollipopPlot(plot_maf, gene = gene, AACol = "HGVSp_Short", 
               showDomainLabel = FALSE, labPosAngle = 0, 
               labelPos = maf$Start_Position, legendTxtSize = 1, 
               labPosSize = 1.25,
               pointSize = 2.5,
               repel = TRUE,
               showMutationRate = FALSE,
               collapsePosLabel = TRUE)
  
  dev.off()
  
}
Removed 20343 variants from 796 samples
Removed 1 mutations for which AA position was not available
Position 193209428 doesn't seem to be mutated. Here are the mutated foci.Position 29766538 doesn't seem to be mutated. Here are the mutated foci.Position 112755960 doesn't seem to be mutated. Here are the mutated foci.Position 42015605 doesn't seem to be mutated. Here are the mutated foci.Position 42160368 doesn't seem to be mutated. Here are the mutated foci.Position 116801986 doesn't seem to be mutated. Here are the mutated foci.Position 31111161 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 89260226 doesn't seem to be mutated. Here are the mutated foci.Position 39198411 doesn't seem to be mutated. Here are the mutated foci.Position 1210863 doesn't seem to be mutated. Here are the mutated foci.Position 32384854 doesn't seem to be mutated. Here are the mutated foci.Position 34849696 doesn't seem to be mutated. Here are the mutated foci.Position 77767397 doesn't seem to be mutated. Here are the mutated foci.Position 10279014 doesn't seem to be mutated. Here are the mutated foci.Position 47761773 doesn't seem to be mutated. Here are the mutated foci.Position 80846751 doesn't seem to be mutated. Here are the mutated foci.Position 178157926 doesn't seem to be mutated. Here are the mutated foci.Position 50339594 doesn't seem to be mutated. Here are the mutated foci.Position 93149621 doesn't seem to be mutated. Here are the mutated foci.Position 148848926 doesn't seem to be mutated. Here are the mutated foci.Position 36889457 doesn't seem to be mutated. Here are the mutated foci.Position 67483199 doesn't seem to be mutated. Here are the mutated foci.Position 25209531 doesn't seem to be mutated. Here are the mutated foci.Position 23813601 doesn't seem to be mutated. Here are the mutated foci.Position 133827335 doesn't seem to be mutated. Here are the mutated foci.Position 147950082 doesn't seem to be mutated. Here are the mutated foci.Position 10237973 doesn't seem to be mutated. Here are the mutated foci.Position 3579171 doesn't seem to be mutated. Here are the mutated foci.Position 29306653 doesn't seem to be mutated. Here are the mutated foci.Position 29374377 doesn't seem to be mutated. Here are the mutated foci.Position 38986472 doesn't seem to be mutated. Here are the mutated foci.Position 168999279 doesn't seem to be mutated. Here are the mutated foci.Position 1790679 doesn't seem to be mutated. Here are the mutated foci.Position 54239837 doesn't seem to be mutated. Here are the mutated foci.Position 54246732 doesn't seem to be mutated. Here are the mutated foci.Position 50302777 doesn't seem to be mutated. Here are the mutated foci.Position 87955963 doesn't seem to be mutated. Here are the mutated foci.Position 40189997 doesn't seem to be mutated. Here are the mutated foci.Position 31149278 doesn't seem to be mutated. Here are the mutated foci.Position 133588519 doesn't seem to be mutated. Here are the mutated foci.Position 133662865 doesn't seem to be mutated. Here are the mutated foci.Position 133934041 doesn't seem to be mutated. Here are the mutated foci.Position 156868152 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 47623828 doesn't seem to be mutated. Here are the mutated foci.Position 144524009 doesn't seem to be mutated. Here are the mutated foci.Position 35465255 doesn't seem to be mutated. Here are the mutated foci.Position 43615229 doesn't seem to be mutated. Here are the mutated foci.Position 104818053 doesn't seem to be mutated. Here are the mutated foci.Position 104832377 doesn't seem to be mutated. Here are the mutated foci.Position 55048177 doesn't seem to be mutated. Here are the mutated foci.Position 3723919 doesn't seem to be mutated. Here are the mutated foci.Position 50746014 doesn't seem to be mutated. Here are the mutated foci.Position 59042722 doesn't seem to be mutated. Here are the mutated foci.Position 1213210 doesn't seem to be mutated. Here are the mutated foci.Position 35182783 doesn't seem to be mutated. Here are the mutated foci.Position 77758522 doesn't seem to be mutated. Here are the mutated foci.Position 47461912 doesn't seem to be mutated. Here are the mutated foci.Position 127266755 doesn't seem to be mutated. Here are the mutated foci.Position 122184416 doesn't seem to be mutated. Here are the mutated foci.Position 122184543 doesn't seem to be mutated. Here are the mutated foci.Position 177207924 doesn't seem to be mutated. Here are the mutated foci.Position 61993975 doesn't seem to be mutated. Here are the mutated foci.Position 11648991 doesn't seem to be mutated. Here are the mutated foci.Position 11831190 doesn't seem to be mutated. Here are the mutated foci.Position 61747420 doesn't seem to be mutated. Here are the mutated foci.Position 232250338 doesn't seem to be mutated. Here are the mutated foci.Position 20192686 doesn't seem to be mutated. Here are the mutated foci.Position 32356048 doesn't seem to be mutated. Here are the mutated foci.Position 154763031 doesn't seem to be mutated. Here are the mutated foci.Position 161331272 doesn't seem to be mutated. Here are the mutated foci.Position 161340297 doesn't seem to be mutated. Here are the mutated foci.Position 232087434 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 104795872 doesn't seem to be mutated. Here are the mutated foci.Position 50389743 doesn't seem to be mutated. Here are the mutated foci.Position 35084547 doesn't seem to be mutated. Here are the mutated foci.Position 10244864 doesn't seem to be mutated. Here are the mutated foci.Position 169023558 doesn't seem to be mutated. Here are the mutated foci.Position 10070567 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 119278165 doesn't seem to be mutated. Here are the mutated foci.Position 11812452 doesn't seem to be mutated. Here are the mutated foci.Position 10957111 doesn't seem to be mutated. Here are the mutated foci.Position 77616014 doesn't seem to be mutated. Here are the mutated foci.Position 80691544 doesn't seem to be mutated. Here are the mutated foci.Position 177207906 doesn't seem to be mutated. Here are the mutated foci.Position 68511392 doesn't seem to be mutated. Here are the mutated foci.Position 10958602 doesn't seem to be mutated. Here are the mutated foci.Position 34791414 doesn't seem to be mutated. Here are the mutated foci.Position 17027879 doesn't seem to be mutated. Here are the mutated foci.Position 193155137 doesn't seem to be mutated. Here are the mutated foci.Position 56923442 doesn't seem to be mutated. Here are the mutated foci.Position 138883971 doesn't seem to be mutated. Here are the mutated foci.Position 116768027 doesn't seem to be mutated. Here are the mutated foci.Position 95430356 doesn't seem to be mutated. Here are the mutated foci.Position 95444510 doesn't seem to be mutated. Here are the mutated foci.Position 110925187 doesn't seem to be mutated. Here are the mutated foci.Position 45153473 doesn't seem to be mutated. Here are the mutated foci.Position 38280867 doesn't seem to be mutated. Here are the mutated foci.Position 40630132 doesn't seem to be mutated. Here are the mutated foci.Position 40631421 doesn't seem to be mutated. Here are the mutated foci.Position 147949786 doesn't seem to be mutated. Here are the mutated foci.Position 96134794 doesn't seem to be mutated. Here are the mutated foci.Position 118068503 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 10251735 doesn't seem to be mutated. Here are the mutated foci.Position 155909378 doesn't seem to be mutated. Here are the mutated foci.Position 232270922 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 54270664 doesn't seem to be mutated. Here are the mutated foci.Position 177149224 doesn't seem to be mutated. Here are the mutated foci.Position 177158923 doesn't seem to be mutated. Here are the mutated foci.Position 43116785 doesn't seem to be mutated. Here are the mutated foci.Position 112479265 doesn't seem to be mutated. Here are the mutated foci.Position 48321418 doesn't seem to be mutated. Here are the mutated foci.Position 31375013 doesn't seem to be mutated. Here are the mutated foci.Position 43059899 doesn't seem to be mutated. Here are the mutated foci.Position 35038652 doesn't seem to be mutated. Here are the mutated foci.Position 133317483 doesn't seem to be mutated. Here are the mutated foci.Position 69781482 doesn't seem to be mutated. Here are the mutated foci.Position 1789729 doesn't seem to be mutated. Here are the mutated foci.Position 157258150 doesn't seem to be mutated. Here are the mutated foci.Position 112445876 doesn't seem to be mutated. Here are the mutated foci.Position 90793014 doesn't seem to be mutated. Here are the mutated foci.Position 89744665 doesn't seem to be mutated. Here are the mutated foci.Position 77591154 doesn't seem to be mutated. Here are the mutated foci.Position 77605383 doesn't seem to be mutated. Here are the mutated foci.Position 124371453 doesn't seem to be mutated. Here are the mutated foci.Position 12667342 doesn't seem to be mutated. Here are the mutated foci.Position 1292527 doesn't seem to be mutated. Here are the mutated foci.Position 1292528 doesn't seem to be mutated. Here are the mutated foci.Position 116723065 doesn't seem to be mutated. Here are the mutated foci.Position 117843976 doesn't seem to be mutated. Here are the mutated foci.Position 2049073 doesn't seem to be mutated. Here are the mutated foci.Position 21802469 doesn't seem to be mutated. Here are the mutated foci.Position 110936272 doesn't seem to be mutated. Here are the mutated foci.Position 7674947 doesn't seem to be mutated. Here are the mutated foci.Position 7675978 doesn't seem to be mutated. Here are the mutated foci.Position 35861909 doesn't seem to be mutated. Here are the mutated foci.Position 77554512 doesn't seem to be mutated. Here are the mutated foci.Position 77569042 doesn't seem to be mutated. Here are the mutated foci.Position 77576709 doesn't seem to be mutated. Here are the mutated foci.Position 77627247 doesn't seem to be mutated. Here are the mutated foci.Position 77657349 doesn't seem to be mutated. Here are the mutated foci.Position 77725106 doesn't seem to be mutated. Here are the mutated foci.Position 133328570 doesn't seem to be mutated. Here are the mutated foci.Position 133614470 doesn't seem to be mutated. Here are the mutated foci.Position 47807218 doesn't seem to be mutated. Here are the mutated foci.Position 26101685 doesn't seem to be mutated. Here are the mutated foci.Position 41968710 doesn't seem to be mutated. Here are the mutated foci.Position 55170843 doesn't seem to be mutated. Here are the mutated foci.Position 116788581 doesn't seem to be mutated. Here are the mutated foci.Position 118048380 doesn't seem to be mutated. Here are the mutated foci.Position 12724434 doesn't seem to be mutated. Here are the mutated foci.Position 3814212 doesn't seem to be mutated. Here are the mutated foci.Position 61687282 doesn't seem to be mutated. Here are the mutated foci.Position 35835334 doesn't seem to be mutated. Here are the mutated foci.Position 133963351 doesn't seem to be mutated. Here are the mutated foci.Position 80692136 doesn't seem to be mutated. Here are the mutated foci.Position 2197220 doesn't seem to be mutated. Here are the mutated foci.Position 50235925 doesn't seem to be mutated. Here are the mutated foci.Position 89250699 doesn't seem to be mutated. Here are the mutated foci.Position 17228686 doesn't seem to be mutated. Here are the mutated foci.Position 41088007 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 29243694 doesn't seem to be mutated. Here are the mutated foci.Position 47441071 doesn't seem to be mutated. Here are the mutated foci.Position 127258099 doesn't seem to be mutated. Here are the mutated foci.Position 127294420 doesn't seem to be mutated. Here are the mutated foci.Position 12636496 doesn't seem to be mutated. Here are the mutated foci.Position 179218303 doesn't seem to be mutated. Here are the mutated foci.Position 34430314 doesn't seem to be mutated. Here are the mutated foci.Position 42218558 doesn't seem to be mutated. Here are the mutated foci.Position 50315599 doesn't seem to be mutated. Here are the mutated foci.Position 140863184 doesn't seem to be mutated. Here are the mutated foci.Position 38417331 doesn't seem to be mutated. Here are the mutated foci.Position 95489839 doesn't seem to be mutated. Here are the mutated foci.Position 113563020 doesn't seem to be mutated. Here are the mutated foci.Position 11821126 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 31259051 doesn't seem to be mutated. Here are the mutated foci.Position 58704914 doesn't seem to be mutated. Here are the mutated foci.Position 59042731 doesn't seem to be mutated. Here are the mutated foci.Position 61727770 doesn't seem to be mutated. Here are the mutated foci.Position 61790553 doesn't seem to be mutated. Here are the mutated foci.Position 11040073 doesn't seem to be mutated. Here are the mutated foci.Position 35022896 doesn't seem to be mutated. Here are the mutated foci.Position 35897748 doesn't seem to be mutated. Here are the mutated foci.Position 133880865 doesn't seem to be mutated. Here are the mutated foci.Position 38986472 doesn't seem to be mutated. Here are the mutated foci.Position 10070236 doesn't seem to be mutated. Here are the mutated foci.Position 37816209 doesn't seem to be mutated. Here are the mutated foci.Position 138806840 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 36948883 doesn't seem to be mutated. Here are the mutated foci.Position 119206286 doesn't seem to be mutated. Here are the mutated foci.Position 45417096 doesn't seem to be mutated. Here are the mutated foci.Position 133555827 doesn't seem to be mutated. Here are the mutated foci.Position 29296723 doesn't seem to be mutated. Here are the mutated foci.Position 42030696 doesn't seem to be mutated. Here are the mutated foci.Position 55175018 doesn't seem to be mutated. Here are the mutated foci.Position 110947024 doesn't seem to be mutated. Here are the mutated foci.Position 108316030 doesn't seem to be mutated. Here are the mutated foci.Position 59001470 doesn't seem to be mutated. Here are the mutated foci.Position 80749710 doesn't seem to be mutated. Here are the mutated foci.Position 140915997 doesn't seem to be mutated. Here are the mutated foci.Position 31045158 doesn't seem to be mutated. Here are the mutated foci.Position 95201750 doesn't seem to be mutated. Here are the mutated foci.Position 95201764 doesn't seem to be mutated. Here are the mutated foci.Position 65085617 doesn't seem to be mutated. Here are the mutated foci.Position 65085624 doesn't seem to be mutated. Here are the mutated foci.Position 31229061 doesn't seem to be mutated. Here are the mutated foci.Position 42318398 doesn't seem to be mutated. Here are the mutated foci.Position 124375222 doesn't seem to be mutated. Here are the mutated foci.Position 231421887 doesn't seem to be mutated. Here are the mutated foci.Position 232307355 doesn't seem to be mutated. Here are the mutated foci.Position 69836806 doesn't seem to be mutated. Here are the mutated foci.Position 128492571 doesn't seem to be mutated. Here are the mutated foci.Position 197950502 doesn't seem to be mutated. Here are the mutated foci.Position 54684181 doesn't seem to be mutated. Here are the mutated foci.Position 177299777 doesn't seem to be mutated. Here are the mutated foci.Position 50341834 doesn't seem to be mutated. Here are the mutated foci.Position 116795420 doesn't seem to be mutated. Here are the mutated foci.Position 99112924 doesn't seem to be mutated. Here are the mutated foci.Position 119278646 doesn't seem to be mutated. Here are the mutated foci.Position 20192748 doesn't seem to be mutated. Here are the mutated foci.Position 13940684 doesn't seem to be mutated. Here are the mutated foci.Position 23608802 doesn't seem to be mutated. Here are the mutated foci.Position 1203761 doesn't seem to be mutated. Here are the mutated foci.Position 77615818 doesn't seem to be mutated. Here are the mutated foci.Position 77788530 doesn't seem to be mutated. Here are the mutated foci.Position 193127288 doesn't seem to be mutated. Here are the mutated foci.Position 29330443 doesn't seem to be mutated. Here are the mutated foci.Position 29768013 doesn't seem to be mutated. Here are the mutated foci.Position 47381157 doesn't seem to be mutated. Here are the mutated foci.Position 47631631 doesn't seem to be mutated. Here are the mutated foci.Position 47631633 doesn't seem to be mutated. Here are the mutated foci.Position 232088171 doesn't seem to be mutated. Here are the mutated foci.Position 1268363 doesn't seem to be mutated. Here are the mutated foci.Position 132598622 doesn't seem to be mutated. Here are the mutated foci.Position 177230827 doesn't seem to be mutated. Here are the mutated foci.Position 55165648 doesn't seem to be mutated. Here are the mutated foci.Position 117866556 doesn't seem to be mutated. Here are the mutated foci.Position 11823186 doesn't seem to be mutated. Here are the mutated foci.Position 11076853 doesn't seem to be mutated. Here are the mutated foci.Position 34803549 doesn't seem to be mutated. Here are the mutated foci.Position 133936210 doesn't seem to be mutated. Here are the mutated foci.Position 161348165 doesn't seem to be mutated. Here are the mutated foci.Position 29265603 doesn't seem to be mutated. Here are the mutated foci.Position 47767162 doesn't seem to be mutated. Here are the mutated foci.Position 122234027 doesn't seem to be mutated. Here are the mutated foci.Position 177132254 doesn't seem to be mutated. Here are the mutated foci.Position 177134180 doesn't seem to be mutated. Here are the mutated foci.Position 2885963 doesn't seem to be mutated. Here are the mutated foci.Position 20192748 doesn't seem to be mutated. Here are the mutated foci.Position 77710891 doesn't seem to be mutated. Here are the mutated foci.Position 23700253 doesn't seem to be mutated. Here are the mutated foci.Position 140769988 doesn't seem to be mutated. Here are the mutated foci.Position 140789916 doesn't seem to be mutated. Here are the mutated foci.Position 108264476 doesn't seem to be mutated. Here are the mutated foci.Position 89267332 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 35022952 doesn't seem to be mutated. Here are the mutated foci.Position 77539560 doesn't seem to be mutated. Here are the mutated foci.Position 77741450 doesn't seem to be mutated. Here are the mutated foci.Position 122241744 doesn't seem to be mutated. Here are the mutated foci.Position 1273733 doesn't seem to be mutated. Here are the mutated foci.Position 104778811 doesn't seem to be mutated. Here are the mutated foci.Position 96278723 doesn't seem to be mutated. Here are the mutated foci.Position 119206523 doesn't seem to be mutated. Here are the mutated foci.Position 31238750 doesn't seem to be mutated. Here are the mutated foci.Position 35308015 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 29296723 doesn't seem to be mutated. Here are the mutated foci.Position 157240040 doesn't seem to be mutated. Here are the mutated foci.Position 42147398 doesn't seem to be mutated. Here are the mutated foci.Position 89288801 doesn't seem to be mutated. Here are the mutated foci.Position 41855847 doesn't seem to be mutated. Here are the mutated foci.Position 45458231 doesn't seem to be mutated. Here are the mutated foci.Position 77725939 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 47631633 doesn't seem to be mutated. Here are the mutated foci.Position 10031851 doesn't seem to be mutated. Here are the mutated foci.Position 42103466 doesn't seem to be mutated. Here are the mutated foci.Position 140829198 doesn't seem to be mutated. Here are the mutated foci.Position 2187117 doesn't seem to be mutated. Here are the mutated foci.Position 119228814 doesn't seem to be mutated. Here are the mutated foci.Position 25245350 doesn't seem to be mutated. Here are the mutated foci.Position 48438556 doesn't seem to be mutated. Here are the mutated foci.Position 39035331 doesn't seem to be mutated. Here are the mutated foci.Position 1798065 doesn't seem to be mutated. Here are the mutated foci.Position 61993132 doesn't seem to be mutated. Here are the mutated foci.Position 112474959 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 3611220 doesn't seem to be mutated. Here are the mutated foci.Position 10333418 doesn't seem to be mutated. Here are the mutated foci.Position 44844402 doesn't seem to be mutated. Here are the mutated foci.Position 29267082 doesn't seem to be mutated. Here are the mutated foci.Position 6004978 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 148848926 doesn't seem to be mutated. Here are the mutated foci.Position 112499981 doesn't seem to be mutated. Here are the mutated foci.Position 3724953 doesn't seem to be mutated. Here are the mutated foci.Position 89781737 doesn't seem to be mutated. Here are the mutated foci.Position 40622964 doesn't seem to be mutated. Here are the mutated foci.Position 34792281 doesn't seem to be mutated. Here are the mutated foci.Position 28708375 doesn't seem to be mutated. Here are the mutated foci.Position 144377868 doesn't seem to be mutated. Here are the mutated foci.Position 140782463 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 237604 doesn't seem to be mutated. Here are the mutated foci.Position 3787332 doesn't seem to be mutated. Here are the mutated foci.Position 31152598 doesn't seem to be mutated. Here are the mutated foci.Position 14861852 doesn't seem to be mutated. Here are the mutated foci.Position 77643930 doesn't seem to be mutated. Here are the mutated foci.Position 11885529 doesn't seem to be mutated. Here are the mutated foci.Position 90734613 doesn't seem to be mutated. Here are the mutated foci.Position 29655653 doesn't seem to be mutated. Here are the mutated foci.Position 29655665 doesn't seem to be mutated. Here are the mutated foci.Position 133760970 doesn't seem to be mutated. Here are the mutated foci.Position 41855847 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 92827793 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 140735625 doesn't seem to be mutated. Here are the mutated foci.Position 10259806 doesn't seem to be mutated. Here are the mutated foci.Position 44843370 doesn't seem to be mutated. Here are the mutated foci.Position 161340297 doesn't seem to be mutated. Here are the mutated foci.Position 29244984 doesn't seem to be mutated. Here are the mutated foci.Position 39120583 doesn't seem to be mutated. Here are the mutated foci.Position 177193965 doesn't seem to be mutated. Here are the mutated foci.Position 118085724 doesn't seem to be mutated. Here are the mutated foci.Position 37021354 doesn't seem to be mutated. Here are the mutated foci.Position 50156964 doesn't seem to be mutated. Here are the mutated foci.Position 50396902 doesn't seem to be mutated. Here are the mutated foci.Position 32378809 doesn't seem to be mutated. Here are the mutated foci.Position 35438215 doesn't seem to be mutated. Here are the mutated foci.Position 58225228 doesn't seem to be mutated. Here are the mutated foci.Position 102540718 doesn't seem to be mutated. Here are the mutated foci.Position 11048621 doesn't seem to be mutated. Here are the mutated foci.Position 232335994 doesn't seem to be mutated. Here are the mutated foci.Position 179234297 doesn't seem to be mutated. Here are the mutated foci.Position 54722809 doesn't seem to be mutated. Here are the mutated foci.Position 38417331 doesn't seem to be mutated. Here are the mutated foci.Position 48681178 doesn't seem to be mutated. Here are the mutated foci.Position 177289834 doesn't seem to be mutated. Here are the mutated foci.Position 104727658 doesn't seem to be mutated. Here are the mutated foci.Position 116725465 doesn't seem to be mutated. Here are the mutated foci.Position 124874764 doesn't seem to be mutated. Here are the mutated foci.Position 124910849 doesn't seem to be mutated. Here are the mutated foci.Position 142753802 doesn't seem to be mutated. Here are the mutated foci.Position 147916647 doesn't seem to be mutated. Here are the mutated foci.Position 122288136 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 2182996 doesn't seem to be mutated. Here are the mutated foci.Position 31149278 doesn't seem to be mutated. Here are the mutated foci.Position 23814546 doesn't seem to be mutated. Here are the mutated foci.Position 10363469 doesn't seem to be mutated. Here are the mutated foci.Position 44843236 doesn't seem to be mutated. Here are the mutated foci.Position 155909979 doesn't seem to be mutated. Here are the mutated foci.Position 156824099 doesn't seem to be mutated. Here are the mutated foci.Position 156870486 doesn't seem to be mutated. Here are the mutated foci.Position 161354475 doesn't seem to be mutated. Here are the mutated foci.Position 29203913 doesn't seem to be mutated. Here are the mutated foci.Position 29446416 doesn't seem to be mutated. Here are the mutated foci.Position 29485111 doesn't seem to be mutated. Here are the mutated foci.Position 29497191 doesn't seem to be mutated. Here are the mutated foci.Position 29766471 doesn't seem to be mutated. Here are the mutated foci.Position 29873692 doesn't seem to be mutated. Here are the mutated foci.Position 29892895 doesn't seem to be mutated. Here are the mutated foci.Position 47371256 doesn't seem to be mutated. Here are the mutated foci.Position 47642121 doesn't seem to be mutated. Here are the mutated foci.Position 47711194 doesn't seem to be mutated. Here are the mutated foci.Position 47716549 doesn't seem to be mutated. Here are the mutated foci.Position 122282449 doesn't seem to be mutated. Here are the mutated foci.Position 54701367 doesn't seem to be mutated. Here are the mutated foci.Position 54718583 doesn't seem to be mutated. Here are the mutated foci.Position 37832760 doesn't seem to be mutated. Here are the mutated foci.Position 37841383 doesn't seem to be mutated. Here are the mutated foci.Position 112716464 doesn't seem to be mutated. Here are the mutated foci.Position 50315540 doesn't seem to be mutated. Here are the mutated foci.Position 50362112 doesn't seem to be mutated. Here are the mutated foci.Position 124912249 doesn't seem to be mutated. Here are the mutated foci.Position 140847700 doesn't seem to be mutated. Here are the mutated foci.Position 31129347 doesn't seem to be mutated. Here are the mutated foci.Position 38415410 doesn't seem to be mutated. Here are the mutated foci.Position 229774 doesn't seem to be mutated. Here are the mutated foci.Position 243099 doesn't seem to be mutated. Here are the mutated foci.Position 415660 doesn't seem to be mutated. Here are the mutated foci.Position 2038906 doesn't seem to be mutated. Here are the mutated foci.Position 2065444 doesn't seem to be mutated. Here are the mutated foci.Position 2103660 doesn't seem to be mutated. Here are the mutated foci.Position 19383686 doesn't seem to be mutated. Here are the mutated foci.Position 21967127 doesn't seem to be mutated. Here are the mutated foci.Position 36831388 doesn't seem to be mutated. Here are the mutated foci.Position 36861061 doesn't seem to be mutated. Here are the mutated foci.Position 37034813 doesn't seem to be mutated. Here are the mutated foci.Position 43107559 doesn't seem to be mutated. Here are the mutated foci.Position 88999160 doesn't seem to be mutated. Here are the mutated foci.Position 89009638 doesn't seem to be mutated. Here are the mutated foci.Position 102526445 doesn't seem to be mutated. Here are the mutated foci.Position 61431968 doesn't seem to be mutated. Here are the mutated foci.Position 108334562 doesn't seem to be mutated. Here are the mutated foci.Position 12715174 doesn't seem to be mutated. Here are the mutated foci.Position 25226605 doesn't seem to be mutated. Here are the mutated foci.Position 45141301 doesn't seem to be mutated. Here are the mutated foci.Position 95124302 doesn't seem to be mutated. Here are the mutated foci.Position 32732216 doesn't seem to be mutated. Here are the mutated foci.Position 34339480 doesn't seem to be mutated. Here are the mutated foci.Position 40180540 doesn't seem to be mutated. Here are the mutated foci.Position 80156804 doesn't seem to be mutated. Here are the mutated foci.Position 50760267 doesn't seem to be mutated. Here are the mutated foci.Position 7663955 doesn't seem to be mutated. Here are the mutated foci.Position 7681445 doesn't seem to be mutated. Here are the mutated foci.Position 31198797 doesn't seem to be mutated. Here are the mutated foci.Position 58708846 doesn't seem to be mutated. Here are the mutated foci.Position 65564129 doesn't seem to be mutated. Here are the mutated foci.Position 76480201 doesn't seem to be mutated. Here are the mutated foci.Position 41868782 doesn't seem to be mutated. Here are the mutated foci.Position 34963668 doesn't seem to be mutated. Here are the mutated foci.Position 35123774 doesn't seem to be mutated. Here are the mutated foci.Position 35393868 doesn't seem to be mutated. Here are the mutated foci.Position 35405848 doesn't seem to be mutated. Here are the mutated foci.Position 35571362 doesn't seem to be mutated. Here are the mutated foci.Position 35669431 doesn't seem to be mutated. Here are the mutated foci.Position 35696184 doesn't seem to be mutated. Here are the mutated foci.Position 35754254 doesn't seem to be mutated. Here are the mutated foci.Position 35822257 doesn't seem to be mutated. Here are the mutated foci.Position 35823308 doesn't seem to be mutated. Here are the mutated foci.Position 35893463 doesn't seem to be mutated. Here are the mutated foci.Position 35986916 doesn't seem to be mutated. Here are the mutated foci.Position 23796805 doesn't seem to be mutated. Here are the mutated foci.Position 23810040 doesn't seem to be mutated. Here are the mutated foci.Position 41088838 doesn't seem to be mutated. Here are the mutated foci.Position 14866253 doesn't seem to be mutated. Here are the mutated foci.Position 77744041 doesn't seem to be mutated. Here are the mutated foci.Position 133920013 doesn't seem to be mutated. Here are the mutated foci.Position 133957846 doesn't seem to be mutated. Here are the mutated foci.Position 144454878 doesn't seem to be mutated. Here are the mutated foci.Position 169032042 doesn't seem to be mutated. Here are the mutated foci.Position 232033780 doesn't seem to be mutated. Here are the mutated foci.Position 232196382 doesn't seem to be mutated. Here are the mutated foci.Position 122262200 doesn't seem to be mutated. Here are the mutated foci.Position 914721 doesn't seem to be mutated. Here are the mutated foci.Position 36981757 doesn't seem to be mutated. Here are the mutated foci.Position 95511522 doesn't seem to be mutated. Here are the mutated foci.Position 48381463 doesn't seem to be mutated. Here are the mutated foci.Position 89737762 doesn't seem to be mutated. Here are the mutated foci.Position 35036779 doesn't seem to be mutated. Here are the mutated foci.Position 35431362 doesn't seem to be mutated. Here are the mutated foci.Position 232056750 doesn't seem to be mutated. Here are the mutated foci.Position 232056751 doesn't seem to be mutated. Here are the mutated foci.Position 232056751 doesn't seem to be mutated. Here are the mutated foci.Position 179234297 doesn't seem to be mutated. Here are the mutated foci.Position 112424868 doesn't seem to be mutated. Here are the mutated foci.Position 36515560 doesn't seem to be mutated. Here are the mutated foci.Position 59028262 doesn't seem to be mutated. Here are the mutated foci.Position 61719176 doesn't seem to be mutated. Here are the mutated foci.Position 133605172 doesn't seem to be mutated. Here are the mutated foci.Position 47368813 doesn't seem to be mutated. Here are the mutated foci.Position 69971174 doesn't seem to be mutated. Here are the mutated foci.Position 96117102 doesn't seem to be mutated. Here are the mutated foci.Position 37013089 doesn't seem to be mutated. Here are the mutated foci.Position 82535023 doesn't seem to be mutated. Here are the mutated foci.Position 35022952 doesn't seem to be mutated. Here are the mutated foci.Position 10346358 doesn't seem to be mutated. Here are the mutated foci.Position 232176548 doesn't seem to be mutated. Here are the mutated foci.Position 69742937 doesn't seem to be mutated. Here are the mutated foci.Position 138907969 doesn't seem to be mutated. Here are the mutated foci.Position 117844132 doesn't seem to be mutated. Here are the mutated foci.Position 302983 doesn't seem to be mutated. Here are the mutated foci.Position 48335601 doesn't seem to be mutated. Here are the mutated foci.Position 95158062 doesn't seem to be mutated. Here are the mutated foci.Position 89289013 doesn't seem to be mutated. Here are the mutated foci.Position 3746446 doesn't seem to be mutated. Here are the mutated foci.Position 58718781 doesn't seem to be mutated. Here are the mutated foci.Position 32381071 doesn't seem to be mutated. Here are the mutated foci.Position 133863603 doesn't seem to be mutated. Here are the mutated foci.Position 58216623 doesn't seem to be mutated. Here are the mutated foci.Position 112838934 doesn't seem to be mutated. Here are the mutated foci.Position 104727568 doesn't seem to be mutated. Here are the mutated foci.Position 104727594 doesn't seem to be mutated. Here are the mutated foci.Position 104727658 doesn't seem to be mutated. Here are the mutated foci.Position 95151927 doesn't seem to be mutated. Here are the mutated foci.Position 110948939 doesn't seem to be mutated. Here are the mutated foci.Position 44119176 doesn't seem to be mutated. Here are the mutated foci.Position 108296314 doesn't seem to be mutated. Here are the mutated foci.Position 45158456 doesn't seem to be mutated. Here are the mutated foci.Position 3853962 doesn't seem to be mutated. Here are the mutated foci.Position 133405104 doesn't seem to be mutated. Here are the mutated foci.Position 3583090 doesn't seem to be mutated. Here are the mutated foci.Position 56908724 doesn't seem to be mutated. Here are the mutated foci.Position 56922315 doesn't seem to be mutated. Here are the mutated foci.Position 338160 doesn't seem to be mutated. Here are the mutated foci.Position 86835773 doesn't seem to be mutated. Here are the mutated foci.Position 102612218 doesn't seem to be mutated. Here are the mutated foci.Position 102638160 doesn't seem to be mutated. Here are the mutated foci.Position 111425228 doesn't seem to be mutated. Here are the mutated foci.Position 68752991 doesn't seem to be mutated. Here are the mutated foci.Position 77735910 doesn't seem to be mutated. Here are the mutated foci.Position 231382457 doesn't seem to be mutated. Here are the mutated foci.Position 144398775 doesn't seem to be mutated. Here are the mutated foci.Position 42238026 doesn't seem to be mutated. Here are the mutated foci.Position 140798272 doesn't seem to be mutated. Here are the mutated foci.Position 66444259 doesn't seem to be mutated. Here are the mutated foci.Position 68806121 doesn't seem to be mutated. Here are the mutated foci.Position 89817466 doesn't seem to be mutated. Here are the mutated foci.Position 51071282 doesn't seem to be mutated. Here are the mutated foci.Position 35381180 doesn't seem to be mutated. Here are the mutated foci.Position 35611243 doesn't seem to be mutated. Here are the mutated foci.Position 14871803 doesn't seem to be mutated. Here are the mutated foci.Position 39110027 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 117898706 doesn't seem to be mutated. Here are the mutated foci.Position 36963598 doesn't seem to be mutated. Here are the mutated foci.Position 31181717 doesn't seem to be mutated. Here are the mutated foci.Position 133897981 doesn't seem to be mutated. Here are the mutated foci.Position 31055613 doesn't seem to be mutated. Here are the mutated foci.Position 44153504 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 76496757 doesn't seem to be mutated. Here are the mutated foci.Position 140732550 doesn't seem to be mutated. Here are the mutated foci.Position 140740118 doesn't seem to be mutated. Here are the mutated foci.Position 36842760 doesn't seem to be mutated. Here are the mutated foci.Position 51082218 doesn't seem to be mutated. Here are the mutated foci.Position 35519803 doesn't seem to be mutated. Here are the mutated foci.Position 35819787 doesn't seem to be mutated. Here are the mutated foci.Position 10244864 doesn't seem to be mutated. Here are the mutated foci.Position 10314681 doesn't seem to be mutated. Here are the mutated foci.Position 47505491 doesn't seem to be mutated. Here are the mutated foci.Position 128492876 doesn't seem to be mutated. Here are the mutated foci.Position 80797956 doesn't seem to be mutated. Here are the mutated foci.Position 116758015 doesn't seem to be mutated. Here are the mutated foci.Position 94384468 doesn't seem to be mutated. Here are the mutated foci.Position 66444358 doesn't seem to be mutated. Here are the mutated foci.Position 50416484 doesn't seem to be mutated. Here are the mutated foci.Position 58890401 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 112734778 doesn't seem to be mutated. Here are the mutated foci.Position 31158405 doesn't seem to be mutated. Here are the mutated foci.Position 237772 doesn't seem to be mutated. Here are the mutated foci.Position 470223 doesn't seem to be mutated. Here are the mutated foci.Position 530474 doesn't seem to be mutated. Here are the mutated foci.Position 32403155 doesn't seem to be mutated. Here are the mutated foci.Position 51071266 doesn't seem to be mutated. Here are the mutated foci.Position 114712575 doesn't seem to be mutated. Here are the mutated foci.Position 144509618 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 80811032 doesn't seem to be mutated. Here are the mutated foci.Position 140804107 doesn't seem to be mutated. Here are the mutated foci.Position 140806650 doesn't seem to be mutated. Here are the mutated foci.Position 66399877 doesn't seem to be mutated. Here are the mutated foci.Position 51071282 doesn't seem to be mutated. Here are the mutated foci.Position 1218232 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 80869831 doesn't seem to be mutated. Here are the mutated foci.Position 287359 doesn't seem to be mutated. Here are the mutated foci.Position 111438612 doesn't seem to be mutated. Here are the mutated foci.Position 133882536 doesn't seem to be mutated. Here are the mutated foci.Position 29416936 doesn't seem to be mutated. Here are the mutated foci.Position 140792596 doesn't seem to be mutated. Here are the mutated foci.Position 36837093 doesn't seem to be mutated. Here are the mutated foci.Position 110973881 doesn't seem to be mutated. Here are the mutated foci.Position 11654720 doesn't seem to be mutated. Here are the mutated foci.Position 112452924 doesn't seem to be mutated. Here are the mutated foci.Position 20192686 doesn't seem to be mutated. Here are the mutated foci.Position 59000859 doesn't seem to be mutated. Here are the mutated foci.Position 144524286 doesn't seem to be mutated. Here are the mutated foci.Position 231957638 doesn't seem to be mutated. Here are the mutated foci.Position 12664030 doesn't seem to be mutated. Here are the mutated foci.Position 69770679 doesn't seem to be mutated. Here are the mutated foci.Position 140730055 doesn't seem to be mutated. Here are the mutated foci.Position 31172140 doesn't seem to be mutated. Here are the mutated foci.Position 48556848 doesn't seem to be mutated. Here are the mutated foci.Position 68797755 doesn't seem to be mutated. Here are the mutated foci.Position 10986292 doesn't seem to be mutated. Here are the mutated foci.Position 48679926 doesn't seem to be mutated. Here are the mutated foci.Position 133680480 doesn't seem to be mutated. Here are the mutated foci.Position 116768026 doesn't seem to be mutated. Here are the mutated foci.Position 97692295 doesn't seem to be mutated. Here are the mutated foci.Position 43075565 doesn't seem to be mutated. Here are the mutated foci.Position 41855847 doesn't seem to be mutated. Here are the mutated foci.Position 231385934 doesn't seem to be mutated. Here are the mutated foci.Position 47631637 doesn't seem to be mutated. Here are the mutated foci.Position 69960577 doesn't seem to be mutated. Here are the mutated foci.Position 228883 doesn't seem to be mutated. Here are the mutated foci.Position 904679 doesn't seem to be mutated. Here are the mutated foci.Position 401704 doesn't seem to be mutated. Here are the mutated foci.Position 44181470 doesn't seem to be mutated. Here are the mutated foci.Position 61430790 doesn't seem to be mutated. Here are the mutated foci.Position 119249664 doesn't seem to be mutated. Here are the mutated foci.Position 119308116 doesn't seem to be mutated. Here are the mutated foci.Position 48556593 doesn't seem to be mutated. Here are the mutated foci.Position 38299502 doesn't seem to be mutated. Here are the mutated foci.Position 66382840 doesn't seem to be mutated. Here are the mutated foci.Position 43076395 doesn't seem to be mutated. Here are the mutated foci.Position 43081825 doesn't seem to be mutated. Here are the mutated foci.Position 59045324 doesn't seem to be mutated. Here are the mutated foci.Position 61697071 doesn't seem to be mutated. Here are the mutated foci.Position 34854420 doesn't seem to be mutated. Here are the mutated foci.Position 35038652 doesn't seem to be mutated. Here are the mutated foci.Position 35872610 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 41973917 doesn't seem to be mutated. Here are the mutated foci.Position 117948152 doesn't seem to be mutated. Here are the mutated foci.Position 389593 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 86929024 doesn't seem to be mutated. Here are the mutated foci.Position 11667537 doesn't seem to be mutated. Here are the mutated foci.Position 48414342 doesn't seem to be mutated. Here are the mutated foci.Position 45149027 doesn't seem to be mutated. Here are the mutated foci.Position 104787752 doesn't seem to be mutated. Here are the mutated foci.Position 89777463 doesn't seem to be mutated. Here are the mutated foci.Position 35803201 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 89240696 doesn't seem to be mutated. Here are the mutated foci.Position 45419924 doesn't seem to be mutated. Here are the mutated foci.Position 155230377 doesn't seem to be mutated. Here are the mutated foci.Position 29887282 doesn't seem to be mutated. Here are the mutated foci.Position 179199136 doesn't seem to be mutated. Here are the mutated foci.Position 54242582 doesn't seem to be mutated. Here are the mutated foci.Position 119283441 doesn't seem to be mutated. Here are the mutated foci.Position 132644687 doesn't seem to be mutated. Here are the mutated foci.Position 40189992 doesn't seem to be mutated. Here are the mutated foci.Position 3849759 doesn't seem to be mutated. Here are the mutated foci.Position 61753771 doesn't seem to be mutated. Here are the mutated foci.Position 77621274 doesn't seem to be mutated. Here are the mutated foci.Position 133543780 doesn't seem to be mutated. Here are the mutated foci.Position 193149390 doesn't seem to be mutated. Here are the mutated foci.Position 144430484 doesn't seem to be mutated. Here are the mutated foci.Position 117888499 doesn't seem to be mutated. Here are the mutated foci.Position 86882596 doesn't seem to be mutated. Here are the mutated foci.Position 132645801 doesn't seem to be mutated. Here are the mutated foci.Position 51071282 doesn't seem to be mutated. Here are the mutated foci.Position 29569563 doesn't seem to be mutated. Here are the mutated foci.Position 1272642 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 32368818 doesn't seem to be mutated. Here are the mutated foci.Position 55018398 doesn't seem to be mutated. Here are the mutated foci.Position 44154707 doesn't seem to be mutated. Here are the mutated foci.Position 48401491 doesn't seem to be mutated. Here are the mutated foci.Position 41107874 doesn't seem to be mutated. Here are the mutated foci.Position 39124970 doesn't seem to be mutated. Here are the mutated foci.Position 140766158 doesn't seem to be mutated. Here are the mutated foci.Position 142754884 doesn't seem to be mutated. Here are the mutated foci.Position 41125427 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 133927479 doesn't seem to be mutated. Here are the mutated foci.Position 42207960 doesn't seem to be mutated. Here are the mutated foci.Position 96148196 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 32720079 doesn't seem to be mutated. Here are the mutated foci.Position 82537536 doesn't seem to be mutated. Here are the mutated foci.Position 90734613 doesn't seem to be mutated. Here are the mutated foci.Position 214748949 doesn't seem to be mutated. Here are the mutated foci.Position 69782464 doesn't seem to be mutated. Here are the mutated foci.Position 42002056 doesn't seem to be mutated. Here are the mutated foci.Position 116705041 doesn't seem to be mutated. Here are the mutated foci.Position 116706114 doesn't seem to be mutated. Here are the mutated foci.Position 116771972 doesn't seem to be mutated. Here are the mutated foci.Position 113565324 doesn't seem to be mutated. Here are the mutated foci.Position 22631388 doesn't seem to be mutated. Here are the mutated foci.Position 25246487 doesn't seem to be mutated. Here are the mutated foci.Position 41858512 doesn't seem to be mutated. Here are the mutated foci.Position 77528581 doesn't seem to be mutated. Here are the mutated foci.Position 77546121 doesn't seem to be mutated. Here are the mutated foci.Position 169003350 doesn't seem to be mutated. Here are the mutated foci.Position 232241419 doesn't seem to be mutated. Here are the mutated foci.Position 69855560 doesn't seem to be mutated. Here are the mutated foci.Position 43588029 doesn't seem to be mutated. Here are the mutated foci.Position 104804724 doesn't seem to be mutated. Here are the mutated foci.Position 43113692 doesn't seem to be mutated. Here are the mutated foci.Position 108236102 doesn't seem to be mutated. Here are the mutated foci.Position 89295744 doesn't seem to be mutated. Here are the mutated foci.Position 51044441 doesn't seem to be mutated. Here are the mutated foci.Position 58865545 doesn't seem to be mutated. Here are the mutated foci.Position 29510464 doesn't seem to be mutated. Here are the mutated foci.Position 47408120 doesn't seem to be mutated. Here are the mutated foci.Position 144485107 doesn't seem to be mutated. Here are the mutated foci.Position 112734778 doesn't seem to be mutated. Here are the mutated foci.Position 112787773 doesn't seem to be mutated. Here are the mutated foci.Position 2090857 doesn't seem to be mutated. Here are the mutated foci.Position 95183302 doesn't seem to be mutated. Here are the mutated foci.Position 110980791 doesn't seem to be mutated. Here are the mutated foci.Position 527298 doesn't seem to be mutated. Here are the mutated foci.Position 32395762 doesn't seem to be mutated. Here are the mutated foci.Position 57751816 doesn't seem to be mutated. Here are the mutated foci.Position 50177763 doesn't seem to be mutated. Here are the mutated foci.Position 89289013 doesn't seem to be mutated. Here are the mutated foci.Position 3797598 doesn't seem to be mutated. Here are the mutated foci.Position 43151576 doesn't seem to be mutated. Here are the mutated foci.Position 1228060 doesn't seem to be mutated. Here are the mutated foci.Position 34918780 doesn't seem to be mutated. Here are the mutated foci.Position 34918790 doesn't seem to be mutated. Here are the mutated foci.Position 35866753 doesn't seem to be mutated. Here are the mutated foci.Position 35870213 doesn't seem to be mutated. Here are the mutated foci.Position 77774830 doesn't seem to be mutated. Here are the mutated foci.Position 133538828 doesn't seem to be mutated. Here are the mutated foci.Position 133971727 doesn't seem to be mutated. Here are the mutated foci.Position 154277114 doesn't seem to be mutated. Here are the mutated foci.Position 232035829 doesn't seem to be mutated. Here are the mutated foci.Position 102562526 doesn't seem to be mutated. Here are the mutated foci.Position 11788756 doesn't seem to be mutated. Here are the mutated foci.Position 77750521 doesn't seem to be mutated. Here are the mutated foci.Position 124373556 doesn't seem to be mutated. Here are the mutated foci.Position 58864976 doesn't seem to be mutated. Here are the mutated foci.Position 193200759 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 37044681 doesn't seem to be mutated. Here are the mutated foci.Position 179218303 doesn't seem to be mutated. Here are the mutated foci.Position 177149224 doesn't seem to be mutated. Here are the mutated foci.Position 42233889 doesn't seem to be mutated. Here are the mutated foci.Position 121538144 doesn't seem to be mutated. Here are the mutated foci.Position 40208021 doesn't seem to be mutated. Here are the mutated foci.Position 61803622 doesn't seem to be mutated. Here are the mutated foci.Position 147913024 doesn't seem to be mutated. Here are the mutated foci.Position 157218504 doesn't seem to be mutated. Here are the mutated foci.Position 50315847 doesn't seem to be mutated. Here are the mutated foci.Position 124897744 doesn't seem to be mutated. Here are the mutated foci.Position 2197222 doesn't seem to be mutated. Here are the mutated foci.Position 87900787 doesn't seem to be mutated. Here are the mutated foci.Position 2881443 doesn't seem to be mutated. Here are the mutated foci.Position 119216163 doesn't seem to be mutated. Here are the mutated foci.Position 48425693 doesn't seem to be mutated. Here are the mutated foci.Position 61813133 doesn't seem to be mutated. Here are the mutated foci.Position 34923527 doesn't seem to be mutated. Here are the mutated foci.Position 29673303 doesn't seem to be mutated. Here are the mutated foci.Position 77778416 doesn't seem to be mutated. Here are the mutated foci.Position 89951370 doesn't seem to be mutated. Here are the mutated foci.Position 86930012 doesn't seem to be mutated. Here are the mutated foci.Position 87962503 doesn't seem to be mutated. Here are the mutated foci.Position 23833989 doesn't seem to be mutated. Here are the mutated foci.Position 193235916 doesn't seem to be mutated. Here are the mutated foci.Position 39108549 doesn't seem to be mutated. Here are the mutated foci.Position 232171334 doesn't seem to be mutated. Here are the mutated foci.Position 118062055 doesn't seem to be mutated. Here are the mutated foci.Position 401104 doesn't seem to be mutated. Here are the mutated foci.Position 23116421 doesn't seem to be mutated. Here are the mutated foci.Position 29384715 doesn't seem to be mutated. Here are the mutated foci.Position 29845522 doesn't seem to be mutated. Here are the mutated foci.Position 37001268 doesn't seem to be mutated. Here are the mutated foci.Position 11704776 doesn't seem to be mutated. Here are the mutated foci.Position 111439237 doesn't seem to be mutated. Here are the mutated foci.Position 32328876 doesn't seem to be mutated. Here are the mutated foci.Position 68796169 doesn't seem to be mutated. Here are the mutated foci.Position 17240472 doesn't seem to be mutated. Here are the mutated foci.Position 41867767 doesn't seem to be mutated. Here are the mutated foci.Position 41128633 doesn't seem to be mutated. Here are the mutated foci.Position 112734974 doesn't seem to be mutated. Here are the mutated foci.Position 3776129 doesn't seem to be mutated. Here are the mutated foci.Position 42337921 doesn't seem to be mutated. Here are the mutated foci.Position 29668339 doesn't seem to be mutated. Here are the mutated foci.Position 69801056 doesn't seem to be mutated. Here are the mutated foci.Position 80655285 doesn't seem to be mutated. Here are the mutated foci.Position 104758875 doesn't seem to be mutated. Here are the mutated foci.Position 148849105 doesn't seem to be mutated. Here are the mutated foci.Position 117919194 doesn't seem to be mutated. Here are the mutated foci.Position 118048822 doesn't seem to be mutated. Here are the mutated foci.Position 2097548 doesn't seem to be mutated. Here are the mutated foci.Position 121502420 doesn't seem to be mutated. Here are the mutated foci.Position 108274338 doesn't seem to be mutated. Here are the mutated foci.Position 95134528 doesn't seem to be mutated. Here are the mutated foci.Position 34808591 doesn't seem to be mutated. Here are the mutated foci.Position 35339203 doesn't seem to be mutated. Here are the mutated foci.Position 35993255 doesn't seem to be mutated. Here are the mutated foci.Position 133377090 doesn't seem to be mutated. Here are the mutated foci.Position 133377095 doesn't seem to be mutated. Here are the mutated foci.Position 10232302 doesn't seem to be mutated. Here are the mutated foci.Position 231373692 doesn't seem to be mutated. Here are the mutated foci.Position 231373696 doesn't seem to be mutated. Here are the mutated foci.Position 47806651 doesn't seem to be mutated. Here are the mutated foci.Position 48586478 doesn't seem to be mutated. Here are the mutated foci.Position 69756951 doesn't seem to be mutated. Here are the mutated foci.Position 179162859 doesn't seem to be mutated. Here are the mutated foci.Position 50331586 doesn't seem to be mutated. Here are the mutated foci.Position 55190125 doesn't seem to be mutated. Here are the mutated foci.Position 140749154 doesn't seem to be mutated. Here are the mutated foci.Position 104773380 doesn't seem to be mutated. Here are the mutated foci.Position 104775003 doesn't seem to be mutated. Here are the mutated foci.Position 7675237 doesn't seem to be mutated. Here are the mutated foci.Position 42337587 doesn't seem to be mutated. Here are the mutated foci.Position 42357079 doesn't seem to be mutated. Here are the mutated foci.Position 42366429 doesn't seem to be mutated. Here are the mutated foci.Position 44074769 doesn't seem to be mutated. Here are the mutated foci.Position 34975738 doesn't seem to be mutated. Here are the mutated foci.Position 34993108 doesn't seem to be mutated. Here are the mutated foci.Position 35442603 doesn't seem to be mutated. Here are the mutated foci.Position 41152011 doesn't seem to be mutated. Here are the mutated foci.Position 41168598 doesn't seem to be mutated. Here are the mutated foci.Position 55019530 doesn't seem to be mutated. Here are the mutated foci.Position 96306504 doesn't seem to be mutated. Here are the mutated foci.Position 95508400 doesn't seem to be mutated. Here are the mutated foci.Position 108873854 doesn't seem to be mutated. Here are the mutated foci.Position 119206829 doesn't seem to be mutated. Here are the mutated foci.Position 20192797 doesn't seem to be mutated. Here are the mutated foci.Position 66411097 doesn't seem to be mutated. Here are the mutated foci.Position 3611636 doesn't seem to be mutated. Here are the mutated foci.Position 43073749 doesn't seem to be mutated. Here are the mutated foci.Position 43100739 doesn't seem to be mutated. Here are the mutated foci.Position 11078050 doesn't seem to be mutated. Here are the mutated foci.Position 193127958 doesn't seem to be mutated. Here are the mutated foci.Position 193127963 doesn't seem to be mutated. Here are the mutated foci.Position 69756465 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 88999160 doesn't seem to be mutated. Here are the mutated foci.Position 32365989 doesn't seem to be mutated. Here are the mutated foci.Position 58861808 doesn't seem to be mutated. Here are the mutated foci.Position 34862116 doesn't seem to be mutated. Here are the mutated foci.Position 35252864 doesn't seem to be mutated. Here are the mutated foci.Position 35594184 doesn't seem to be mutated. Here are the mutated foci.Position 35819787 doesn't seem to be mutated. Here are the mutated foci.Position 133629877 doesn't seem to be mutated. Here are the mutated foci.Position 17039085 doesn't seem to be mutated. Here are the mutated foci.Position 232186712 doesn't seem to be mutated. Here are the mutated foci.Position 54270081 doesn't seem to be mutated. Here are the mutated foci.Position 246142 doesn't seem to be mutated. Here are the mutated foci.Position 177170356 doesn't seem to be mutated. Here are the mutated foci.Position 31123244 doesn't seem to be mutated. Here are the mutated foci.Position 102540718 doesn't seem to be mutated. Here are the mutated foci.Position 102870368 doesn't seem to be mutated. Here are the mutated foci.Position 65523736 doesn't seem to be mutated. Here are the mutated foci.Position 56905549 doesn't seem to be mutated. Here are the mutated foci.Position 357587 doesn't seem to be mutated. Here are the mutated foci.Position 43114831 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 112418520 doesn't seem to be mutated. Here are the mutated foci.Position 29619057 doesn't seem to be mutated. Here are the mutated foci.Position 29245449 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 95358075 doesn't seem to be mutated. Here are the mutated foci.Position 95511114 doesn't seem to be mutated. Here are the mutated foci.Position 86852427 doesn't seem to be mutated. Here are the mutated foci.Position 530502 doesn't seem to be mutated. Here are the mutated foci.Position 11783852 doesn't seem to be mutated. Here are the mutated foci.Position 77787336 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 58227664 doesn't seem to be mutated. Here are the mutated foci.Position 232156494 doesn't seem to be mutated. Here are the mutated foci.Position 96157225 doesn't seem to be mutated. Here are the mutated foci.Position 40622964 doesn't seem to be mutated. Here are the mutated foci.Position 58695772 doesn't seem to be mutated. Here are the mutated foci.Position 34930271 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 133344171 doesn't seem to be mutated. Here are the mutated foci.Position 133986704 doesn't seem to be mutated. Here are the mutated foci.Position 138689307 doesn't seem to be mutated. Here are the mutated foci.Position 138753633 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 50214701 doesn't seem to be mutated. Here are the mutated foci.Position 35084547 doesn't seem to be mutated. Here are the mutated foci.Position 35981129 doesn't seem to be mutated. Here are the mutated foci.Position 48687627 doesn't seem to be mutated. Here are the mutated foci.Position 124343594 doesn't seem to be mutated. Here are the mutated foci.Position 133912180 doesn't seem to be mutated. Here are the mutated foci.Position 92829651 doesn't seem to be mutated. Here are the mutated foci.Position 55189118 doesn't seem to be mutated. Here are the mutated foci.Position 108885157 doesn't seem to be mutated. Here are the mutated foci.Position 40167314 doesn't seem to be mutated. Here are the mutated foci.Position 133914882 doesn't seem to be mutated. Here are the mutated foci.Position 29289458 doesn't seem to be mutated. Here are the mutated foci.Position 39069551 doesn't seem to be mutated. Here are the mutated foci.Position 144369651 doesn't seem to be mutated. Here are the mutated foci.Position 168930772 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 1296053 doesn't seem to be mutated. Here are the mutated foci.Position 96198523 doesn't seem to be mutated. Here are the mutated foci.Position 124880161 doesn't seem to be mutated. Here are the mutated foci.Position 31153952 doesn't seem to be mutated. Here are the mutated foci.Position 117873188 doesn't seem to be mutated. Here are the mutated foci.Position 117934527 doesn't seem to be mutated. Here are the mutated foci.Position 240380 doesn't seem to be mutated. Here are the mutated foci.Position 2062046 doesn't seem to be mutated. Here are the mutated foci.Position 99146553 doesn't seem to be mutated. Here are the mutated foci.Position 86873124 doesn't seem to be mutated. Here are the mutated foci.Position 110995355 doesn't seem to be mutated. Here are the mutated foci.Position 121503868 doesn't seem to be mutated. Here are the mutated foci.Position 108258648 doesn't seem to be mutated. Here are the mutated foci.Position 132623547 doesn't seem to be mutated. Here are the mutated foci.Position 48304763 doesn't seem to be mutated. Here are the mutated foci.Position 48325595 doesn't seem to be mutated. Here are the mutated foci.Position 31149289 doesn't seem to be mutated. Here are the mutated foci.Position 51087667 doesn't seem to be mutated. Here are the mutated foci.Position 50397546 doesn't seem to be mutated. Here are the mutated foci.Position 34898160 doesn't seem to be mutated. Here are the mutated foci.Position 34939776 doesn't seem to be mutated. Here are the mutated foci.Position 35012400 doesn't seem to be mutated. Here are the mutated foci.Position 35012402 doesn't seem to be mutated. Here are the mutated foci.Position 35605383 doesn't seem to be mutated. Here are the mutated foci.Position 23791819 doesn't seem to be mutated. Here are the mutated foci.Position 23832227 doesn't seem to be mutated. Here are the mutated foci.Position 41141287 doesn't seem to be mutated. Here are the mutated foci.Position 77657129 doesn't seem to be mutated. Here are the mutated foci.Position 133305675 doesn't seem to be mutated. Here are the mutated foci.Position 133662967 doesn't seem to be mutated. Here are the mutated foci.Position 133919274 doesn't seem to be mutated. Here are the mutated foci.Position 147910866 doesn't seem to be mutated. Here are the mutated foci.Position 218273 doesn't seem to be mutated. Here are the mutated foci.Position 42010275 doesn't seem to be mutated. Here are the mutated foci.Position 21974720 doesn't seem to be mutated. Here are the mutated foci.Position 43102509 doesn't seem to be mutated. Here are the mutated foci.Position 110924903 doesn't seem to be mutated. Here are the mutated foci.Position 45187314 doesn't seem to be mutated. Here are the mutated foci.Position 95114323 doesn't seem to be mutated. Here are the mutated foci.Position 31229061 doesn't seem to be mutated. Here are the mutated foci.Position 31229067 doesn't seem to be mutated. Here are the mutated foci.Position 31315853 doesn't seem to be mutated. Here are the mutated foci.Position 31341689 doesn't seem to be mutated. Here are the mutated foci.Position 61698700 doesn't seem to be mutated. Here are the mutated foci.Position 29279632 doesn't seem to be mutated. Here are the mutated foci.Position 29904235 doesn't seem to be mutated. Here are the mutated foci.Position 168976399 doesn't seem to be mutated. Here are the mutated foci.Position 80693450 doesn't seem to be mutated. Here are the mutated foci.Position 80693453 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.Position 43578405 doesn't seem to be mutated. Here are the mutated foci.Position 29773237 doesn't seem to be mutated. Here are the mutated foci.Position 39067425 doesn't seem to be mutated. Here are the mutated foci.Position 54722853 doesn't seem to be mutated. Here are the mutated foci.Position 54722855 doesn't seem to be mutated. Here are the mutated foci.Position 117915352 doesn't seem to be mutated. Here are the mutated foci.Position 31096141 doesn't seem to be mutated. Here are the mutated foci.Position 34874677 doesn't seem to be mutated. Here are the mutated foci.Position 41163627 doesn't seem to be mutated. Here are the mutated foci.Position 48671831 doesn't seem to be mutated. Here are the mutated foci.Position 77743036 doesn't seem to be mutated. Here are the mutated foci.Position 133960698 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 156833062 doesn't seem to be mutated. Here are the mutated foci.Position 231959243 doesn't seem to be mutated. Here are the mutated foci.Position 232103684 doesn't seem to be mutated. Here are the mutated foci.Position 122274163 doesn't seem to be mutated. Here are the mutated foci.Position 41746102 doesn't seem to be mutated. Here are the mutated foci.Position 54682436 doesn't seem to be mutated. Here are the mutated foci.Position 112800832 doesn't seem to be mutated. Here are the mutated foci.Position 138809753 doesn't seem to be mutated. Here are the mutated foci.Position 43578994 doesn't seem to be mutated. Here are the mutated foci.Position 42218558 doesn't seem to be mutated. Here are the mutated foci.Position 116766727 doesn't seem to be mutated. Here are the mutated foci.Position 140892998 doesn't seem to be mutated. Here are the mutated foci.Position 36867534 doesn't seem to be mutated. Here are the mutated foci.Position 62006003 doesn't seem to be mutated. Here are the mutated foci.Position 61445696 doesn't seem to be mutated. Here are the mutated foci.Position 61446118 doesn't seem to be mutated. Here are the mutated foci.Position 3849674 doesn't seem to be mutated. Here are the mutated foci.Position 7675140 doesn't seem to be mutated. Here are the mutated foci.Position 35272387 doesn't seem to be mutated. Here are the mutated foci.Position 35361942 doesn't seem to be mutated. Here are the mutated foci.Position 77636504 doesn't seem to be mutated. Here are the mutated foci.Position 23695907 doesn't seem to be mutated. Here are the mutated foci.Position 114716176 doesn't seem to be mutated. Here are the mutated foci.Position 155242792 doesn't seem to be mutated. Here are the mutated foci.Position 231421667 doesn't seem to be mutated. Here are the mutated foci.Position 47373571 doesn't seem to be mutated. Here are the mutated foci.Position 47401695 doesn't seem to be mutated. Here are the mutated foci.Position 232153608 doesn't seem to be mutated. Here are the mutated foci.Position 48586478 doesn't seem to be mutated. Here are the mutated foci.Position 69739850 doesn't seem to be mutated. Here are the mutated foci.Position 1805669 doesn't seem to be mutated. Here are the mutated foci.Position 1806684 doesn't seem to be mutated. Here are the mutated foci.Position 1252360 doesn't seem to be mutated. Here are the mutated foci.Position 177515259 doesn't seem to be mutated. Here are the mutated foci.Position 177516448 doesn't seem to be mutated. Here are the mutated foci.Position 43615230 doesn't seem to be mutated. Here are the mutated foci.Position 19378514 doesn't seem to be mutated. Here are the mutated foci.Position 78035417 doesn't seem to be mutated. Here are the mutated foci.Position 61437845 doesn't seem to be mutated. Here are the mutated foci.Position 108306729 doesn't seem to be mutated. Here are the mutated foci.Position 57750764 doesn't seem to be mutated. Here are the mutated foci.Position 57751342 doesn't seem to be mutated. Here are the mutated foci.Position 57751736 doesn't seem to be mutated. Here are the mutated foci.Position 112419346 doesn't seem to be mutated. Here are the mutated foci.Position 20192748 doesn't seem to be mutated. Here are the mutated foci.Position 48328255 doesn't seem to be mutated. Here are the mutated foci.Position 48328363 doesn't seem to be mutated. Here are the mutated foci.Position 104770421 doesn't seem to be mutated. Here are the mutated foci.Position 104773090 doesn't seem to be mutated. Here are the mutated foci.Position 104773380 doesn't seem to be mutated. Here are the mutated foci.Position 40708780 doesn't seem to be mutated. Here are the mutated foci.Position 68808563 doesn't seem to be mutated. Here are the mutated foci.Position 7673609 doesn't seem to be mutated. Here are the mutated foci.Position 7673838 doesn't seem to be mutated. Here are the mutated foci.Position 42324847 doesn't seem to be mutated. Here are the mutated foci.Position 42333766 doesn't seem to be mutated. Here are the mutated foci.Position 42337587 doesn't seem to be mutated. Here are the mutated foci.Position 76474535 doesn't seem to be mutated. Here are the mutated foci.Position 51030684 doesn't seem to be mutated. Here are the mutated foci.Position 11059886 doesn't seem to be mutated. Here are the mutated foci.Position 50401924 doesn't seem to be mutated. Here are the mutated foci.Position 58903586 doesn't seem to be mutated. Here are the mutated foci.Position 58909424 doesn't seem to be mutated. Here are the mutated foci.Position 58909803 doesn't seem to be mutated. Here are the mutated foci.Position 35339204 doesn't seem to be mutated. Here are the mutated foci.Position 23818416 doesn't seem to be mutated. Here are the mutated foci.Position 41112433 doesn't seem to be mutated. Here are the mutated foci.Position 29484226 doesn't seem to be mutated. Here are the mutated foci.Position 29579861 doesn't seem to be mutated. Here are the mutated foci.Position 29634349 doesn't seem to be mutated. Here are the mutated foci.Position 29800061 doesn't seem to be mutated. Here are the mutated foci.Position 58163748 doesn't seem to be mutated. Here are the mutated foci.Position 214749692 doesn't seem to be mutated. Here are the mutated foci.Position 214805710 doesn't seem to be mutated. Here are the mutated foci.Position 232309015 doesn't seem to be mutated. Here are the mutated foci.Position 69941133 doesn't seem to be mutated. Here are the mutated foci.Position 177206119 doesn't seem to be mutated. Here are the mutated foci.Position 50409281 doesn't seem to be mutated. Here are the mutated foci.Position 55152057 doesn't seem to be mutated. Here are the mutated foci.Position 55152069 doesn't seem to be mutated. Here are the mutated foci.Position 96227868 doesn't seem to be mutated. Here are the mutated foci.Position 124902534 doesn't seem to be mutated. Here are the mutated foci.Position 148821089 doesn't seem to be mutated. Here are the mutated foci.Position 416467 doesn't seem to be mutated. Here are the mutated foci.Position 2095403 doesn't seem to be mutated. Here are the mutated foci.Position 2180183 doesn't seem to be mutated. Here are the mutated foci.Position 102592337 doesn't seem to be mutated. Here are the mutated foci.Position 108226242 doesn't seem to be mutated. Here are the mutated foci.Position 108244747 doesn't seem to be mutated. Here are the mutated foci.Position 119299270 doesn't seem to be mutated. Here are the mutated foci.Position 11797323 doesn't seem to be mutated. Here are the mutated foci.Position 77908102 doesn't seem to be mutated. Here are the mutated foci.Position 102842833 doesn't seem to be mutated. Here are the mutated foci.Position 36519829 doesn't seem to be mutated. Here are the mutated foci.Position 94383319 doesn't seem to be mutated. Here are the mutated foci.Position 31161723 doesn't seem to be mutated. Here are the mutated foci.Position 59097144 doesn't seem to be mutated. Here are the mutated foci.Position 59100390 doesn't seem to be mutated. Here are the mutated foci.Position 61738178 doesn't seem to be mutated. Here are the mutated foci.Position 61752195 doesn't seem to be mutated. Here are the mutated foci.Position 33298823 doesn't seem to be mutated. Here are the mutated foci.Position 34914303 doesn't seem to be mutated. Here are the mutated foci.Position 35054655 doesn't seem to be mutated. Here are the mutated foci.Position 35758139 doesn't seem to be mutated. Here are the mutated foci.Position 35758141 doesn't seem to be mutated. Here are the mutated foci.Position 35899840 doesn't seem to be mutated. Here are the mutated foci.Position 77514754 doesn't seem to be mutated. Here are the mutated foci.Position 77554951 doesn't seem to be mutated. Here are the mutated foci.Position 77722369 doesn't seem to be mutated. Here are the mutated foci.Position 133690329 doesn't seem to be mutated. Here are the mutated foci.Position 10244576 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 10045875 doesn't seem to be mutated. Here are the mutated foci.Position 140739159 doesn't seem to be mutated. Here are the mutated foci.Position 87954114 doesn't seem to be mutated. Here are the mutated foci.Position 2884503 doesn't seem to be mutated. Here are the mutated foci.Position 12713583 doesn't seem to be mutated. Here are the mutated foci.Position 20192686 doesn't seem to be mutated. Here are the mutated foci.Position 66384327 doesn't seem to be mutated. Here are the mutated foci.Position 58716802 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 80840430 doesn't seem to be mutated. Here are the mutated foci.Position 55120908 doesn't seem to be mutated. Here are the mutated foci.Position 121493606 doesn't seem to be mutated. Here are the mutated foci.Position 132655314 doesn't seem to be mutated. Here are the mutated foci.Position 32331222 doesn't seem to be mutated. Here are the mutated foci.Position 38325450 doesn't seem to be mutated. Here are the mutated foci.Position 35182783 doesn't seem to be mutated. Here are the mutated foci.Position 35782672 doesn't seem to be mutated. Here are the mutated foci.Position 29244984 doesn't seem to be mutated. Here are the mutated foci.Position 168955470 doesn't seem to be mutated. Here are the mutated foci.Position 104822606 doesn't seem to be mutated. Here are the mutated foci.Position 28721636 doesn't seem to be mutated. Here are the mutated foci.Position 10212762 doesn't seem to be mutated. Here are the mutated foci.Position 155238042 doesn't seem to be mutated. Here are the mutated foci.Position 29431034 doesn't seem to be mutated. Here are the mutated foci.Position 29680249 doesn't seem to be mutated. Here are the mutated foci.Position 29752970 doesn't seem to be mutated. Here are the mutated foci.Position 47505284 doesn't seem to be mutated. Here are the mutated foci.Position 168978879 doesn't seem to be mutated. Here are the mutated foci.Position 169034527 doesn't seem to be mutated. Here are the mutated foci.Position 69911227 doesn't seem to be mutated. Here are the mutated foci.Position 179208456 doesn't seem to be mutated. Here are the mutated foci.Position 37834818 doesn't seem to be mutated. Here are the mutated foci.Position 112818834 doesn't seem to be mutated. Here are the mutated foci.Position 50373484 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 117924532 doesn't seem to be mutated. Here are the mutated foci.Position 2019139 doesn't seem to be mutated. Here are the mutated foci.Position 87969050 doesn't seem to be mutated. Here are the mutated foci.Position 102631894 doesn't seem to be mutated. Here are the mutated foci.Position 110975787 doesn't seem to be mutated. Here are the mutated foci.Position 111005742 doesn't seem to be mutated. Here are the mutated foci.Position 32399782 doesn't seem to be mutated. Here are the mutated foci.Position 67486176 doesn't seem to be mutated. Here are the mutated foci.Position 11727250 doesn't seem to be mutated. Here are the mutated foci.Position 25212752 doesn't seem to be mutated. Here are the mutated foci.Position 48432476 doesn't seem to be mutated. Here are the mutated foci.Position 66431450 doesn't seem to be mutated. Here are the mutated foci.Position 66458306 doesn't seem to be mutated. Here are the mutated foci.Position 82532655 doesn't seem to be mutated. Here are the mutated foci.Position 89313973 doesn't seem to be mutated. Here are the mutated foci.Position 31172344 doesn't seem to be mutated. Here are the mutated foci.Position 35666250 doesn't seem to be mutated. Here are the mutated foci.Position 35821764 doesn't seem to be mutated. Here are the mutated foci.Position 35855435 doesn't seem to be mutated. Here are the mutated foci.Position 35873429 doesn't seem to be mutated. Here are the mutated foci.Position 133597734 doesn't seem to be mutated. Here are the mutated foci.Position 147911795 doesn't seem to be mutated. Here are the mutated foci.Position 158580291 doesn't seem to be mutated. Here are the mutated foci.Position 96180342 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 61853387 doesn't seem to be mutated. Here are the mutated foci.Position 104822844 doesn't seem to be mutated. Here are the mutated foci.Position 88999160 doesn't seem to be mutated. Here are the mutated foci.Position 23615248 doesn't seem to be mutated. Here are the mutated foci.Position 35194089 doesn't seem to be mutated. Here are the mutated foci.Position 231374318 doesn't seem to be mutated. Here are the mutated foci.Position 29792628 doesn't seem to be mutated. Here are the mutated foci.Position 232116902 doesn't seem to be mutated. Here are the mutated foci.Position 10022698 doesn't seem to be mutated. Here are the mutated foci.Position 232554 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 112097481 doesn't seem to be mutated. Here are the mutated foci.Position 25216580 doesn't seem to be mutated. Here are the mutated foci.Position 29700629 doesn't seem to be mutated. Here are the mutated foci.Position 132568077 doesn't seem to be mutated. Here are the mutated foci.Position 43577611 doesn't seem to be mutated. Here are the mutated foci.Position 133641378 doesn't seem to be mutated. Here are the mutated foci.Position 10315041 doesn't seem to be mutated. Here are the mutated foci.Position 39120783 doesn't seem to be mutated. Here are the mutated foci.Position 47716890 doesn't seem to be mutated. Here are the mutated foci.Position 177132805 doesn't seem to be mutated. Here are the mutated foci.Position 2148484 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 29846433 doesn't seem to be mutated. Here are the mutated foci.Position 112734778 doesn't seem to be mutated. Here are the mutated foci.Position 177190981 doesn't seem to be mutated. Here are the mutated foci.Position 42164080 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 140798581 doesn't seem to be mutated. Here are the mutated foci.Position 530152 doesn't seem to be mutated. Here are the mutated foci.Position 112487284 doesn't seem to be mutated. Here are the mutated foci.Position 50148698 doesn't seem to be mutated. Here are the mutated foci.Position 94372837 doesn't seem to be mutated. Here are the mutated foci.Position 17054445 doesn't seem to be mutated. Here are the mutated foci.Position 47446839 doesn't seem to be mutated. Here are the mutated foci.Position 35465255 doesn't seem to be mutated. Here are the mutated foci.Position 66478458 doesn't seem to be mutated. Here are the mutated foci.Position 77791193 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 157244372 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 62013793 doesn't seem to be mutated. Here are the mutated foci.Position 42384128 doesn't seem to be mutated. Here are the mutated foci.Position 34930271 doesn't seem to be mutated. Here are the mutated foci.Position 47373571 doesn't seem to be mutated. Here are the mutated foci.Position 10152222 doesn't seem to be mutated. Here are the mutated foci.Position 12584658 doesn't seem to be mutated. Here are the mutated foci.Position 225561 doesn't seem to be mutated. Here are the mutated foci.Position 43608464 doesn't seem to be mutated. Here are the mutated foci.Position 140785304 doesn't seem to be mutated. Here are the mutated foci.Position 142753625 doesn't seem to be mutated. Here are the mutated foci.Position 19376388 doesn't seem to be mutated. Here are the mutated foci.Position 19378514 doesn't seem to be mutated. Here are the mutated foci.Position 57751736 doesn't seem to be mutated. Here are the mutated foci.Position 112483457 doesn't seem to be mutated. Here are the mutated foci.Position 48328209 doesn't seem to be mutated. Here are the mutated foci.Position 104773090 doesn't seem to be mutated. Here are the mutated foci.Position 104775208 doesn't seem to be mutated. Here are the mutated foci.Position 68808563 doesn't seem to be mutated. Here are the mutated foci.Position 45357544 doesn't seem to be mutated. Here are the mutated foci.Position 58903586 doesn't seem to be mutated. Here are the mutated foci.Position 58909213 doesn't seem to be mutated. Here are the mutated foci.Position 58909424 doesn't seem to be mutated. Here are the mutated foci.Position 58909579 doesn't seem to be mutated. Here are the mutated foci.Position 58909803 doesn't seem to be mutated. Here are the mutated foci.Position 58910081 doesn't seem to be mutated. Here are the mutated foci.Position 58910401 doesn't seem to be mutated. Here are the mutated foci.Position 45160542 doesn't seem to be mutated. Here are the mutated foci.Position 29642052 doesn't seem to be mutated. Here are the mutated foci.Position 29828449 doesn't seem to be mutated. Here are the mutated foci.Position 29828487 doesn't seem to be mutated. Here are the mutated foci.Position 31174883 doesn't seem to be mutated. Here are the mutated foci.Position 95379317 doesn't seem to be mutated. Here are the mutated foci.Position 78059797 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 29492570 doesn't seem to be mutated. Here are the mutated foci.Position 29700629 doesn't seem to be mutated. Here are the mutated foci.Position 10022698 doesn't seem to be mutated. Here are the mutated foci.Position 10063035 doesn't seem to be mutated. Here are the mutated foci.Position 12602526 doesn't seem to be mutated. Here are the mutated foci.Position 112709738 doesn't seem to be mutated. Here are the mutated foci.Position 138710724 doesn't seem to be mutated. Here are the mutated foci.Position 157201246 doesn't seem to be mutated. Here are the mutated foci.Position 38462460 doesn't seem to be mutated. Here are the mutated foci.Position 118070488 doesn't seem to be mutated. Here are the mutated foci.Position 294736 doesn't seem to be mutated. Here are the mutated foci.Position 86773128 doesn't seem to be mutated. Here are the mutated foci.Position 119281181 doesn't seem to be mutated. Here are the mutated foci.Position 111438614 doesn't seem to be mutated. Here are the mutated foci.Position 32324313 doesn't seem to be mutated. Here are the mutated foci.Position 48364916 doesn't seem to be mutated. Here are the mutated foci.Position 2050448 doesn't seem to be mutated. Here are the mutated foci.Position 7670684 doesn't seem to be mutated. Here are the mutated foci.Position 7676145 doesn't seem to be mutated. Here are the mutated foci.Position 23820565 doesn't seem to be mutated. Here are the mutated foci.Position 133934041 doesn't seem to be mutated. Here are the mutated foci.Position 154762524 doesn't seem to be mutated. Here are the mutated foci.Position 32351782 doesn't seem to be mutated. Here are the mutated foci.Position 147949786 doesn't seem to be mutated. Here are the mutated foci.Position 144430484 doesn't seem to be mutated. Here are the mutated foci.Position 112768759 doesn't seem to be mutated. Here are the mutated foci.Position 50376483 doesn't seem to be mutated. Here are the mutated foci.Position 55055705 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 400152 doesn't seem to be mutated. Here are the mutated foci.Position 32405967 doesn't seem to be mutated. Here are the mutated foci.Position 34853957 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 93150768 doesn't seem to be mutated. Here are the mutated foci.Position 124831602 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 140753354 doesn't seem to be mutated. Here are the mutated foci.Position 113570807 doesn't seem to be mutated. Here are the mutated foci.Position 108263436 doesn't seem to be mutated. Here are the mutated foci.Position 3723405 doesn't seem to be mutated. Here are the mutated foci.Position 7673826 doesn't seem to be mutated. Here are the mutated foci.Position 77790922 doesn't seem to be mutated. Here are the mutated foci.Position 161340297 doesn't seem to be mutated. Here are the mutated foci.Position 11788756 doesn't seem to be mutated. Here are the mutated foci.Position 34899401 doesn't seem to be mutated. Here are the mutated foci.Position 34928908 doesn't seem to be mutated. Here are the mutated foci.Position 29844863 doesn't seem to be mutated. Here are the mutated foci.Position 231959243 doesn't seem to be mutated. Here are the mutated foci.Position 80762620 doesn't seem to be mutated. Here are the mutated foci.Position 112734778 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 36519724 doesn't seem to be mutated. Here are the mutated foci.Position 89267332 doesn't seem to be mutated. Here are the mutated foci.Position 68524184 doesn't seem to be mutated. Here are the mutated foci.Position 32412627 doesn't seem to be mutated. Here are the mutated foci.Position 29306653 doesn't seem to be mutated. Here are the mutated foci.Position 47469037 doesn't seem to be mutated. Here are the mutated foci.Position 47653032 doesn't seem to be mutated. Here are the mutated foci.Position 47711963 doesn't seem to be mutated. Here are the mutated foci.Position 10149198 doesn't seem to be mutated. Here are the mutated foci.Position 37021624 doesn't seem to be mutated. Here are the mutated foci.Position 69953647 doesn't seem to be mutated. Here are the mutated foci.Position 1255137 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 104778811 doesn't seem to be mutated. Here are the mutated foci.Position 140766713 doesn't seem to be mutated. Here are the mutated foci.Position 140853506 doesn't seem to be mutated. Here are the mutated foci.Position 2119565 doesn't seem to be mutated. Here are the mutated foci.Position 95218845 doesn't seem to be mutated. Here are the mutated foci.Position 95506601 doesn't seem to be mutated. Here are the mutated foci.Position 87921618 doesn't seem to be mutated. Here are the mutated foci.Position 111407893 doesn't seem to be mutated. Here are the mutated foci.Position 48438556 doesn't seem to be mutated. Here are the mutated foci.Position 38342420 doesn't seem to be mutated. Here are the mutated foci.Position 31243184 doesn't seem to be mutated. Here are the mutated foci.Position 58704914 doesn't seem to be mutated. Here are the mutated foci.Position 68532250 doesn't seem to be mutated. Here are the mutated foci.Position 11006505 doesn't seem to be mutated. Here are the mutated foci.Position 32433315 doesn't seem to be mutated. Here are the mutated foci.Position 58852220 doesn't seem to be mutated. Here are the mutated foci.Position 34804211 doesn't seem to be mutated. Here are the mutated foci.Position 34881439 doesn't seem to be mutated. Here are the mutated foci.Position 35020281 doesn't seem to be mutated. Here are the mutated foci.Position 23797341 doesn't seem to be mutated. Here are the mutated foci.Position 124344796 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 116762590 doesn't seem to be mutated. Here are the mutated foci.Position 21974720 doesn't seem to be mutated. Here are the mutated foci.Position 95482620 doesn't seem to be mutated. Here are the mutated foci.Position 50204904 doesn't seem to be mutated. Here are the mutated foci.Position 32380170 doesn't seem to be mutated. Here are the mutated foci.Position 32380174 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 232176479 doesn't seem to be mutated. Here are the mutated foci.Position 69950518 doesn't seem to be mutated. Here are the mutated foci.Position 132601646 doesn't seem to be mutated. Here are the mutated foci.Position 138780356 doesn't seem to be mutated. Here are the mutated foci.Position 124880161 doesn't seem to be mutated. Here are the mutated foci.Position 32714398 doesn't seem to be mutated. Here are the mutated foci.Position 34930719 doesn't seem to be mutated. Here are the mutated foci.Position 193166629 doesn't seem to be mutated. Here are the mutated foci.Position 10080693 doesn't seem to be mutated. Here are the mutated foci.Position 54712031 doesn't seem to be mutated. Here are the mutated foci.Position 138808885 doesn't seem to be mutated. Here are the mutated foci.Position 55149702 doesn't seem to be mutated. Here are the mutated foci.Position 116718398 doesn't seem to be mutated. Here are the mutated foci.Position 140816975 doesn't seem to be mutated. Here are the mutated foci.Position 2181515 doesn't seem to be mutated. Here are the mutated foci.Position 36999594 doesn't seem to be mutated. Here are the mutated foci.Position 32392973 doesn't seem to be mutated. Here are the mutated foci.Position 119245131 doesn't seem to be mutated. Here are the mutated foci.Position 11663723 doesn't seem to be mutated. Here are the mutated foci.Position 10980927 doesn't seem to be mutated. Here are the mutated foci.Position 58901513 doesn't seem to be mutated. Here are the mutated foci.Position 35086032 doesn't seem to be mutated. Here are the mutated foci.Position 35362397 doesn't seem to be mutated. Here are the mutated foci.Position 29642281 doesn't seem to be mutated. Here are the mutated foci.Position 42225004 doesn't seem to be mutated. Here are the mutated foci.Position 2100230 doesn't seem to be mutated. Here are the mutated foci.Position 61985464 doesn't seem to be mutated. Here are the mutated foci.Position 108313881 doesn't seem to be mutated. Here are the mutated foci.Position 48318590 doesn't seem to be mutated. Here are the mutated foci.Position 50165466 doesn't seem to be mutated. Here are the mutated foci.Position 58720427 doesn't seem to be mutated. Here are the mutated foci.Position 58858371 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 2185279 doesn't seem to be mutated. Here are the mutated foci.Position 10968499 doesn't seem to be mutated. Here are the mutated foci.Position 35347921 doesn't seem to be mutated. Here are the mutated foci.Position 41181074 doesn't seem to be mutated. Here are the mutated foci.Position 77515425 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 96244386 doesn't seem to be mutated. Here are the mutated foci.Position 104727594 doesn't seem to be mutated. Here are the mutated foci.Position 104727713 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 35339204 doesn't seem to be mutated. Here are the mutated foci.Position 161326562 doesn't seem to be mutated. Here are the mutated foci.Position 38986530 doesn't seem to be mutated. Here are the mutated foci.Position 42153347 doesn't seem to be mutated. Here are the mutated foci.Position 55055705 doesn't seem to be mutated. Here are the mutated foci.Position 61992706 doesn't seem to be mutated. Here are the mutated foci.Position 11831190 doesn't seem to be mutated. Here are the mutated foci.Position 29654656 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 54270664 doesn't seem to be mutated. Here are the mutated foci.Position 116781240 doesn't seem to be mutated. Here are the mutated foci.Position 121598658 doesn't seem to be mutated. Here are the mutated foci.Position 11654720 doesn't seem to be mutated. Here are the mutated foci.Position 112472981 doesn't seem to be mutated. Here are the mutated foci.Position 43080891 doesn't seem to be mutated. Here are the mutated foci.Position 29667236 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 47667940 doesn't seem to be mutated. Here are the mutated foci.Position 148866518 doesn't seem to be mutated. Here are the mutated foci.Position 95115507 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 118017442 doesn't seem to be mutated. Here are the mutated foci.Position 88999160 doesn't seem to be mutated. Here are the mutated foci.Position 2884426 doesn't seem to be mutated. Here are the mutated foci.Position 132660723 doesn't seem to be mutated. Here are the mutated foci.Position 59077970 doesn't seem to be mutated. Here are the mutated foci.Position 41867255 doesn't seem to be mutated. Here are the mutated foci.Position 29671938 doesn't seem to be mutated. Here are the mutated foci.Position 41088465 doesn't seem to be mutated. Here are the mutated foci.Position 133406873 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 45187314 doesn't seem to be mutated. Here are the mutated foci.Position 38271440 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 133798919 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.Position 50786762 doesn't seem to be mutated. Here are the mutated foci.Position 35480825 doesn't seem to be mutated. Here are the mutated foci.Position 193162152 doesn't seem to be mutated. Here are the mutated foci.Position 144375894 doesn't seem to be mutated. Here are the mutated foci.Position 50209253 doesn't seem to be mutated. Here are the mutated foci.Position 23637447 doesn't seem to be mutated. Here are the mutated foci.Position 23788913 doesn't seem to be mutated. Here are the mutated foci.Position 47739046 doesn't seem to be mutated. Here are the mutated foci.Position 12585083 doesn't seem to be mutated. Here are the mutated foci.Position 442078 doesn't seem to be mutated. Here are the mutated foci.Position 454286 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 90775512 doesn't seem to be mutated. Here are the mutated foci.Position 77610518 doesn't seem to be mutated. Here are the mutated foci.Position 133299938 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 58175385 doesn't seem to be mutated. Here are the mutated foci.Position 144373011 doesn't seem to be mutated. Here are the mutated foci.Position 10057208 doesn't seem to be mutated. Here are the mutated foci.Position 50392388 doesn't seem to be mutated. Here are the mutated foci.Position 108317103 doesn't seem to be mutated. Here are the mutated foci.Position 48447467 doesn't seem to be mutated. Here are the mutated foci.Position 7673803 doesn't seem to be mutated. Here are the mutated foci.Position 34809652 doesn't seem to be mutated. Here are the mutated foci.Position 35641213 doesn't seem to be mutated. Here are the mutated foci.Position 23810666 doesn't seem to be mutated. Here are the mutated foci.Position 133920004 doesn't seem to be mutated. Here are the mutated foci.Position 29392958 doesn't seem to be mutated. Here are the mutated foci.Position 132610028 doesn't seem to be mutated. Here are the mutated foci.Position 41973917 doesn't seem to be mutated. Here are the mutated foci.Position 140742773 doesn't seem to be mutated. Here are the mutated foci.Position 140785300 doesn't seem to be mutated. Here are the mutated foci.Position 2187118 doesn't seem to be mutated. Here are the mutated foci.Position 95351218 doesn't seem to be mutated. Here are the mutated foci.Position 140777990 doesn't seem to be mutated. Here are the mutated foci.Position 119228814 doesn't seem to be mutated. Here are the mutated foci.Position 31097704 doesn't seem to be mutated. Here are the mutated foci.Position 161326562 doesn't seem to be mutated. Here are the mutated foci.Position 47442373 doesn't seem to be mutated. Here are the mutated foci.Position 168975413 doesn't seem to be mutated. Here are the mutated foci.Position 61912666 doesn't seem to be mutated. Here are the mutated foci.Position 111422141 doesn't seem to be mutated. Here are the mutated foci.Position 41107874 doesn't seem to be mutated. Here are the mutated foci.Position 77790922 doesn't seem to be mutated. Here are the mutated foci.Position 232140218 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 11879094 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 34989004 doesn't seem to be mutated. Here are the mutated foci.Position 77587357 doesn't seem to be mutated. Here are the mutated foci.Position 10070567 doesn't seem to be mutated. Here are the mutated foci.Position 177155251 doesn't seem to be mutated. Here are the mutated foci.Position 117795497 doesn't seem to be mutated. Here are the mutated foci.Position 31283424 doesn't seem to be mutated. Here are the mutated foci.Position 43089715 doesn't seem to be mutated. Here are the mutated foci.Position 58708846 doesn't seem to be mutated. Here are the mutated foci.Position 32403888 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 177190555 doesn't seem to be mutated. Here are the mutated foci.Position 25245350 doesn't seem to be mutated. Here are the mutated foci.Position 17231405 doesn't seem to be mutated. Here are the mutated foci.Position 41860463 doesn't seem to be mutated. Here are the mutated foci.Position 29538693 doesn't seem to be mutated. Here are the mutated foci.Position 47352521 doesn't seem to be mutated. Here are the mutated foci.Position 168939247 doesn't seem to be mutated. Here are the mutated foci.Position 12606716 doesn't seem to be mutated. Here are the mutated foci.Position 41740785 doesn't seem to be mutated. Here are the mutated foci.Position 40697378 doesn't seem to be mutated. Here are the mutated foci.Position 40697382 doesn't seem to be mutated. Here are the mutated foci.Position 50742336 doesn't seem to be mutated. Here are the mutated foci.Position 1182739 doesn't seem to be mutated. Here are the mutated foci.Position 4116843 doesn't seem to be mutated. Here are the mutated foci.Position 92840282 doesn't seem to be mutated. Here are the mutated foci.Position 193137344 doesn't seem to be mutated. Here are the mutated foci.Position 29512561 doesn't seem to be mutated. Here are the mutated foci.Position 47460843 doesn't seem to be mutated. Here are the mutated foci.Position 47614927 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 179148265 doesn't seem to be mutated. Here are the mutated foci.Position 142750886 doesn't seem to be mutated. Here are the mutated foci.Position 1992825 doesn't seem to be mutated. Here are the mutated foci.Position 86890110 doesn't seem to be mutated. Here are the mutated foci.Position 44185496 doesn't seem to be mutated. Here are the mutated foci.Position 48460832 doesn't seem to be mutated. Here are the mutated foci.Position 48731250 doesn't seem to be mutated. Here are the mutated foci.Position 4119901 doesn't seem to be mutated. Here are the mutated foci.Position 133553369 doesn't seem to be mutated. Here are the mutated foci.Position 138769380 doesn't seem to be mutated. Here are the mutated foci.Position 138938809 doesn't seem to be mutated. Here are the mutated foci.Position 140791048 doesn't seem to be mutated. Here are the mutated foci.Position 36929297 doesn't seem to be mutated. Here are the mutated foci.Position 132905767 doesn't seem to be mutated. Here are the mutated foci.Position 132914691 doesn't seem to be mutated. Here are the mutated foci.Position 11821126 doesn't seem to be mutated. Here are the mutated foci.Position 40713161 doesn't seem to be mutated. Here are the mutated foci.Position 43076884 doesn't seem to be mutated. Here are the mutated foci.Position 58891542 doesn't seem to be mutated. Here are the mutated foci.Position 35526949 doesn't seem to be mutated. Here are the mutated foci.Position 29604519 doesn't seem to be mutated. Here are the mutated foci.Position 14865440 doesn't seem to be mutated. Here are the mutated foci.Position 29367045 doesn't seem to be mutated. Here are the mutated foci.Position 29891384 doesn't seem to be mutated. Here are the mutated foci.Position 232044039 doesn't seem to be mutated. Here are the mutated foci.Position 232320169 doesn't seem to be mutated. Here are the mutated foci.Position 69739374 doesn't seem to be mutated. Here are the mutated foci.Position 179175135 doesn't seem to be mutated. Here are the mutated foci.Position 138666033 doesn't seem to be mutated. Here are the mutated foci.Position 157239177 doesn't seem to be mutated. Here are the mutated foci.Position 34428853 doesn't seem to be mutated. Here are the mutated foci.Position 42001757 doesn't seem to be mutated. Here are the mutated foci.Position 42154139 doesn't seem to be mutated. Here are the mutated foci.Position 96134794 doesn't seem to be mutated. Here are the mutated foci.Position 116765940 doesn't seem to be mutated. Here are the mutated foci.Position 117990891 doesn't seem to be mutated. Here are the mutated foci.Position 62067966 doesn't seem to be mutated. Here are the mutated foci.Position 70597740 doesn't seem to be mutated. Here are the mutated foci.Position 87878693 doesn't seem to be mutated. Here are the mutated foci.Position 48552673 doesn't seem to be mutated. Here are the mutated foci.Position 23120087 doesn't seem to be mutated. Here are the mutated foci.Position 50782526 doesn't seem to be mutated. Here are the mutated foci.Position 7674893 doesn't seem to be mutated. Here are the mutated foci.Position 34946133 doesn't seem to be mutated. Here are the mutated foci.Position 35038652 doesn't seem to be mutated. Here are the mutated foci.Position 35111898 doesn't seem to be mutated. Here are the mutated foci.Position 35922890 doesn't seem to be mutated. Here are the mutated foci.Position 77557646 doesn't seem to be mutated. Here are the mutated foci.Position 124356438 doesn't seem to be mutated. Here are the mutated foci.Position 10070567 doesn't seem to be mutated. Here are the mutated foci.Position 12612676 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 133545911 doesn't seem to be mutated. Here are the mutated foci.Position 10049516 doesn't seem to be mutated. Here are the mutated foci.Position 54690752 doesn't seem to be mutated. Here are the mutated foci.Position 116693683 doesn't seem to be mutated. Here are the mutated foci.Position 118031306 doesn't seem to be mutated. Here are the mutated foci.Position 2072334 doesn't seem to be mutated. Here are the mutated foci.Position 21975171 doesn't seem to be mutated. Here are the mutated foci.Position 37024513 doesn't seem to be mutated. Here are the mutated foci.Position 95459385 doesn't seem to be mutated. Here are the mutated foci.Position 102506386 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 121546182 doesn't seem to be mutated. Here are the mutated foci.Position 32388580 doesn't seem to be mutated. Here are the mutated foci.Position 112478409 doesn't seem to be mutated. Here are the mutated foci.Position 40694547 doesn't seem to be mutated. Here are the mutated foci.Position 231959243 doesn't seem to be mutated. Here are the mutated foci.Position 232288263 doesn't seem to be mutated. Here are the mutated foci.Position 122185937 doesn't seem to be mutated. Here are the mutated foci.Position 54299289 doesn't seem to be mutated. Here are the mutated foci.Position 80692212 doesn't seem to be mutated. Here are the mutated foci.Position 3758327 doesn't seem to be mutated. Here are the mutated foci.Position 133944086 doesn't seem to be mutated. Here are the mutated foci.Position 231960578 doesn't seem to be mutated. Here are the mutated foci.Position 54670947 doesn't seem to be mutated. Here are the mutated foci.Position 138829119 doesn't seem to be mutated. Here are the mutated foci.Position 42015605 doesn't seem to be mutated. Here are the mutated foci.Position 117992637 doesn't seem to be mutated. Here are the mutated foci.Position 99129548 doesn't seem to be mutated. Here are the mutated foci.Position 48398471 doesn't seem to be mutated. Here are the mutated foci.Position 45138644 doesn't seem to be mutated. Here are the mutated foci.Position 90727892 doesn't seem to be mutated. Here are the mutated foci.Position 10964333 doesn't seem to be mutated. Here are the mutated foci.Position 32401560 doesn't seem to be mutated. Here are the mutated foci.Position 29635819 doesn't seem to be mutated. Here are the mutated foci.Position 133713186 doesn't seem to be mutated. Here are the mutated foci.Position 147916647 doesn't seem to be mutated. Here are the mutated foci.Position 29625006 doesn't seem to be mutated. Here are the mutated foci.Position 29904072 doesn't seem to be mutated. Here are the mutated foci.Position 10148932 doesn't seem to be mutated. Here are the mutated foci.Position 69778213 doesn't seem to be mutated. Here are the mutated foci.Position 69846527 doesn't seem to be mutated. Here are the mutated foci.Position 69885673 doesn't seem to be mutated. Here are the mutated foci.Position 179231842 doesn't seem to be mutated. Here are the mutated foci.Position 1289732 doesn't seem to be mutated. Here are the mutated foci.Position 6004978 doesn't seem to be mutated. Here are the mutated foci.Position 148841182 doesn't seem to be mutated. Here are the mutated foci.Position 36832292 doesn't seem to be mutated. Here are the mutated foci.Position 95357331 doesn't seem to be mutated. Here are the mutated foci.Position 108873882 doesn't seem to be mutated. Here are the mutated foci.Position 89009797 doesn't seem to be mutated. Here are the mutated foci.Position 102601672 doesn't seem to be mutated. Here are the mutated foci.Position 121480798 doesn't seem to be mutated. Here are the mutated foci.Position 32339984 doesn't seem to be mutated. Here are the mutated foci.Position 48427171 doesn't seem to be mutated. Here are the mutated foci.Position 95124564 doesn't seem to be mutated. Here are the mutated foci.Position 104795872 doesn't seem to be mutated. Here are the mutated foci.Position 38281070 doesn't seem to be mutated. Here are the mutated foci.Position 38304931 doesn't seem to be mutated. Here are the mutated foci.Position 23622468 doesn't seem to be mutated. Here are the mutated foci.Position 50745869 doesn't seem to be mutated. Here are the mutated foci.Position 50763284 doesn't seem to be mutated. Here are the mutated foci.Position 7673802 doesn't seem to be mutated. Here are the mutated foci.Position 61727788 doesn't seem to be mutated. Here are the mutated foci.Position 61782517 doesn't seem to be mutated. Here are the mutated foci.Position 32388361 doesn't seem to be mutated. Here are the mutated foci.Position 29641208 doesn't seem to be mutated. Here are the mutated foci.Position 29702899 doesn't seem to be mutated. Here are the mutated foci.Position 133330138 doesn't seem to be mutated. Here are the mutated foci.Position 133575164 doesn't seem to be mutated. Here are the mutated foci.Position 154762968 doesn't seem to be mutated. Here are the mutated foci.Position 48575679 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 2065444 doesn't seem to be mutated. Here are the mutated foci.Position 87956588 doesn't seem to be mutated. Here are the mutated foci.Position 77644719 doesn't seem to be mutated. Here are the mutated foci.Position 77754163 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 214765752 doesn't seem to be mutated. Here are the mutated foci.Position 10022698 doesn't seem to be mutated. Here are the mutated foci.Position 1292338 doesn't seem to be mutated. Here are the mutated foci.Position 80688758 doesn't seem to be mutated. Here are the mutated foci.Position 132596097 doesn't seem to be mutated. Here are the mutated foci.Position 140753338 doesn't seem to be mutated. Here are the mutated foci.Position 31127585 doesn't seem to be mutated. Here are the mutated foci.Position 329074 doesn't seem to be mutated. Here are the mutated foci.Position 87914086 doesn't seem to be mutated. Here are the mutated foci.Position 58727562 doesn't seem to be mutated. Here are the mutated foci.Position 41988474 doesn't seem to be mutated. Here are the mutated foci.Position 112418520 doesn't seem to be mutated. Here are the mutated foci.Position 50131139 doesn't seem to be mutated. Here are the mutated foci.Position 33306978 doesn't seem to be mutated. Here are the mutated foci.Position 35099863 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 23808240 doesn't seem to be mutated. Here are the mutated foci.Position 14861852 doesn't seem to be mutated. Here are the mutated foci.Position 133731526 doesn't seem to be mutated. Here are the mutated foci.Position 133937569 doesn't seem to be mutated. Here are the mutated foci.Position 58212402 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 42218558 doesn't seem to be mutated. Here are the mutated foci.Position 121595429 doesn't seem to be mutated. Here are the mutated foci.Position 38352242 doesn't seem to be mutated. Here are the mutated foci.Position 35302295 doesn't seem to be mutated. Here are the mutated foci.Position 133936077 doesn't seem to be mutated. Here are the mutated foci.Position 147944813 doesn't seem to be mutated. Here are the mutated foci.Position 214778780 doesn't seem to be mutated. Here are the mutated foci.Position 177161374 doesn't seem to be mutated. Here are the mutated foci.Position 50392388 doesn't seem to be mutated. Here are the mutated foci.Position 121558741 doesn't seem to be mutated. Here are the mutated foci.Position 193200759 doesn't seem to be mutated. Here are the mutated foci.Position 144463167 doesn't seem to be mutated. Here are the mutated foci.Position 232213500 doesn't seem to be mutated. Here are the mutated foci.Position 179236062 doesn't seem to be mutated. Here are the mutated foci.Position 54693021 doesn't seem to be mutated. Here are the mutated foci.Position 138631512 doesn't seem to be mutated. Here are the mutated foci.Position 357452 doesn't seem to be mutated. Here are the mutated foci.Position 90714004 doesn't seem to be mutated. Here are the mutated foci.Position 50755065 doesn't seem to be mutated. Here are the mutated foci.Position 7674230 doesn't seem to be mutated. Here are the mutated foci.Position 7674894 doesn't seem to be mutated. Here are the mutated foci.Position 1214870 doesn't seem to be mutated. Here are the mutated foci.Position 34993839 doesn't seem to be mutated. Here are the mutated foci.Position 35738853 doesn't seem to be mutated. Here are the mutated foci.Position 133357398 doesn't seem to be mutated. Here are the mutated foci.Position 133669692 doesn't seem to be mutated. Here are the mutated foci.Position 133718758 doesn't seem to be mutated. Here are the mutated foci.Position 29621240 doesn't seem to be mutated. Here are the mutated foci.Position 29924544 doesn't seem to be mutated. Here are the mutated foci.Position 232048886 doesn't seem to be mutated. Here are the mutated foci.Position 179210283 doesn't seem to be mutated. Here are the mutated foci.Position 1248447 doesn't seem to be mutated. Here are the mutated foci.Position 80824731 doesn't seem to be mutated. Here are the mutated foci.Position 112847379 doesn't seem to be mutated. Here are the mutated foci.Position 41989508 doesn't seem to be mutated. Here are the mutated foci.Position 118063204 doesn't seem to be mutated. Here are the mutated foci.Position 32411626 doesn't seem to be mutated. Here are the mutated foci.Position 132644687 doesn't seem to be mutated. Here are the mutated foci.Position 3820827 doesn't seem to be mutated. Here are the mutated foci.Position 7674220 doesn't seem to be mutated. Here are the mutated foci.Position 35484026 doesn't seem to be mutated. Here are the mutated foci.Position 133562635 doesn't seem to be mutated. Here are the mutated foci.Position 52403763 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 48404984 doesn't seem to be mutated. Here are the mutated foci.Position 104795834 doesn't seem to be mutated. Here are the mutated foci.Position 66478402 doesn't seem to be mutated. Here are the mutated foci.Position 42351307 doesn't seem to be mutated. Here are the mutated foci.Position 58855378 doesn't seem to be mutated. Here are the mutated foci.Position 133406532 doesn't seem to be mutated. Here are the mutated foci.Position 193200759 doesn't seem to be mutated. Here are the mutated foci.Position 29202047 doesn't seem to be mutated. Here are the mutated foci.Position 29291201 doesn't seem to be mutated. Here are the mutated foci.Position 29848292 doesn't seem to be mutated. Here are the mutated foci.Position 80692175 doesn't seem to be mutated. Here are the mutated foci.Position 35467113 doesn't seem to be mutated. Here are the mutated foci.Position 2197222 doesn't seem to be mutated. Here are the mutated foci.Position 133303185 doesn't seem to be mutated. Here are the mutated foci.Position 29217050 doesn't seem to be mutated. Here are the mutated foci.Position 47411874 doesn't seem to be mutated. Here are the mutated foci.Position 179237616 doesn't seem to be mutated. Here are the mutated foci.Position 142755420 doesn't seem to be mutated. Here are the mutated foci.Position 7682350 doesn't seem to be mutated. Here are the mutated foci.Position 35097518 doesn't seem to be mutated. Here are the mutated foci.Position 48569394 doesn't seem to be mutated. Here are the mutated foci.Position 41966231 doesn't seem to be mutated. Here are the mutated foci.Position 144517372 doesn't seem to be mutated. Here are the mutated foci.Position 62095371 doesn't seem to be mutated. Here are the mutated foci.Position 108252857 doesn't seem to be mutated. Here are the mutated foci.Position 108364485 doesn't seem to be mutated. Here are the mutated foci.Position 50417579 doesn't seem to be mutated. Here are the mutated foci.Position 133936210 doesn't seem to be mutated. Here are the mutated foci.Position 47353180 doesn't seem to be mutated. Here are the mutated foci.Position 47752779 doesn't seem to be mutated. Here are the mutated foci.Position 96254034 doesn't seem to be mutated. Here are the mutated foci.Position 21974720 doesn't seem to be mutated. Here are the mutated foci.Position 112473683 doesn't seem to be mutated. Here are the mutated foci.Position 112473689 doesn't seem to be mutated. Here are the mutated foci.Position 50231457 doesn't seem to be mutated. Here are the mutated foci.Position 58861808 doesn't seem to be mutated. Here are the mutated foci.Position 35993666 doesn't seem to be mutated. Here are the mutated foci.Position 133832173 doesn't seem to be mutated. Here are the mutated foci.Position 10244864 doesn't seem to be mutated. Here are the mutated foci.Position 161322828 doesn't seem to be mutated. Here are the mutated foci.Position 12619821 doesn't seem to be mutated. Here are the mutated foci.Position 56953051 doesn't seem to be mutated. Here are the mutated foci.Position 96185848 doesn't seem to be mutated. Here are the mutated foci.Position 2103662 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 80766763 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 157231704 doesn't seem to be mutated. Here are the mutated foci.Position 177137787 doesn't seem to be mutated. Here are the mutated foci.Position 43588723 doesn't seem to be mutated. Here are the mutated foci.Position 119275602 doesn't seem to be mutated. Here are the mutated foci.Position 119275778 doesn't seem to be mutated. Here are the mutated foci.Position 11851455 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 96306545 doesn't seem to be mutated. Here are the mutated foci.Position 148867443 doesn't seem to be mutated. Here are the mutated foci.Position 44137599 doesn't seem to be mutated. Here are the mutated foci.Position 31099483 doesn't seem to be mutated. Here are the mutated foci.Position 31370005 doesn't seem to be mutated. Here are the mutated foci.Position 58891272 doesn't seem to be mutated. Here are the mutated foci.Position 28717520 doesn't seem to be mutated. Here are the mutated foci.Position 144430484 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 95520773 doesn't seem to be mutated. Here are the mutated foci.Position 42016704 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 38414805 doesn't seem to be mutated. Here are the mutated foci.Position 38416244 doesn't seem to be mutated. Here are the mutated foci.Position 35757467 doesn't seem to be mutated. Here are the mutated foci.Position 47441079 doesn't seem to be mutated. Here are the mutated foci.Position 69968352 doesn't seem to be mutated. Here are the mutated foci.Position 138894126 doesn't seem to be mutated. Here are the mutated foci.Position 118080424 doesn't seem to be mutated. Here are the mutated foci.Position 11768128 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 32358296 doesn't seem to be mutated. Here are the mutated foci.Position 59020390 doesn't seem to be mutated. Here are the mutated foci.Position 34930719 doesn't seem to be mutated. Here are the mutated foci.Position 41089571 doesn't seem to be mutated. Here are the mutated foci.Position 41089575 doesn't seem to be mutated. Here are the mutated foci.Position 41144898 doesn't seem to be mutated. Here are the mutated foci.Position 232011525 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 232176479 doesn't seem to be mutated. Here are the mutated foci.Position 138898158 doesn't seem to be mutated. Here are the mutated foci.Position 35457126 doesn't seem to be mutated. Here are the mutated foci.Position 31162879 doesn't seem to be mutated. Here are the mutated foci.Position 38434321 doesn't seem to be mutated. Here are the mutated foci.Position 400791 doesn't seem to be mutated. Here are the mutated foci.Position 2103662 doesn't seem to be mutated. Here are the mutated foci.Position 48301548 doesn't seem to be mutated. Here are the mutated foci.Position 90793013 doesn't seem to be mutated. Here are the mutated foci.Position 50746014 doesn't seem to be mutated. Here are the mutated foci.Position 35812867 doesn't seem to be mutated. Here are the mutated foci.Position 10350404 doesn't seem to be mutated. Here are the mutated foci.Position 29578713 doesn't seem to be mutated. Here are the mutated foci.Position 39067372 doesn't seem to be mutated. Here are the mutated foci.Position 896366 doesn't seem to be mutated. Here are the mutated foci.Position 37838758 doesn't seem to be mutated. Here are the mutated foci.Position 35453475 doesn't seem to be mutated. Here are the mutated foci.Position 2078472 doesn't seem to be mutated. Here are the mutated foci.Position 36930609 doesn't seem to be mutated. Here are the mutated foci.Position 95286139 doesn't seem to be mutated. Here are the mutated foci.Position 95496678 doesn't seem to be mutated. Here are the mutated foci.Position 108270646 doesn't seem to be mutated. Here are the mutated foci.Position 66478402 doesn't seem to be mutated. Here are the mutated foci.Position 51077165 doesn't seem to be mutated. Here are the mutated foci.Position 41855846 doesn't seem to be mutated. Here are the mutated foci.Position 32378971 doesn't seem to be mutated. Here are the mutated foci.Position 32409752 doesn't seem to be mutated. Here are the mutated foci.Position 34930271 doesn't seem to be mutated. Here are the mutated foci.Position 35870213 doesn't seem to be mutated. Here are the mutated foci.Position 77574891 doesn't seem to be mutated. Here are the mutated foci.Position 77596836 doesn't seem to be mutated. Here are the mutated foci.Position 77681100 doesn't seem to be mutated. Here are the mutated foci.Position 161313695 doesn't seem to be mutated. Here are the mutated foci.Position 29720503 doesn't seem to be mutated. Here are the mutated foci.Position 29883068 doesn't seem to be mutated. Here are the mutated foci.Position 47788400 doesn't seem to be mutated. Here are the mutated foci.Position 58245057 doesn't seem to be mutated. Here are the mutated foci.Position 1254331 doesn't seem to be mutated. Here are the mutated foci.Position 1293452 doesn't seem to be mutated. Here are the mutated foci.Position 138717914 doesn't seem to be mutated. Here are the mutated foci.Position 178157090 doesn't seem to be mutated. Here are the mutated foci.Position 41971782 doesn't seem to be mutated. Here are the mutated foci.Position 41986428 doesn't seem to be mutated. Here are the mutated foci.Position 42025251 doesn't seem to be mutated. Here are the mutated foci.Position 42039832 doesn't seem to be mutated. Here are the mutated foci.Position 93118145 doesn't seem to be mutated. Here are the mutated foci.Position 96157773 doesn't seem to be mutated. Here are the mutated foci.Position 96157778 doesn't seem to be mutated. Here are the mutated foci.Position 96206048 doesn't seem to be mutated. Here are the mutated foci.Position 96292307 doesn't seem to be mutated. Here are the mutated foci.Position 142747726 doesn't seem to be mutated. Here are the mutated foci.Position 148856487 doesn't seem to be mutated. Here are the mutated foci.Position 117920949 doesn't seem to be mutated. Here are the mutated foci.Position 246843 doesn't seem to be mutated. Here are the mutated foci.Position 282920 doesn't seem to be mutated. Here are the mutated foci.Position 95277071 doesn't seem to be mutated. Here are the mutated foci.Position 95426480 doesn't seem to be mutated. Here are the mutated foci.Position 132925938 doesn't seem to be mutated. Here are the mutated foci.Position 87945979 doesn't seem to be mutated. Here are the mutated foci.Position 102638057 doesn't seem to be mutated. Here are the mutated foci.Position 32418244 doesn't seem to be mutated. Here are the mutated foci.Position 119282338 doesn't seem to be mutated. Here are the mutated foci.Position 132630178 doesn't seem to be mutated. Here are the mutated foci.Position 95084091 doesn't seem to be mutated. Here are the mutated foci.Position 32739953 doesn't seem to be mutated. Here are the mutated foci.Position 7664385 doesn't seem to be mutated. Here are the mutated foci.Position 10961512 doesn't seem to be mutated. Here are the mutated foci.Position 50414890 doesn't seem to be mutated. Here are the mutated foci.Position 32430103 doesn't seem to be mutated. Here are the mutated foci.Position 32431466 doesn't seem to be mutated. Here are the mutated foci.Position 35210805 doesn't seem to be mutated. Here are the mutated foci.Position 35386431 doesn't seem to be mutated. Here are the mutated foci.Position 35398776 doesn't seem to be mutated. Here are the mutated foci.Position 29653043 doesn't seem to be mutated. Here are the mutated foci.Position 37983579 doesn't seem to be mutated. Here are the mutated foci.Position 77513516 doesn't seem to be mutated. Here are the mutated foci.Position 92829651 doesn't seem to be mutated. Here are the mutated foci.Position 29447353 doesn't seem to be mutated. Here are the mutated foci.Position 29870047 doesn't seem to be mutated. Here are the mutated foci.Position 144484453 doesn't seem to be mutated. Here are the mutated foci.Position 54676512 doesn't seem to be mutated. Here are the mutated foci.Position 177173732 doesn't seem to be mutated. Here are the mutated foci.Position 55110161 doesn't seem to be mutated. Here are the mutated foci.Position 118111962 doesn't seem to be mutated. Here are the mutated foci.Position 36894565 doesn't seem to be mutated. Here are the mutated foci.Position 61992045 doesn't seem to be mutated. Here are the mutated foci.Position 89020323 doesn't seem to be mutated. Here are the mutated foci.Position 104781468 doesn't seem to be mutated. Here are the mutated foci.Position 89260017 doesn't seem to be mutated. Here are the mutated foci.Position 31336605 doesn't seem to be mutated. Here are the mutated foci.Position 34930271 doesn't seem to be mutated. Here are the mutated foci.Position 77648166 doesn't seem to be mutated. Here are the mutated foci.Position 133336450 doesn't seem to be mutated. Here are the mutated foci.Position 133741282 doesn't seem to be mutated. Here are the mutated foci.Position 29355492 doesn't seem to be mutated. Here are the mutated foci.Position 69798227 doesn't seem to be mutated. Here are the mutated foci.Position 247989 doesn't seem to be mutated. Here are the mutated foci.Position 96185848 doesn't seem to be mutated. Here are the mutated foci.Position 140798262 doesn't seem to be mutated. Here are the mutated foci.Position 2182996 doesn't seem to be mutated. Here are the mutated foci.Position 47211335 doesn't seem to be mutated. Here are the mutated foci.Position 112474959 doesn't seem to be mutated. Here are the mutated foci.Position 59051350 doesn't seem to be mutated. Here are the mutated foci.Position 77532275 doesn't seem to be mutated. Here are the mutated foci.Position 77750521 doesn't seem to be mutated. Here are the mutated foci.Position 38991224 doesn't seem to be mutated. Here are the mutated foci.Position 177259453 doesn't seem to be mutated. Here are the mutated foci.Position 11878825 doesn't seem to be mutated. Here are the mutated foci.Position 2070969 doesn't seem to be mutated. Here are the mutated foci.Position 45362455 doesn't seem to be mutated. Here are the mutated foci.Position 133633882 doesn't seem to be mutated. Here are the mutated foci.Position 17036808 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 179234297 doesn't seem to be mutated. Here are the mutated foci.Position 38417331 doesn't seem to be mutated. Here are the mutated foci.Position 38421883 doesn't seem to be mutated. Here are the mutated foci.Position 61779751 doesn't seem to be mutated. Here are the mutated foci.Position 133804480 doesn't seem to be mutated. Here are the mutated foci.Position 29193227 doesn't seem to be mutated. Here are the mutated foci.Position 29314597 doesn't seem to be mutated. Here are the mutated foci.Position 29745858 doesn't seem to be mutated. Here are the mutated foci.Position 47409597 doesn't seem to be mutated. Here are the mutated foci.Position 47444293 doesn't seem to be mutated. Here are the mutated foci.Position 47746015 doesn't seem to be mutated. Here are the mutated foci.Position 168950812 doesn't seem to be mutated. Here are the mutated foci.Position 232054878 doesn't seem to be mutated. Here are the mutated foci.Position 12634802 doesn't seem to be mutated. Here are the mutated foci.Position 54241777 doesn't seem to be mutated. Here are the mutated foci.Position 177170082 doesn't seem to be mutated. Here are the mutated foci.Position 31125217 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 118057566 doesn't seem to be mutated. Here are the mutated foci.Position 118057647 doesn't seem to be mutated. Here are the mutated foci.Position 2180413 doesn't seem to be mutated. Here are the mutated foci.Position 2184415 doesn't seem to be mutated. Here are the mutated foci.Position 88989363 doesn't seem to be mutated. Here are the mutated foci.Position 22617850 doesn't seem to be mutated. Here are the mutated foci.Position 32382654 doesn't seem to be mutated. Here are the mutated foci.Position 32735213 doesn't seem to be mutated. Here are the mutated foci.Position 38356814 doesn't seem to be mutated. Here are the mutated foci.Position 90734613 doesn't seem to be mutated. Here are the mutated foci.Position 50415946 doesn't seem to be mutated. Here are the mutated foci.Position 50415953 doesn't seem to be mutated. Here are the mutated foci.Position 35404355 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 161341261 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 55131939 doesn't seem to be mutated. Here are the mutated foci.Position 2133224 doesn't seem to be mutated. Here are the mutated foci.Position 102563771 doesn't seem to be mutated. Here are the mutated foci.Position 32327632 doesn't seem to be mutated. Here are the mutated foci.Position 45166132 doesn't seem to be mutated. Here are the mutated foci.Position 65071146 doesn't seem to be mutated. Here are the mutated foci.Position 31172352 doesn't seem to be mutated. Here are the mutated foci.Position 40626865 doesn't seem to be mutated. Here are the mutated foci.Position 29500563 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 140919063 doesn't seem to be mutated. Here are the mutated foci.Position 61920500 doesn't seem to be mutated. Here are the mutated foci.Position 50183387 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 20192686 doesn't seem to be mutated. Here are the mutated foci.Position 35768240 doesn't seem to be mutated. Here are the mutated foci.Position 193200759 doesn't seem to be mutated. Here are the mutated foci.Position 69953660 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 104727618 doesn't seem to be mutated. Here are the mutated foci.Position 104761697 doesn't seem to be mutated. Here are the mutated foci.Position 112489084 doesn't seem to be mutated. Here are the mutated foci.Position 132669678 doesn't seem to be mutated. Here are the mutated foci.Position 32747680 doesn't seem to be mutated. Here are the mutated foci.Position 31201036 doesn't seem to be mutated. Here are the mutated foci.Position 31327839 doesn't seem to be mutated. Here are the mutated foci.Position 133317483 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 140771709 doesn't seem to be mutated. Here are the mutated foci.Position 140771862 doesn't seem to be mutated. Here are the mutated foci.Position 117838777 doesn't seem to be mutated. Here are the mutated foci.Position 36869872 doesn't seem to be mutated. Here are the mutated foci.Position 112097481 doesn't seem to be mutated. Here are the mutated foci.Position 29371857 doesn't seem to be mutated. Here are the mutated foci.Position 39120276 doesn't seem to be mutated. Here are the mutated foci.Position 127277689 doesn't seem to be mutated. Here are the mutated foci.Position 110953236 doesn't seem to be mutated. Here are the mutated foci.Position 44096330 doesn't seem to be mutated. Here are the mutated foci.Position 48555834 doesn't seem to be mutated. Here are the mutated foci.Position 3611585 doesn't seem to be mutated. Here are the mutated foci.Position 3742160 doesn't seem to be mutated. Here are the mutated foci.Position 34979331 doesn't seem to be mutated. Here are the mutated foci.Position 28687658 doesn't seem to be mutated. Here are the mutated foci.Position 28687677 doesn't seem to be mutated. Here are the mutated foci.Position 37986123 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 133804480 doesn't seem to be mutated. Here are the mutated foci.Position 154763031 doesn't seem to be mutated. Here are the mutated foci.Position 3579852 doesn't seem to be mutated. Here are the mutated foci.Position 29317359 doesn't seem to be mutated. Here are the mutated foci.Position 29381293 doesn't seem to be mutated. Here are the mutated foci.Position 29440721 doesn't seem to be mutated. Here are the mutated foci.Position 29625066 doesn't seem to be mutated. Here are the mutated foci.Position 29785694 doesn't seem to be mutated. Here are the mutated foci.Position 47464110 doesn't seem to be mutated. Here are the mutated foci.Position 47465451 doesn't seem to be mutated. Here are the mutated foci.Position 47640053 doesn't seem to be mutated. Here are the mutated foci.Position 58213951 doesn't seem to be mutated. Here are the mutated foci.Position 58244843 doesn't seem to be mutated. Here are the mutated foci.Position 96256555 doesn't seem to be mutated. Here are the mutated foci.Position 144521281 doesn't seem to be mutated. Here are the mutated foci.Position 232094431 doesn't seem to be mutated. Here are the mutated foci.Position 232321738 doesn't seem to be mutated. Here are the mutated foci.Position 69748259 doesn't seem to be mutated. Here are the mutated foci.Position 122264945 doesn't seem to be mutated. Here are the mutated foci.Position 158578890 doesn't seem to be mutated. Here are the mutated foci.Position 54735744 doesn't seem to be mutated. Here are the mutated foci.Position 56938450 doesn't seem to be mutated. Here are the mutated foci.Position 112739330 doesn't seem to be mutated. Here are the mutated foci.Position 132630694 doesn't seem to be mutated. Here are the mutated foci.Position 138609327 doesn't seem to be mutated. Here are the mutated foci.Position 138658748 doesn't seem to be mutated. Here are the mutated foci.Position 157188726 doesn't seem to be mutated. Here are the mutated foci.Position 177221266 doesn't seem to be mutated. Here are the mutated foci.Position 104854592 doesn't seem to be mutated. Here are the mutated foci.Position 5981544 doesn't seem to be mutated. Here are the mutated foci.Position 41959656 doesn't seem to be mutated. Here are the mutated foci.Position 41995307 doesn't seem to be mutated. Here are the mutated foci.Position 42078359 doesn't seem to be mutated. Here are the mutated foci.Position 50359802 doesn't seem to be mutated. Here are the mutated foci.Position 50397361 doesn't seem to be mutated. Here are the mutated foci.Position 55018980 doesn't seem to be mutated. Here are the mutated foci.Position 55179640 doesn't seem to be mutated. Here are the mutated foci.Position 96204963 doesn't seem to be mutated. Here are the mutated foci.Position 116725465 doesn't seem to be mutated. Here are the mutated foci.Position 117814988 doesn't seem to be mutated. Here are the mutated foci.Position 117871098 doesn't seem to be mutated. Here are the mutated foci.Position 366270 doesn't seem to be mutated. Here are the mutated foci.Position 401541 doesn't seem to be mutated. Here are the mutated foci.Position 36973011 doesn't seem to be mutated. Here are the mutated foci.Position 36995970 doesn't seem to be mutated. Here are the mutated foci.Position 95289853 doesn't seem to be mutated. Here are the mutated foci.Position 97697168 doesn't seem to be mutated. Here are the mutated foci.Position 43105059 doesn't seem to be mutated. Here are the mutated foci.Position 62039485 doesn't seem to be mutated. Here are the mutated foci.Position 70607148 doesn't seem to be mutated. Here are the mutated foci.Position 86835586 doesn't seem to be mutated. Here are the mutated foci.Position 87951736 doesn't seem to be mutated. Here are the mutated foci.Position 102534747 doesn't seem to be mutated. Here are the mutated foci.Position 32404044 doesn't seem to be mutated. Here are the mutated foci.Position 25227341 doesn't seem to be mutated. Here are the mutated foci.Position 111429633 doesn't seem to be mutated. Here are the mutated foci.Position 112506550 doesn't seem to be mutated. Here are the mutated foci.Position 132680998 doesn't seem to be mutated. Here are the mutated foci.Position 132683738 doesn't seem to be mutated. Here are the mutated foci.Position 48554465 doesn't seem to be mutated. Here are the mutated foci.Position 77921096 doesn't seem to be mutated. Here are the mutated foci.Position 102843978 doesn't seem to be mutated. Here are the mutated foci.Position 36523703 doesn't seem to be mutated. Here are the mutated foci.Position 50225192 doesn't seem to be mutated. Here are the mutated foci.Position 94382816 doesn't seem to be mutated. Here are the mutated foci.Position 95094139 doesn't seem to be mutated. Here are the mutated foci.Position 95107762 doesn't seem to be mutated. Here are the mutated foci.Position 38319537 doesn't seem to be mutated. Here are the mutated foci.Position 40707090 doesn't seem to be mutated. Here are the mutated foci.Position 89246861 doesn't seem to be mutated. Here are the mutated foci.Position 89772566 doesn't seem to be mutated. Here are the mutated foci.Position 7675124 doesn't seem to be mutated. Here are the mutated foci.Position 31115358 doesn't seem to be mutated. Here are the mutated foci.Position 31135562 doesn't seem to be mutated. Here are the mutated foci.Position 31137610 doesn't seem to be mutated. Here are the mutated foci.Position 59069429 doesn't seem to be mutated. Here are the mutated foci.Position 65538787 doesn't seem to be mutated. Here are the mutated foci.Position 4103415 doesn't seem to be mutated. Here are the mutated foci.Position 10971486 doesn't seem to be mutated. Here are the mutated foci.Position 58858896 doesn't seem to be mutated. Here are the mutated foci.Position 58859893 doesn't seem to be mutated. Here are the mutated foci.Position 34963228 doesn't seem to be mutated. Here are the mutated foci.Position 34984699 doesn't seem to be mutated. Here are the mutated foci.Position 34992424 doesn't seem to be mutated. Here are the mutated foci.Position 35017035 doesn't seem to be mutated. Here are the mutated foci.Position 35046469 doesn't seem to be mutated. Here are the mutated foci.Position 35245912 doesn't seem to be mutated. Here are the mutated foci.Position 35303637 doesn't seem to be mutated. Here are the mutated foci.Position 35521557 doesn't seem to be mutated. Here are the mutated foci.Position 35634465 doesn't seem to be mutated. Here are the mutated foci.Position 35646071 doesn't seem to be mutated. Here are the mutated foci.Position 35649672 doesn't seem to be mutated. Here are the mutated foci.Position 35815809 doesn't seem to be mutated. Here are the mutated foci.Position 35895976 doesn't seem to be mutated. Here are the mutated foci.Position 35979430 doesn't seem to be mutated. Here are the mutated foci.Position 35979463 doesn't seem to be mutated. Here are the mutated foci.Position 20982339 doesn't seem to be mutated. Here are the mutated foci.Position 29622946 doesn't seem to be mutated. Here are the mutated foci.Position 29647989 doesn't seem to be mutated. Here are the mutated foci.Position 48678820 doesn't seem to be mutated. Here are the mutated foci.Position 48678821 doesn't seem to be mutated. Here are the mutated foci.Position 77535725 doesn't seem to be mutated. Here are the mutated foci.Position 77732039 doesn't seem to be mutated. Here are the mutated foci.Position 133719402 doesn't seem to be mutated. Here are the mutated foci.Position 10333418 doesn't seem to be mutated. Here are the mutated foci.Position 29267082 doesn't seem to be mutated. Here are the mutated foci.Position 29540592 doesn't seem to be mutated. Here are the mutated foci.Position 47758516 doesn't seem to be mutated. Here are the mutated foci.Position 47791854 doesn't seem to be mutated. Here are the mutated foci.Position 127265616 doesn't seem to be mutated. Here are the mutated foci.Position 232136606 doesn't seem to be mutated. Here are the mutated foci.Position 10086495 doesn't seem to be mutated. Here are the mutated foci.Position 177159172 doesn't seem to be mutated. Here are the mutated foci.Position 55166641 doesn't seem to be mutated. Here are the mutated foci.Position 95118216 doesn't seem to be mutated. Here are the mutated foci.Position 108354084 doesn't seem to be mutated. Here are the mutated foci.Position 38302408 doesn't seem to be mutated. Here are the mutated foci.Position 7681502 doesn't seem to be mutated. Here are the mutated foci.Position 10982367 doesn't seem to be mutated. Here are the mutated foci.Position 41089906 doesn't seem to be mutated. Here are the mutated foci.Position 138753655 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 132644687 doesn't seem to be mutated. Here are the mutated foci.Position 40179153 doesn't seem to be mutated. Here are the mutated foci.Position 29616935 doesn't seem to be mutated. Here are the mutated foci.Position 77704898 doesn't seem to be mutated. Here are the mutated foci.Position 92836011 doesn't seem to be mutated. Here are the mutated foci.Position 54664754 doesn't seem to be mutated. Here are the mutated foci.Position 41968289 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 34930714 doesn't seem to be mutated. Here are the mutated foci.Position 80880736 doesn't seem to be mutated. Here are the mutated foci.Position 116768027 doesn't seem to be mutated. Here are the mutated foci.Position 31172344 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 29621742 doesn't seem to be mutated. Here are the mutated foci.Position 29687208 doesn't seem to be mutated. Here are the mutated foci.Position 232208307 doesn't seem to be mutated. Here are the mutated foci.Position 42002078 doesn't seem to be mutated. Here are the mutated foci.Position 116801987 doesn't seem to be mutated. Here are the mutated foci.Position 61925447 doesn't seem to be mutated. Here are the mutated foci.Position 78036309 doesn't seem to be mutated. Here are the mutated foci.Position 132664514 doesn't seem to be mutated. Here are the mutated foci.Position 14841965 doesn't seem to be mutated. Here are the mutated foci.Position 47782932 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 138753738 doesn't seem to be mutated. Here are the mutated foci.Position 42230099 doesn't seem to be mutated. Here are the mutated foci.Position 50304533 doesn't seem to be mutated. Here are the mutated foci.Position 36837093 doesn't seem to be mutated. Here are the mutated foci.Position 25250549 doesn't seem to be mutated. Here are the mutated foci.Position 48327976 doesn't seem to be mutated. Here are the mutated foci.Position 65560952 doesn't seem to be mutated. Here are the mutated foci.Position 35362397 doesn't seem to be mutated. Here are the mutated foci.Position 133567493 doesn't seem to be mutated. Here are the mutated foci.Position 193155559 doesn't seem to be mutated. Here are the mutated foci.Position 47371256 doesn't seem to be mutated. Here are the mutated foci.Position 214765752 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 232196646 doesn't seem to be mutated. Here are the mutated foci.Position 138810532 doesn't seem to be mutated. Here are the mutated foci.Position 95335030 doesn't seem to be mutated. Here are the mutated foci.Position 86775665 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 94384734 doesn't seem to be mutated. Here are the mutated foci.Position 35008123 doesn't seem to be mutated. Here are the mutated foci.Position 28691053 doesn't seem to be mutated. Here are the mutated foci.Position 29684218 doesn't seem to be mutated. Here are the mutated foci.Position 77543957 doesn't seem to be mutated. Here are the mutated foci.Position 133715978 doesn't seem to be mutated. Here are the mutated foci.Position 29223248 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 47624092 doesn't seem to be mutated. Here are the mutated foci.Position 231974456 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 443371 doesn't seem to be mutated. Here are the mutated foci.Position 82535778 doesn't seem to be mutated. Here are the mutated foci.Position 43056702 doesn't seem to be mutated. Here are the mutated foci.Position 61846392 doesn't seem to be mutated. Here are the mutated foci.Position 17057998 doesn't seem to be mutated. Here are the mutated foci.Position 144411939 doesn't seem to be mutated. Here are the mutated foci.Position 140778932 doesn't seem to be mutated. Here are the mutated foci.Position 117997245 doesn't seem to be mutated. Here are the mutated foci.Position 121557681 doesn't seem to be mutated. Here are the mutated foci.Position 119240298 doesn't seem to be mutated. Here are the mutated foci.Position 32361393 doesn't seem to be mutated. Here are the mutated foci.Position 133360534 doesn't seem to be mutated. Here are the mutated foci.Position 133623354 doesn't seem to be mutated. Here are the mutated foci.Position 138717672 doesn't seem to be mutated. Here are the mutated foci.Position 398803 doesn't seem to be mutated. Here are the mutated foci.Position 133960697 doesn't seem to be mutated. Here are the mutated foci.Position 147939254 doesn't seem to be mutated. Here are the mutated foci.Position 29654854 doesn't seem to be mutated. Here are the mutated foci.Position 231969891 doesn't seem to be mutated. Here are the mutated foci.Position 915283 doesn't seem to be mutated. Here are the mutated foci.Position 177252795 doesn't seem to be mutated. Here are the mutated foci.Position 41968600 doesn't seem to be mutated. Here are the mutated foci.Position 42124777 doesn't seem to be mutated. Here are the mutated foci.Position 42166758 doesn't seem to be mutated. Here are the mutated foci.Position 116747641 doesn't seem to be mutated. Here are the mutated foci.Position 117937074 doesn't seem to be mutated. Here are the mutated foci.Position 326556 doesn't seem to be mutated. Here are the mutated foci.Position 95444425 doesn't seem to be mutated. Here are the mutated foci.Position 86875808 doesn't seem to be mutated. Here are the mutated foci.Position 108366678 doesn't seem to be mutated. Here are the mutated foci.Position 11734517 doesn't seem to be mutated. Here are the mutated foci.Position 48440308 doesn't seem to be mutated. Here are the mutated foci.Position 80158391 doesn't seem to be mutated. Here are the mutated foci.Position 23608802 doesn't seem to be mutated. Here are the mutated foci.Position 61855714 doesn't seem to be mutated. Here are the mutated foci.Position 35022952 doesn't seem to be mutated. Here are the mutated foci.Position 35389570 doesn't seem to be mutated. Here are the mutated foci.Position 77647502 doesn't seem to be mutated. Here are the mutated foci.Position 77647508 doesn't seem to be mutated. Here are the mutated foci.Position 133537104 doesn't seem to be mutated. Here are the mutated foci.Position 147937506 doesn't seem to be mutated. Here are the mutated foci.Position 156863413 doesn't seem to be mutated. Here are the mutated foci.Position 50755145 doesn't seem to be mutated. Here are the mutated foci.Position 241520331 doesn't seem to be mutated. Here are the mutated foci.Position 29197801 doesn't seem to be mutated. Here are the mutated foci.Position 47783365 doesn't seem to be mutated. Here are the mutated foci.Position 214753262 doesn't seem to be mutated. Here are the mutated foci.Position 231984572 doesn't seem to be mutated. Here are the mutated foci.Position 122201578 doesn't seem to be mutated. Here are the mutated foci.Position 1257401 doesn't seem to be mutated. Here are the mutated foci.Position 157223788 doesn't seem to be mutated. Here are the mutated foci.Position 42043741 doesn't seem to be mutated. Here are the mutated foci.Position 256661 doesn't seem to be mutated. Here are the mutated foci.Position 277367 doesn't seem to be mutated. Here are the mutated foci.Position 36916099 doesn't seem to be mutated. Here are the mutated foci.Position 37029875 doesn't seem to be mutated. Here are the mutated foci.Position 87922862 doesn't seem to be mutated. Here are the mutated foci.Position 87923869 doesn't seem to be mutated. Here are the mutated foci.Position 87932345 doesn't seem to be mutated. Here are the mutated foci.Position 102632047 doesn't seem to be mutated. Here are the mutated foci.Position 11893270 doesn't seem to be mutated. Here are the mutated foci.Position 11894686 doesn't seem to be mutated. Here are the mutated foci.Position 7675095 doesn't seem to be mutated. Here are the mutated foci.Position 31235639 doesn't seem to be mutated. Here are the mutated foci.Position 59088899 doesn't seem to be mutated. Here are the mutated foci.Position 61684027 doesn't seem to be mutated. Here are the mutated foci.Position 34899401 doesn't seem to be mutated. Here are the mutated foci.Position 35120977 doesn't seem to be mutated. Here are the mutated foci.Position 35178429 doesn't seem to be mutated. Here are the mutated foci.Position 77618072 doesn't seem to be mutated. Here are the mutated foci.Position 77644719 doesn't seem to be mutated. Here are the mutated foci.Position 158588493 doesn't seem to be mutated. Here are the mutated foci.Position 179199150 doesn't seem to be mutated. Here are the mutated foci.Position 42153556 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 215791 doesn't seem to be mutated. Here are the mutated foci.Position 1992460 doesn't seem to be mutated. Here are the mutated foci.Position 2171247 doesn't seem to be mutated. Here are the mutated foci.Position 95320248 doesn't seem to be mutated. Here are the mutated foci.Position 86775665 doesn't seem to be mutated. Here are the mutated foci.Position 2884848 doesn't seem to be mutated. Here are the mutated foci.Position 31137793 doesn't seem to be mutated. Here are the mutated foci.Position 65523736 doesn't seem to be mutated. Here are the mutated foci.Position 50389987 doesn't seem to be mutated. Here are the mutated foci.Position 133920004 doesn't seem to be mutated. Here are the mutated foci.Position 29715970 doesn't seem to be mutated. Here are the mutated foci.Position 26101670 doesn't seem to be mutated. Here are the mutated foci.Position 42055115 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 193162206 doesn't seem to be mutated. Here are the mutated foci.Position 39113037 doesn't seem to be mutated. Here are the mutated foci.Position 80865662 doesn't seem to be mutated. Here are the mutated foci.Position 157184875 doesn't seem to be mutated. Here are the mutated foci.Position 142753625 doesn't seem to be mutated. Here are the mutated foci.Position 21815449 doesn't seem to be mutated. Here are the mutated foci.Position 21815490 doesn't seem to be mutated. Here are the mutated foci.Position 21815935 doesn't seem to be mutated. Here are the mutated foci.Position 108326230 doesn't seem to be mutated. Here are the mutated foci.Position 31201161 doesn't seem to be mutated. Here are the mutated foci.Position 65523736 doesn't seem to be mutated. Here are the mutated foci.Position 28687677 doesn't seem to be mutated. Here are the mutated foci.Position 133617699 doesn't seem to be mutated. Here are the mutated foci.Position 179239321 doesn't seem to be mutated. Here are the mutated foci.Position 31164745 doesn't seem to be mutated. Here are the mutated foci.Position 37003678 doesn't seem to be mutated. Here are the mutated foci.Position 108356918 doesn't seem to be mutated. Here are the mutated foci.Position 40718516 doesn't seem to be mutated. Here are the mutated foci.Position 66478458 doesn't seem to be mutated. Here are the mutated foci.Position 7674238 doesn't seem to be mutated. Here are the mutated foci.Position 17223100 doesn't seem to be mutated. Here are the mutated foci.Position 59032708 doesn't seem to be mutated. Here are the mutated foci.Position 29630381 doesn't seem to be mutated. Here are the mutated foci.Position 77620443 doesn't seem to be mutated. Here are the mutated foci.Position 133371794 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.Position 122254125 doesn't seem to be mutated. Here are the mutated foci.Position 104809871 doesn't seem to be mutated. Here are the mutated foci.Position 140756577 doesn't seem to be mutated. Here are the mutated foci.Position 102591627 doesn't seem to be mutated. Here are the mutated foci.Position 59020390 doesn't seem to be mutated. Here are the mutated foci.Position 41130808 doesn't seem to be mutated. Here are the mutated foci.Position 77545514 doesn't seem to be mutated. Here are the mutated foci.Position 121563382 doesn't seem to be mutated. Here are the mutated foci.Position 59059612 doesn't seem to be mutated. Here are the mutated foci.Position 29696925 doesn't seem to be mutated. Here are the mutated foci.Position 132610028 doesn't seem to be mutated. Here are the mutated foci.Position 42218558 doesn't seem to be mutated. Here are the mutated foci.Position 119228814 doesn't seem to be mutated. Here are the mutated foci.Position 133862077 doesn't seem to be mutated. Here are the mutated foci.Position 29445032 doesn't seem to be mutated. Here are the mutated foci.Position 29503915 doesn't seem to be mutated. Here are the mutated foci.Position 56949760 doesn't seem to be mutated. Here are the mutated foci.Position 96264715 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 118085724 doesn't seem to be mutated. Here are the mutated foci.Position 2083861 doesn't seem to be mutated. Here are the mutated foci.Position 36973705 doesn't seem to be mutated. Here are the mutated foci.Position 34993601 doesn't seem to be mutated. Here are the mutated foci.Position 34993622 doesn't seem to be mutated. Here are the mutated foci.Position 35526949 doesn't seem to be mutated. Here are the mutated foci.Position 47486707 doesn't seem to be mutated. Here are the mutated foci.Position 69778801 doesn't seem to be mutated. Here are the mutated foci.Position 179203767 doesn't seem to be mutated. Here are the mutated foci.Position 177295541 doesn't seem to be mutated. Here are the mutated foci.Position 104802600 doesn't seem to be mutated. Here are the mutated foci.Position 140748335 doesn't seem to be mutated. Here are the mutated foci.Position 118096648 doesn't seem to be mutated. Here are the mutated foci.Position 335438 doesn't seem to be mutated. Here are the mutated foci.Position 95496550 doesn't seem to be mutated. Here are the mutated foci.Position 113578078 doesn't seem to be mutated. Here are the mutated foci.Position 11875046 doesn't seem to be mutated. Here are the mutated foci.Position 133354540 doesn't seem to be mutated. Here are the mutated foci.Position 133546398 doesn't seem to be mutated. Here are the mutated foci.Position 133873034 doesn't seem to be mutated. Here are the mutated foci.Position 96323450 doesn't seem to be mutated. Here are the mutated foci.Position 124907289 doesn't seem to be mutated. Here are the mutated foci.Position 11040256 doesn't seem to be mutated. Here are the mutated foci.Position 34930714 doesn't seem to be mutated. Here are the mutated foci.Position 35388660 doesn't seem to be mutated. Here are the mutated foci.Position 193121804 doesn't seem to be mutated. Here are the mutated foci.Position 214809544 doesn't seem to be mutated. Here are the mutated foci.Position 122184543 doesn't seem to be mutated. Here are the mutated foci.Position 54670775 doesn't seem to be mutated. Here are the mutated foci.Position 42237119 doesn't seem to be mutated. Here are the mutated foci.Position 38468289 doesn't seem to be mutated. Here are the mutated foci.Position 44096239 doesn't seem to be mutated. Here are the mutated foci.Position 11744920 doesn't seem to be mutated. Here are the mutated foci.Position 25227343 doesn't seem to be mutated. Here are the mutated foci.Position 132644687 doesn't seem to be mutated. Here are the mutated foci.Position 20192686 doesn't seem to be mutated. Here are the mutated foci.Position 40691368 doesn't seem to be mutated. Here are the mutated foci.Position 39197783 doesn't seem to be mutated. Here are the mutated foci.Position 41855847 doesn't seem to be mutated. Here are the mutated foci.Position 133840591 doesn't seem to be mutated. Here are the mutated foci.Position 99112924 doesn't seem to be mutated. Here are the mutated foci.Position 104780214 doesn't seem to be mutated. Here are the mutated foci.Position 58994211 doesn't seem to be mutated. Here are the mutated foci.Position 35705609 doesn't seem to be mutated. Here are the mutated foci.Position 133352295 doesn't seem to be mutated. Here are the mutated foci.Position 133808747 doesn't seem to be mutated. Here are the mutated foci.Position 95139834 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 86806960 doesn't seem to be mutated. Here are the mutated foci.Position 86834868 doesn't seem to be mutated. Here are the mutated foci.Position 7678459 doesn't seem to be mutated. Here are the mutated foci.Position 31137719 doesn't seem to be mutated. Here are the mutated foci.Position 35611243 doesn't seem to be mutated. Here are the mutated foci.Position 133555985 doesn't seem to be mutated. Here are the mutated foci.Position 14144576 doesn't seem to be mutated. Here are the mutated foci.Position 42357441 doesn't seem to be mutated. Here are the mutated foci.Position 47507039 doesn't seem to be mutated. Here are the mutated foci.Position 12632206 doesn't seem to be mutated. Here are the mutated foci.Position 157197303 doesn't seem to be mutated. Here are the mutated foci.Position 42129788 doesn't seem to be mutated. Here are the mutated foci.Position 116712770 doesn't seem to be mutated. Here are the mutated foci.Position 142750913 doesn't seem to be mutated. Here are the mutated foci.Position 117997245 doesn't seem to be mutated. Here are the mutated foci.Position 43095458 doesn't seem to be mutated. Here are the mutated foci.Position 78055342 doesn't seem to be mutated. Here are the mutated foci.Position 121602355 doesn't seem to be mutated. Here are the mutated foci.Position 50183387 doesn't seem to be mutated. Here are the mutated foci.Position 34340140 doesn't seem to be mutated. Here are the mutated foci.Position 13954961 doesn't seem to be mutated. Here are the mutated foci.Position 61717977 doesn't seem to be mutated. Here are the mutated foci.Position 61740517 doesn't seem to be mutated. Here are the mutated foci.Position 34944088 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 154276951 doesn't seem to be mutated. Here are the mutated foci.Position 156832792 doesn't seem to be mutated. Here are the mutated foci.Position 156860826 doesn't seem to be mutated. Here are the mutated foci.Position 29428760 doesn't seem to be mutated. Here are the mutated foci.Position 29681477 doesn't seem to be mutated. Here are the mutated foci.Position 39004914 doesn't seem to be mutated. Here are the mutated foci.Position 47368814 doesn't seem to be mutated. Here are the mutated foci.Position 47499694 doesn't seem to be mutated. Here are the mutated foci.Position 47797809 doesn't seem to be mutated. Here are the mutated foci.Position 144413453 doesn't seem to be mutated. Here are the mutated foci.Position 144451776 doesn't seem to be mutated. Here are the mutated foci.Position 232166152 doesn't seem to be mutated. Here are the mutated foci.Position 232190830 doesn't seem to be mutated. Here are the mutated foci.Position 232275058 doesn't seem to be mutated. Here are the mutated foci.Position 10060253 doesn't seem to be mutated. Here are the mutated foci.Position 10152409 doesn't seem to be mutated. Here are the mutated foci.Position 12622703 doesn't seem to be mutated. Here are the mutated foci.Position 12659761 doesn't seem to be mutated. Here are the mutated foci.Position 48592979 doesn't seem to be mutated. Here are the mutated foci.Position 54267550 doesn't seem to be mutated. Here are the mutated foci.Position 54706908 doesn't seem to be mutated. Here are the mutated foci.Position 1262368 doesn't seem to be mutated. Here are the mutated foci.Position 80829370 doesn't seem to be mutated. Here are the mutated foci.Position 80858117 doesn't seem to be mutated. Here are the mutated foci.Position 112740577 doesn't seem to be mutated. Here are the mutated foci.Position 132650747 doesn't seem to be mutated. Here are the mutated foci.Position 177197548 doesn't seem to be mutated. Here are the mutated foci.Position 177201198 doesn't seem to be mutated. Here are the mutated foci.Position 177220054 doesn't seem to be mutated. Here are the mutated foci.Position 43579899 doesn't seem to be mutated. Here are the mutated foci.Position 43580327 doesn't seem to be mutated. Here are the mutated foci.Position 104748901 doesn't seem to be mutated. Here are the mutated foci.Position 41979705 doesn't seem to be mutated. Here are the mutated foci.Position 42181294 doesn't seem to be mutated. Here are the mutated foci.Position 42211610 doesn't seem to be mutated. Here are the mutated foci.Position 42213065 doesn't seem to be mutated. Here are the mutated foci.Position 96121974 doesn't seem to be mutated. Here are the mutated foci.Position 96290624 doesn't seem to be mutated. Here are the mutated foci.Position 124817783 doesn't seem to be mutated. Here are the mutated foci.Position 140830457 doesn't seem to be mutated. Here are the mutated foci.Position 142757352 doesn't seem to be mutated. Here are the mutated foci.Position 142757379 doesn't seem to be mutated. Here are the mutated foci.Position 38428101 doesn't seem to be mutated. Here are the mutated foci.Position 117824912 doesn't seem to be mutated. Here are the mutated foci.Position 117854058 doesn't seem to be mutated. Here are the mutated foci.Position 117992781 doesn't seem to be mutated. Here are the mutated foci.Position 118007447 doesn't seem to be mutated. Here are the mutated foci.Position 118077356 doesn't seem to be mutated. Here are the mutated foci.Position 398793 doesn't seem to be mutated. Here are the mutated foci.Position 2106496 doesn't seem to be mutated. Here are the mutated foci.Position 2121513 doesn't seem to be mutated. Here are the mutated foci.Position 2175588 doesn't seem to be mutated. Here are the mutated foci.Position 2190326 doesn't seem to be mutated. Here are the mutated foci.Position 19378514 doesn't seem to be mutated. Here are the mutated foci.Position 21976768 doesn't seem to be mutated. Here are the mutated foci.Position 132919051 doesn't seem to be mutated. Here are the mutated foci.Position 132938530 doesn't seem to be mutated. Here are the mutated foci.Position 132938566 doesn't seem to be mutated. Here are the mutated foci.Position 62070052 doesn't seem to be mutated. Here are the mutated foci.Position 86795844 doesn't seem to be mutated. Here are the mutated foci.Position 86823202 doesn't seem to be mutated. Here are the mutated foci.Position 102534096 doesn't seem to be mutated. Here are the mutated foci.Position 32395762 doesn't seem to be mutated. Here are the mutated foci.Position 47226364 doesn't seem to be mutated. Here are the mutated foci.Position 108314008 doesn't seem to be mutated. Here are the mutated foci.Position 108352218 doesn't seem to be mutated. Here are the mutated foci.Position 119206406 doesn't seem to be mutated. Here are the mutated foci.Position 11802421 doesn't seem to be mutated. Here are the mutated foci.Position 11820588 doesn't seem to be mutated. Here are the mutated foci.Position 25252879 doesn't seem to be mutated. Here are the mutated foci.Position 32341329 doesn't seem to be mutated. Here are the mutated foci.Position 32365425 doesn't seem to be mutated. Here are the mutated foci.Position 45186300 doesn't seem to be mutated. Here are the mutated foci.Position 40182780 doesn't seem to be mutated. Here are the mutated foci.Position 89258554 doesn't seem to be mutated. Here are the mutated foci.Position 89287360 doesn't seem to be mutated. Here are the mutated foci.Position 2078563 doesn't seem to be mutated. Here are the mutated foci.Position 3737059 doesn't seem to be mutated. Here are the mutated foci.Position 13916059 doesn't seem to be mutated. Here are the mutated foci.Position 89768511 doesn't seem to be mutated. Here are the mutated foci.Position 7673591 doesn't seem to be mutated. Here are the mutated foci.Position 7674183 doesn't seem to be mutated. Here are the mutated foci.Position 31092149 doesn't seem to be mutated. Here are the mutated foci.Position 61692192 doesn't seem to be mutated. Here are the mutated foci.Position 61725749 doesn't seem to be mutated. Here are the mutated foci.Position 32385152 doesn't seem to be mutated. Here are the mutated foci.Position 58896528 doesn't seem to be mutated. Here are the mutated foci.Position 34882549 doesn't seem to be mutated. Here are the mutated foci.Position 35421543 doesn't seem to be mutated. Here are the mutated foci.Position 35590289 doesn't seem to be mutated. Here are the mutated foci.Position 35697784 doesn't seem to be mutated. Here are the mutated foci.Position 35755805 doesn't seem to be mutated. Here are the mutated foci.Position 35952598 doesn't seem to be mutated. Here are the mutated foci.Position 41132135 doesn't seem to be mutated. Here are the mutated foci.Position 77608645 doesn't seem to be mutated. Here are the mutated foci.Position 77684018 doesn't seem to be mutated. Here are the mutated foci.Position 156875756 doesn't seem to be mutated. Here are the mutated foci.Position 29900980 doesn't seem to be mutated. Here are the mutated foci.Position 144481010 doesn't seem to be mutated. Here are the mutated foci.Position 177139254 doesn't seem to be mutated. Here are the mutated foci.Position 55093023 doesn't seem to be mutated. Here are the mutated foci.Position 142757379 doesn't seem to be mutated. Here are the mutated foci.Position 118045791 doesn't seem to be mutated. Here are the mutated foci.Position 86853012 doesn't seem to be mutated. Here are the mutated foci.Position 50130719 doesn't seem to be mutated. Here are the mutated foci.Position 38336416 doesn't seem to be mutated. Here are the mutated foci.Position 35986542 doesn't seem to be mutated. Here are the mutated foci.Position 77513463 doesn't seem to be mutated. Here are the mutated foci.Position 10291556 doesn't seem to be mutated. Here are the mutated foci.Position 50738358 doesn't seem to be mutated. Here are the mutated foci.Position 10269264 doesn't seem to be mutated. Here are the mutated foci.Position 144383543 doesn't seem to be mutated. Here are the mutated foci.Position 214765752 doesn't seem to be mutated. Here are the mutated foci.Position 12598010 doesn't seem to be mutated. Here are the mutated foci.Position 177158923 doesn't seem to be mutated. Here are the mutated foci.Position 41987083 doesn't seem to be mutated. Here are the mutated foci.Position 140765826 doesn't seem to be mutated. Here are the mutated foci.Position 311285 doesn't seem to be mutated. Here are the mutated foci.Position 102547833 doesn't seem to be mutated. Here are the mutated foci.Position 102552431 doesn't seem to be mutated. Here are the mutated foci.Position 121496832 doesn't seem to be mutated. Here are the mutated foci.Position 44096330 doesn't seem to be mutated. Here are the mutated foci.Position 119225050 doesn't seem to be mutated. Here are the mutated foci.Position 154761782 doesn't seem to be mutated. Here are the mutated foci.Position 231400106 doesn't seem to be mutated. Here are the mutated foci.Position 47464519 doesn't seem to be mutated. Here are the mutated foci.Position 169014600 doesn't seem to be mutated. Here are the mutated foci.Position 69956454 doesn't seem to be mutated. Here are the mutated foci.Position 138759217 doesn't seem to be mutated. Here are the mutated foci.Position 157231953 doesn't seem to be mutated. Here are the mutated foci.Position 157231955 doesn't seem to be mutated. Here are the mutated foci.Position 26087457 doesn't seem to be mutated. Here are the mutated foci.Position 55155161 doesn't seem to be mutated. Here are the mutated foci.Position 124867287 doesn't seem to be mutated. Here are the mutated foci.Position 140866540 doesn't seem to be mutated. Here are the mutated foci.Position 36838112 doesn't seem to be mutated. Here are the mutated foci.Position 95138265 doesn't seem to be mutated. Here are the mutated foci.Position 43113987 doesn't seem to be mutated. Here are the mutated foci.Position 62070052 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 22625935 doesn't seem to be mutated. Here are the mutated foci.Position 119301196 doesn't seem to be mutated. Here are the mutated foci.Position 32343709 doesn't seem to be mutated. Here are the mutated foci.Position 103706632 doesn't seem to be mutated. Here are the mutated foci.Position 66438613 doesn't seem to be mutated. Here are the mutated foci.Position 31104020 doesn't seem to be mutated. Here are the mutated foci.Position 61677215 doesn't seem to be mutated. Here are the mutated foci.Position 35566419 doesn't seem to be mutated. Here are the mutated foci.Position 77773753 doesn't seem to be mutated. Here are the mutated foci.Position 133655507 doesn't seem to be mutated. Here are the mutated foci.Position 154280021 doesn't seem to be mutated. Here are the mutated foci.Position 261418 doesn't seem to be mutated. Here are the mutated foci.Position 138679217 doesn't seem to be mutated. Here are the mutated foci.Position 89269196 doesn't seem to be mutated. Here are the mutated foci.Position 68825120 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 48691380 doesn't seem to be mutated. Here are the mutated foci.Position 161339545 doesn't seem to be mutated. Here are the mutated foci.Position 193158503 doesn't seem to be mutated. Here are the mutated foci.Position 132633586 doesn't seem to be mutated. Here are the mutated foci.Position 104844017 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 48357089 doesn't seem to be mutated. Here are the mutated foci.Position 89781960 doesn't seem to be mutated. Here are the mutated foci.Position 31129967 doesn't seem to be mutated. Here are the mutated foci.Position 35098848 doesn't seem to be mutated. Here are the mutated foci.Position 77532275 doesn't seem to be mutated. Here are the mutated foci.Position 124347885 doesn't seem to be mutated. Here are the mutated foci.Position 41968687 doesn't seem to be mutated. Here are the mutated foci.Position 140887077 doesn't seem to be mutated. Here are the mutated foci.Position 32408594 doesn't seem to be mutated. Here are the mutated foci.Position 44119149 doesn't seem to be mutated. Here are the mutated foci.Position 147907631 doesn't seem to be mutated. Here are the mutated foci.Position 69740019 doesn't seem to be mutated. Here are the mutated foci.Position 421177 doesn't seem to be mutated. Here are the mutated foci.Position 31157964 doesn't seem to be mutated. Here are the mutated foci.Position 28735405 doesn't seem to be mutated. Here are the mutated foci.Position 193232458 doesn't seem to be mutated. Here are the mutated foci.Position 29577245 doesn't seem to be mutated. Here are the mutated foci.Position 232332631 doesn't seem to be mutated. Here are the mutated foci.Position 12662380 doesn't seem to be mutated. Here are the mutated foci.Position 37046607 doesn't seem to be mutated. Here are the mutated foci.Position 80822043 doesn't seem to be mutated. Here are the mutated foci.Position 177210273 doesn't seem to be mutated. Here are the mutated foci.Position 108873854 doesn't seem to be mutated. Here are the mutated foci.Position 3746350 doesn't seem to be mutated. Here are the mutated foci.Position 89787881 doesn't seem to be mutated. Here are the mutated foci.Position 133667345 doesn't seem to be mutated. Here are the mutated foci.Position 43348132 doesn't seem to be mutated. Here are the mutated foci.Position 43348137 doesn't seem to be mutated. Here are the mutated foci.Position 29518870 doesn't seem to be mutated. Here are the mutated foci.Position 144365459 doesn't seem to be mutated. Here are the mutated foci.Position 232102880 doesn't seem to be mutated. Here are the mutated foci.Position 232103893 doesn't seem to be mutated. Here are the mutated foci.Position 232155173 doesn't seem to be mutated. Here are the mutated foci.Position 122201987 doesn't seem to be mutated. Here are the mutated foci.Position 122272872 doesn't seem to be mutated. Here are the mutated foci.Position 54285945 doesn't seem to be mutated. Here are the mutated foci.Position 1281916 doesn't seem to be mutated. Here are the mutated foci.Position 177203486 doesn't seem to be mutated. Here are the mutated foci.Position 177252795 doesn't seem to be mutated. Here are the mutated foci.Position 26083667 doesn't seem to be mutated. Here are the mutated foci.Position 50378642 doesn't seem to be mutated. Here are the mutated foci.Position 116685110 doesn't seem to be mutated. Here are the mutated foci.Position 116732621 doesn't seem to be mutated. Here are the mutated foci.Position 140885315 doesn't seem to be mutated. Here are the mutated foci.Position 31161117 doesn't seem to be mutated. Here are the mutated foci.Position 89948284 doesn't seem to be mutated. Here are the mutated foci.Position 2164052 doesn't seem to be mutated. Here are the mutated foci.Position 2193468 doesn't seem to be mutated. Here are the mutated foci.Position 62063817 doesn't seem to be mutated. Here are the mutated foci.Position 86765918 doesn't seem to be mutated. Here are the mutated foci.Position 86908784 doesn't seem to be mutated. Here are the mutated foci.Position 87940767 doesn't seem to be mutated. Here are the mutated foci.Position 44157382 doesn't seem to be mutated. Here are the mutated foci.Position 108272506 doesn't seem to be mutated. Here are the mutated foci.Position 108290552 doesn't seem to be mutated. Here are the mutated foci.Position 108295409 doesn't seem to be mutated. Here are the mutated foci.Position 11696859 doesn't seem to be mutated. Here are the mutated foci.Position 45176707 doesn't seem to be mutated. Here are the mutated foci.Position 32722722 doesn't seem to be mutated. Here are the mutated foci.Position 80176020 doesn't seem to be mutated. Here are the mutated foci.Position 31096458 doesn't seem to be mutated. Here are the mutated foci.Position 35104280 doesn't seem to be mutated. Here are the mutated foci.Position 61730035 doesn't seem to be mutated. Here are the mutated foci.Position 61765355 doesn't seem to be mutated. Here are the mutated foci.Position 76478707 doesn't seem to be mutated. Here are the mutated foci.Position 33303931 doesn't seem to be mutated. Here are the mutated foci.Position 45374342 doesn't seem to be mutated. Here are the mutated foci.Position 35050680 doesn't seem to be mutated. Here are the mutated foci.Position 28735836 doesn't seem to be mutated. Here are the mutated foci.Position 48675797 doesn't seem to be mutated. Here are the mutated foci.Position 77528040 doesn't seem to be mutated. Here are the mutated foci.Position 77546262 doesn't seem to be mutated. Here are the mutated foci.Position 77640474 doesn't seem to be mutated. Here are the mutated foci.Position 77781748 doesn't seem to be mutated. Here are the mutated foci.Position 133882535 doesn't seem to be mutated. Here are the mutated foci.Position 193177171 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 42118268 doesn't seem to be mutated. Here are the mutated foci.Position 117797553 doesn't seem to be mutated. Here are the mutated foci.Position 36521554 doesn't seem to be mutated. Here are the mutated foci.Position 50224820 doesn't seem to be mutated. Here are the mutated foci.Position 31341689 doesn't seem to be mutated. Here are the mutated foci.Position 133675373 doesn't seem to be mutated. Here are the mutated foci.Position 17054450 doesn't seem to be mutated. Here are the mutated foci.Position 69950627 doesn't seem to be mutated. Here are the mutated foci.Position 914721 doesn't seem to be mutated. Here are the mutated foci.Position 42218558 doesn't seem to be mutated. Here are the mutated foci.Position 55028933 doesn't seem to be mutated. Here are the mutated foci.Position 55136565 doesn't seem to be mutated. Here are the mutated foci.Position 11722126 doesn't seem to be mutated. Here are the mutated foci.Position 61784455 doesn't seem to be mutated. Here are the mutated foci.Position 35157536 doesn't seem to be mutated. Here are the mutated foci.Position 55154190 doesn't seem to be mutated. Here are the mutated foci.Position 140758374 doesn't seem to be mutated. Here are the mutated foci.Position 95320249 doesn't seem to be mutated. Here are the mutated foci.Position 133594861 doesn't seem to be mutated. Here are the mutated foci.Position 29500358 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 80655285 doesn't seem to be mutated. Here are the mutated foci.Position 138811040 doesn't seem to be mutated. Here are the mutated foci.Position 104825082 doesn't seem to be mutated. Here are the mutated foci.Position 140738806 doesn't seem to be mutated. Here are the mutated foci.Position 2009658 doesn't seem to be mutated. Here are the mutated foci.Position 2019023 doesn't seem to be mutated. Here are the mutated foci.Position 2142447 doesn't seem to be mutated. Here are the mutated foci.Position 7674220 doesn't seem to be mutated. Here are the mutated foci.Position 35394711 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 77737099 doesn't seem to be mutated. Here are the mutated foci.Position 10290064 doesn't seem to be mutated. Here are the mutated foci.Position 29606279 doesn't seem to be mutated. Here are the mutated foci.Position 39113922 doesn't seem to be mutated. Here are the mutated foci.Position 69809111 doesn't seem to be mutated. Here are the mutated foci.Position 158582177 doesn't seem to be mutated. Here are the mutated foci.Position 54714940 doesn't seem to be mutated. Here are the mutated foci.Position 124855168 doesn't seem to be mutated. Here are the mutated foci.Position 117879740 doesn't seem to be mutated. Here are the mutated foci.Position 21974720 doesn't seem to be mutated. Here are the mutated foci.Position 86782517 doesn't seem to be mutated. Here are the mutated foci.Position 32346943 doesn't seem to be mutated. Here are the mutated foci.Position 66442427 doesn't seem to be mutated. Here are the mutated foci.Position 13917753 doesn't seem to be mutated. Here are the mutated foci.Position 68808896 doesn't seem to be mutated. Here are the mutated foci.Position 7673802 doesn't seem to be mutated. Here are the mutated foci.Position 35412470 doesn't seem to be mutated. Here are the mutated foci.Position 124357176 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 69901195 doesn't seem to be mutated. Here are the mutated foci.Position 128486853 doesn't seem to be mutated. Here are the mutated foci.Position 104831584 doesn't seem to be mutated. Here are the mutated foci.Position 2117190 doesn't seem to be mutated. Here are the mutated foci.Position 2135850 doesn't seem to be mutated. Here are the mutated foci.Position 36924438 doesn't seem to be mutated. Here are the mutated foci.Position 61903158 doesn't seem to be mutated. Here are the mutated foci.Position 87921288 doesn't seem to be mutated. Here are the mutated foci.Position 11723801 doesn't seem to be mutated. Here are the mutated foci.Position 66402845 doesn't seem to be mutated. Here are the mutated foci.Position 68756132 doesn't seem to be mutated. Here are the mutated foci.Position 31206360 doesn't seem to be mutated. Here are the mutated foci.Position 35108258 doesn't seem to be mutated. Here are the mutated foci.Position 133308739 doesn't seem to be mutated. Here are the mutated foci.Position 140761777 doesn't seem to be mutated. Here are the mutated foci.Position 140777838 doesn't seem to be mutated. Here are the mutated foci.Position 112492387 doesn't seem to be mutated. Here are the mutated foci.Position 112498152 doesn't seem to be mutated. Here are the mutated foci.Position 133673213 doesn't seem to be mutated. Here are the mutated foci.Position 10223524 doesn't seem to be mutated. Here are the mutated foci.Position 10234212 doesn't seem to be mutated. Here are the mutated foci.Position 10258367 doesn't seem to be mutated. Here are the mutated foci.Position 10262142 doesn't seem to be mutated. Here are the mutated foci.Position 10367536 doesn't seem to be mutated. Here are the mutated foci.Position 10375963 doesn't seem to be mutated. Here are the mutated foci.Position 17030653 doesn't seem to be mutated. Here are the mutated foci.Position 23689145 doesn't seem to be mutated. Here are the mutated foci.Position 43343862 doesn't seem to be mutated. Here are the mutated foci.Position 44840712 doesn't seem to be mutated. Here are the mutated foci.Position 155243781 doesn't seem to be mutated. Here are the mutated foci.Position 161326550 doesn't seem to be mutated. Here are the mutated foci.Position 161344132 doesn't seem to be mutated. Here are the mutated foci.Position 193126563 doesn't seem to be mutated. Here are the mutated foci.Position 193128302 doesn't seem to be mutated. Here are the mutated foci.Position 193197164 doesn't seem to be mutated. Here are the mutated foci.Position 193201738 doesn't seem to be mutated. Here are the mutated foci.Position 193225979 doesn't seem to be mutated. Here are the mutated foci.Position 231365635 doesn't seem to be mutated. Here are the mutated foci.Position 231396039 doesn't seem to be mutated. Here are the mutated foci.Position 241493515 doesn't seem to be mutated. Here are the mutated foci.Position 29385044 doesn't seem to be mutated. Here are the mutated foci.Position 29385119 doesn't seem to be mutated. Here are the mutated foci.Position 29540591 doesn't seem to be mutated. Here are the mutated foci.Position 29635778 doesn't seem to be mutated. Here are the mutated foci.Position 29647749 doesn't seem to be mutated. Here are the mutated foci.Position 29702217 doesn't seem to be mutated. Here are the mutated foci.Position 29728121 doesn't seem to be mutated. Here are the mutated foci.Position 29734655 doesn't seem to be mutated. Here are the mutated foci.Position 29752353 doesn't seem to be mutated. Here are the mutated foci.Position 29768741 doesn't seem to be mutated. Here are the mutated foci.Position 29771534 doesn't seem to be mutated. Here are the mutated foci.Position 29797812 doesn't seem to be mutated. Here are the mutated foci.Position 39035331 doesn't seem to be mutated. Here are the mutated foci.Position 39105902 doesn't seem to be mutated. Here are the mutated foci.Position 39124970 doesn't seem to be mutated. Here are the mutated foci.Position 47366546 doesn't seem to be mutated. Here are the mutated foci.Position 47372329 doesn't seem to be mutated. Here are the mutated foci.Position 47401969 doesn't seem to be mutated. Here are the mutated foci.Position 47426003 doesn't seem to be mutated. Here are the mutated foci.Position 47469587 doesn't seem to be mutated. Here are the mutated foci.Position 47614927 doesn't seem to be mutated. Here are the mutated foci.Position 47621674 doesn't seem to be mutated. Here are the mutated foci.Position 47624479 doesn't seem to be mutated. Here are the mutated foci.Position 47660277 doesn't seem to be mutated. Here are the mutated foci.Position 47662264 doesn't seem to be mutated. Here are the mutated foci.Position 58176934 doesn't seem to be mutated. Here are the mutated foci.Position 58199068 doesn't seem to be mutated. Here are the mutated foci.Position 96251704 doesn't seem to be mutated. Here are the mutated foci.Position 127271490 doesn't seem to be mutated. Here are the mutated foci.Position 127279086 doesn't seem to be mutated. Here are the mutated foci.Position 144405320 doesn't seem to be mutated. Here are the mutated foci.Position 144416346 doesn't seem to be mutated. Here are the mutated foci.Position 144427684 doesn't seem to be mutated. Here are the mutated foci.Position 144460620 doesn't seem to be mutated. Here are the mutated foci.Position 168969131 doesn't seem to be mutated. Here are the mutated foci.Position 214797676 doesn't seem to be mutated. Here are the mutated foci.Position 231969951 doesn't seem to be mutated. Here are the mutated foci.Position 231976916 doesn't seem to be mutated. Here are the mutated foci.Position 231982683 doesn't seem to be mutated. Here are the mutated foci.Position 232018880 doesn't seem to be mutated. Here are the mutated foci.Position 232035326 doesn't seem to be mutated. Here are the mutated foci.Position 232144381 doesn't seem to be mutated. Here are the mutated foci.Position 232175003 doesn't seem to be mutated. Here are the mutated foci.Position 232320333 doesn't seem to be mutated. Here are the mutated foci.Position 10022510 doesn't seem to be mutated. Here are the mutated foci.Position 10046055 doesn't seem to be mutated. Here are the mutated foci.Position 10060167 doesn't seem to be mutated. Here are the mutated foci.Position 10070032 doesn't seem to be mutated. Here are the mutated foci.Position 10096572 doesn't seem to be mutated. Here are the mutated foci.Position 10097988 doesn't seem to be mutated. Here are the mutated foci.Position 12614594 doesn't seem to be mutated. Here are the mutated foci.Position 69837345 doesn't seem to be mutated. Here are the mutated foci.Position 69909892 doesn't seem to be mutated. Here are the mutated foci.Position 69950627 doesn't seem to be mutated. Here are the mutated foci.Position 122225375 doesn't seem to be mutated. Here are the mutated foci.Position 179195260 doesn't seem to be mutated. Here are the mutated foci.Position 179197037 doesn't seem to be mutated. Here are the mutated foci.Position 179231267 doesn't seem to be mutated. Here are the mutated foci.Position 179235046 doesn't seem to be mutated. Here are the mutated foci.Position 54266393 doesn't seem to be mutated. Here are the mutated foci.Position 54273893 doesn't seem to be mutated. Here are the mutated foci.Position 54694856 doesn't seem to be mutated. Here are the mutated foci.Position 223269 doesn't seem to be mutated. Here are the mutated foci.Position 912005 doesn't seem to be mutated. Here are the mutated foci.Position 1249282 doesn't seem to be mutated. Here are the mutated foci.Position 1263851 doesn't seem to be mutated. Here are the mutated foci.Position 1272182 doesn't seem to be mutated. Here are the mutated foci.Position 1276170 doesn't seem to be mutated. Here are the mutated foci.Position 1287336 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 37808227 doesn't seem to be mutated. Here are the mutated foci.Position 37836198 doesn't seem to be mutated. Here are the mutated foci.Position 80693624 doesn't seem to be mutated. Here are the mutated foci.Position 80695076 doesn't seem to be mutated. Here are the mutated foci.Position 80702018 doesn't seem to be mutated. Here are the mutated foci.Position 80712767 doesn't seem to be mutated. Here are the mutated foci.Position 80717046 doesn't seem to be mutated. Here are the mutated foci.Position 80728625 doesn't seem to be mutated. Here are the mutated foci.Position 80733809 doesn't seem to be mutated. Here are the mutated foci.Position 80747280 doesn't seem to be mutated. Here are the mutated foci.Position 80762006 doesn't seem to be mutated. Here are the mutated foci.Position 80860004 doesn't seem to be mutated. Here are the mutated foci.Position 80865661 doesn't seem to be mutated. Here are the mutated foci.Position 112809995 doesn't seem to be mutated. Here are the mutated foci.Position 132626870 doesn't seem to be mutated. Here are the mutated foci.Position 138718951 doesn't seem to be mutated. Here are the mutated foci.Position 138735353 doesn't seem to be mutated. Here are the mutated foci.Position 138736890 doesn't seem to be mutated. Here are the mutated foci.Position 138758013 doesn't seem to be mutated. Here are the mutated foci.Position 138760371 doesn't seem to be mutated. Here are the mutated foci.Position 138797886 doesn't seem to be mutated. Here are the mutated foci.Position 138825530 doesn't seem to be mutated. Here are the mutated foci.Position 138829119 doesn't seem to be mutated. Here are the mutated foci.Position 138846334 doesn't seem to be mutated. Here are the mutated foci.Position 157185413 doesn't seem to be mutated. Here are the mutated foci.Position 157186677 doesn't seem to be mutated. Here are the mutated foci.Position 177134660 doesn't seem to be mutated. Here are the mutated foci.Position 177192383 doesn't seem to be mutated. Here are the mutated foci.Position 177200899 doesn't seem to be mutated. Here are the mutated foci.Position 177206857 doesn't seem to be mutated. Here are the mutated foci.Position 177218873 doesn't seem to be mutated. Here are the mutated foci.Position 177275325 doesn't seem to be mutated. Here are the mutated foci.Position 177284455 doesn't seem to be mutated. Here are the mutated foci.Position 26084012 doesn't seem to be mutated. Here are the mutated foci.Position 26099049 doesn't seem to be mutated. Here are the mutated foci.Position 35453475 doesn't seem to be mutated. Here are the mutated foci.Position 43606436 doesn't seem to be mutated. Here are the mutated foci.Position 104733838 doesn't seem to be mutated. Here are the mutated foci.Position 104748248 doesn't seem to be mutated. Here are the mutated foci.Position 104798400 doesn't seem to be mutated. Here are the mutated foci.Position 104823511 doesn't seem to be mutated. Here are the mutated foci.Position 104823759 doesn't seem to be mutated. Here are the mutated foci.Position 104827303 doesn't seem to be mutated. Here are the mutated foci.Position 104834147 doesn't seem to be mutated. Here are the mutated foci.Position 104843813 doesn't seem to be mutated. Here are the mutated foci.Position 5986767 doesn't seem to be mutated. Here are the mutated foci.Position 42037140 doesn't seem to be mutated. Here are the mutated foci.Position 42046992 doesn't seem to be mutated. Here are the mutated foci.Position 42077371 doesn't seem to be mutated. Here are the mutated foci.Position 42144541 doesn't seem to be mutated. Here are the mutated foci.Position 42155277 doesn't seem to be mutated. Here are the mutated foci.Position 42163432 doesn't seem to be mutated. Here are the mutated foci.Position 42183231 doesn't seem to be mutated. Here are the mutated foci.Position 42237926 doesn't seem to be mutated. Here are the mutated foci.Position 50338520 doesn't seem to be mutated. Here are the mutated foci.Position 50346386 doesn't seem to be mutated. Here are the mutated foci.Position 50384498 doesn't seem to be mutated. Here are the mutated foci.Position 55094841 doesn't seem to be mutated. Here are the mutated foci.Position 55113399 doesn't seem to be mutated. Here are the mutated foci.Position 55115048 doesn't seem to be mutated. Here are the mutated foci.Position 55132058 doesn't seem to be mutated. Here are the mutated foci.Position 55165223 doesn't seem to be mutated. Here are the mutated foci.Position 66991636 doesn't seem to be mutated. Here are the mutated foci.Position 93096737 doesn't seem to be mutated. Here are the mutated foci.Position 93099665 doesn't seem to be mutated. Here are the mutated foci.Position 93107304 doesn't seem to be mutated. Here are the mutated foci.Position 93127085 doesn't seem to be mutated. Here are the mutated foci.Position 96129464 doesn't seem to be mutated. Here are the mutated foci.Position 96157163 doesn't seem to be mutated. Here are the mutated foci.Position 96168739 doesn't seem to be mutated. Here are the mutated foci.Position 96172556 doesn't seem to be mutated. Here are the mutated foci.Position 96232256 doesn't seem to be mutated. Here are the mutated foci.Position 116680086 doesn't seem to be mutated. Here are the mutated foci.Position 116759788 doesn't seem to be mutated. Here are the mutated foci.Position 116778623 doesn't seem to be mutated. Here are the mutated foci.Position 124873542 doesn't seem to be mutated. Here are the mutated foci.Position 124874946 doesn't seem to be mutated. Here are the mutated foci.Position 124876849 doesn't seem to be mutated. Here are the mutated foci.Position 124886939 doesn't seem to be mutated. Here are the mutated foci.Position 124926612 doesn't seem to be mutated. Here are the mutated foci.Position 140778587 doesn't seem to be mutated. Here are the mutated foci.Position 140789210 doesn't seem to be mutated. Here are the mutated foci.Position 140866931 doesn't seem to be mutated. Here are the mutated foci.Position 140910681 doesn't seem to be mutated. Here are the mutated foci.Position 148842739 doesn't seem to be mutated. Here are the mutated foci.Position 31086589 doesn't seem to be mutated. Here are the mutated foci.Position 31088150 doesn't seem to be mutated. Here are the mutated foci.Position 31112628 doesn't seem to be mutated. Here are the mutated foci.Position 31142486 doesn't seem to be mutated. Here are the mutated foci.Position 31161163 doesn't seem to be mutated. Here are the mutated foci.Position 38456742 doesn't seem to be mutated. Here are the mutated foci.Position 89965100 doesn't seem to be mutated. Here are the mutated foci.Position 89979653 doesn't seem to be mutated. Here are the mutated foci.Position 117898706 doesn't seem to be mutated. Here are the mutated foci.Position 117919193 doesn't seem to be mutated. Here are the mutated foci.Position 117927417 doesn't seem to be mutated. Here are the mutated foci.Position 117928766 doesn't seem to be mutated. Here are the mutated foci.Position 117934256 doesn't seem to be mutated. Here are the mutated foci.Position 117978520 doesn't seem to be mutated. Here are the mutated foci.Position 118013038 doesn't seem to be mutated. Here are the mutated foci.Position 118098601 doesn't seem to be mutated. Here are the mutated foci.Position 241815 doesn't seem to be mutated. Here are the mutated foci.Position 277837 doesn't seem to be mutated. Here are the mutated foci.Position 292501 doesn't seem to be mutated. Here are the mutated foci.Position 339526 doesn't seem to be mutated. Here are the mutated foci.Position 368660 doesn't seem to be mutated. Here are the mutated foci.Position 371173 doesn't seem to be mutated. Here are the mutated foci.Position 395531 doesn't seem to be mutated. Here are the mutated foci.Position 457470 doesn't seem to be mutated. Here are the mutated foci.Position 1990339 doesn't seem to be mutated. Here are the mutated foci.Position 2031089 doesn't seem to be mutated. Here are the mutated foci.Position 2068722 doesn't seem to be mutated. Here are the mutated foci.Position 19384492 doesn't seem to be mutated. Here are the mutated foci.Position 21971940 doesn't seem to be mutated. Here are the mutated foci.Position 36878435 doesn't seem to be mutated. Here are the mutated foci.Position 36945416 doesn't seem to be mutated. Here are the mutated foci.Position 95155891 doesn't seem to be mutated. Here are the mutated foci.Position 95189191 doesn't seem to be mutated. Here are the mutated foci.Position 95205562 doesn't seem to be mutated. Here are the mutated foci.Position 95279504 doesn't seem to be mutated. Here are the mutated foci.Position 95298224 doesn't seem to be mutated. Here are the mutated foci.Position 95301421 doesn't seem to be mutated. Here are the mutated foci.Position 95322598 doesn't seem to be mutated. Here are the mutated foci.Position 95339385 doesn't seem to be mutated. Here are the mutated foci.Position 95362185 doesn't seem to be mutated. Here are the mutated foci.Position 95438460 doesn't seem to be mutated. Here are the mutated foci.Position 95471958 doesn't seem to be mutated. Here are the mutated foci.Position 95495427 doesn't seem to be mutated. Here are the mutated foci.Position 95505749 doesn't seem to be mutated. Here are the mutated foci.Position 99138803 doesn't seem to be mutated. Here are the mutated foci.Position 108874119 doesn't seem to be mutated. Here are the mutated foci.Position 132944404 doesn't seem to be mutated. Here are the mutated foci.Position 61918954 doesn't seem to be mutated. Here are the mutated foci.Position 61952843 doesn't seem to be mutated. Here are the mutated foci.Position 78031219 doesn't seem to be mutated. Here are the mutated foci.Position 78050787 doesn't seem to be mutated. Here are the mutated foci.Position 86763693 doesn't seem to be mutated. Here are the mutated foci.Position 86787882 doesn't seem to be mutated. Here are the mutated foci.Position 86788646 doesn't seem to be mutated. Here are the mutated foci.Position 86826411 doesn't seem to be mutated. Here are the mutated foci.Position 86920850 doesn't seem to be mutated. Here are the mutated foci.Position 86931298 doesn't seem to be mutated. Here are the mutated foci.Position 87971559 doesn't seem to be mutated. Here are the mutated foci.Position 102556736 doesn't seem to be mutated. Here are the mutated foci.Position 102557625 doesn't seem to be mutated. Here are the mutated foci.Position 102570404 doesn't seem to be mutated. Here are the mutated foci.Position 102573310 doesn't seem to be mutated. Here are the mutated foci.Position 110973865 doesn't seem to be mutated. Here are the mutated foci.Position 110990770 doesn't seem to be mutated. Here are the mutated foci.Position 113579255 doesn't seem to be mutated. Here are the mutated foci.Position 121542177 doesn't seem to be mutated. Here are the mutated foci.Position 121548883 doesn't seem to be mutated. Here are the mutated foci.Position 121557262 doesn't seem to be mutated. Here are the mutated foci.Position 121591011 doesn't seem to be mutated. Here are the mutated foci.Position 32395761 doesn't seem to be mutated. Here are the mutated foci.Position 44153983 doesn't seem to be mutated. Here are the mutated foci.Position 44161342 doesn't seem to be mutated. Here are the mutated foci.Position 44195432 doesn't seem to be mutated. Here are the mutated foci.Position 47218952 doesn't seem to be mutated. Here are the mutated foci.Position 47232485 doesn't seem to be mutated. Here are the mutated foci.Position 61434233 doesn't seem to be mutated. Here are the mutated foci.Position 108236975 doesn't seem to be mutated. Here are the mutated foci.Position 108260935 doesn't seem to be mutated. Here are the mutated foci.Position 108332905 doesn't seem to be mutated. Here are the mutated foci.Position 108353155 doesn't seem to be mutated. Here are the mutated foci.Position 119215669 doesn't seem to be mutated. Here are the mutated foci.Position 119216370 doesn't seem to be mutated. Here are the mutated foci.Position 119235667 doesn't seem to be mutated. Here are the mutated foci.Position 11739658 doesn't seem to be mutated. Here are the mutated foci.Position 11768127 doesn't seem to be mutated. Here are the mutated foci.Position 11804061 doesn't seem to be mutated. Here are the mutated foci.Position 11835933 doesn't seem to be mutated. Here are the mutated foci.Position 11839250 doesn't seem to be mutated. Here are the mutated foci.Position 11844782 doesn't seem to be mutated. Here are the mutated foci.Position 11878825 doesn't seem to be mutated. Here are the mutated foci.Position 25209622 doesn't seem to be mutated. Here are the mutated foci.Position 25211581 doesn't seem to be mutated. Here are the mutated foci.Position 25224784 doesn't seem to be mutated. Here are the mutated foci.Position 25232448 doesn't seem to be mutated. Here are the mutated foci.Position 25239958 doesn't seem to be mutated. Here are the mutated foci.Position 57751815 doesn't seem to be mutated. Here are the mutated foci.Position 112415874 doesn't seem to be mutated. Here are the mutated foci.Position 112431528 doesn't seem to be mutated. Here are the mutated foci.Position 112445055 doesn't seem to be mutated. Here are the mutated foci.Position 112459908 doesn't seem to be mutated. Here are the mutated foci.Position 112493062 doesn't seem to be mutated. Here are the mutated foci.Position 20187996 doesn't seem to be mutated. Here are the mutated foci.Position 48324984 doesn't seem to be mutated. Here are the mutated foci.Position 48375576 doesn't seem to be mutated. Here are the mutated foci.Position 48459951 doesn't seem to be mutated. Here are the mutated foci.Position 48555311 doesn't seem to be mutated. Here are the mutated foci.Position 48585041 doesn't seem to be mutated. Here are the mutated foci.Position 77923301 doesn't seem to be mutated. Here are the mutated foci.Position 45148275 doesn't seem to be mutated. Here are the mutated foci.Position 45156917 doesn't seem to be mutated. Here are the mutated foci.Position 45158033 doesn't seem to be mutated. Here are the mutated foci.Position 45189967 doesn't seem to be mutated. Here are the mutated foci.Position 45194317 doesn't seem to be mutated. Here are the mutated foci.Position 45197470 doesn't seem to be mutated. Here are the mutated foci.Position 50156959 doesn't seem to be mutated. Here are the mutated foci.Position 50156963 doesn't seem to be mutated. Here are the mutated foci.Position 50183388 doesn't seem to be mutated. Here are the mutated foci.Position 50193753 doesn't seem to be mutated. Here are the mutated foci.Position 50200278 doesn't seem to be mutated. Here are the mutated foci.Position 50211550 doesn't seem to be mutated. Here are the mutated foci.Position 94395672 doesn't seem to be mutated. Here are the mutated foci.Position 95086275 doesn't seem to be mutated. Here are the mutated foci.Position 95115507 doesn't seem to be mutated. Here are the mutated foci.Position 95116058 doesn't seem to be mutated. Here are the mutated foci.Position 95156279 doesn't seem to be mutated. Here are the mutated foci.Position 104774682 doesn't seem to be mutated. Here are the mutated foci.Position 38355929 doesn't seem to be mutated. Here are the mutated foci.Position 40164236 doesn't seem to be mutated. Here are the mutated foci.Position 40190888 doesn't seem to be mutated. Here are the mutated foci.Position 40217417 doesn't seem to be mutated. Here are the mutated foci.Position 66419520 doesn't seem to be mutated. Here are the mutated foci.Position 66445870 doesn't seem to be mutated. Here are the mutated foci.Position 66464522 doesn't seem to be mutated. Here are the mutated foci.Position 66478276 doesn't seem to be mutated. Here are the mutated foci.Position 82535013 doesn't seem to be mutated. Here are the mutated foci.Position 82535564 doesn't seem to be mutated. Here are the mutated foci.Position 89295733 doesn't seem to be mutated. Here are the mutated foci.Position 2087486 doesn't seem to be mutated. Here are the mutated foci.Position 3615066 doesn't seem to be mutated. Here are the mutated foci.Position 3751056 doesn't seem to be mutated. Here are the mutated foci.Position 3818525 doesn't seem to be mutated. Here are the mutated foci.Position 3853961 doesn't seem to be mutated. Here are the mutated foci.Position 3865945 doesn't seem to be mutated. Here are the mutated foci.Position 23627700 doesn't seem to be mutated. Here are the mutated foci.Position 23639222 doesn't seem to be mutated. Here are the mutated foci.Position 50794619 doesn't seem to be mutated. Here are the mutated foci.Position 68756133 doesn't seem to be mutated. Here are the mutated foci.Position 68808847 doesn't seem to be mutated. Here are the mutated foci.Position 89750326 doesn't seem to be mutated. Here are the mutated foci.Position 89783551 doesn't seem to be mutated. Here are the mutated foci.Position 89808910 doesn't seem to be mutated. Here are the mutated foci.Position 89818990 doesn't seem to be mutated. Here are the mutated foci.Position 31128439 doesn't seem to be mutated. Here are the mutated foci.Position 31149278 doesn't seem to be mutated. Here are the mutated foci.Position 31236189 doesn't seem to be mutated. Here are the mutated foci.Position 31290218 doesn't seem to be mutated. Here are the mutated foci.Position 31322094 doesn't seem to be mutated. Here are the mutated foci.Position 31352902 doesn't seem to be mutated. Here are the mutated foci.Position 31378802 doesn't seem to be mutated. Here are the mutated foci.Position 35111905 doesn't seem to be mutated. Here are the mutated foci.Position 35115729 doesn't seem to be mutated. Here are the mutated foci.Position 40634139 doesn't seem to be mutated. Here are the mutated foci.Position 40645443 doesn't seem to be mutated. Here are the mutated foci.Position 40651635 doesn't seem to be mutated. Here are the mutated foci.Position 42346802 doesn't seem to be mutated. Here are the mutated foci.Position 43072875 doesn't seem to be mutated. Here are the mutated foci.Position 43076884 doesn't seem to be mutated. Here are the mutated foci.Position 43089322 doesn't seem to be mutated. Here are the mutated foci.Position 43095603 doesn't seem to be mutated. Here are the mutated foci.Position 48729466 doesn't seem to be mutated. Here are the mutated foci.Position 58705344 doesn't seem to be mutated. Here are the mutated foci.Position 58715154 doesn't seem to be mutated. Here are the mutated foci.Position 58718004 doesn't seem to be mutated. Here are the mutated foci.Position 58735370 doesn't seem to be mutated. Here are the mutated foci.Position 59023654 doesn't seem to be mutated. Here are the mutated foci.Position 59032549 doesn't seem to be mutated. Here are the mutated foci.Position 59050979 doesn't seem to be mutated. Here are the mutated foci.Position 59075251 doesn't seem to be mutated. Here are the mutated foci.Position 59078125 doesn't seem to be mutated. Here are the mutated foci.Position 59079743 doesn't seem to be mutated. Here are the mutated foci.Position 59109471 doesn't seem to be mutated. Here are the mutated foci.Position 61691275 doesn't seem to be mutated. Here are the mutated foci.Position 61779793 doesn't seem to be mutated. Here are the mutated foci.Position 61804437 doesn't seem to be mutated. Here are the mutated foci.Position 76482772 doesn't seem to be mutated. Here are the mutated foci.Position 51050356 doesn't seem to be mutated. Here are the mutated foci.Position 1186298 doesn't seem to be mutated. Here are the mutated foci.Position 1186755 doesn't seem to be mutated. Here are the mutated foci.Position 1206797 doesn't seem to be mutated. Here are the mutated foci.Position 4102815 doesn't seem to be mutated. Here are the mutated foci.Position 4118600 doesn't seem to be mutated. Here are the mutated foci.Position 10969429 doesn't seem to be mutated. Here are the mutated foci.Position 10978780 doesn't seem to be mutated. Here are the mutated foci.Position 11058994 doesn't seem to be mutated. Here are the mutated foci.Position 45416637 doesn't seem to be mutated. Here are the mutated foci.Position 45456920 doesn't seem to be mutated. Here are the mutated foci.Position 50389763 doesn't seem to be mutated. Here are the mutated foci.Position 50412764 doesn't seem to be mutated. Here are the mutated foci.Position 32353868 doesn't seem to be mutated. Here are the mutated foci.Position 32434638 doesn't seem to be mutated. Here are the mutated foci.Position 34807533 doesn't seem to be mutated. Here are the mutated foci.Position 34923043 doesn't seem to be mutated. Here are the mutated foci.Position 34976862 doesn't seem to be mutated. Here are the mutated foci.Position 34987678 doesn't seem to be mutated. Here are the mutated foci.Position 35001199 doesn't seem to be mutated. Here are the mutated foci.Position 35049116 doesn't seem to be mutated. Here are the mutated foci.Position 35078407 doesn't seem to be mutated. Here are the mutated foci.Position 35126251 doesn't seem to be mutated. Here are the mutated foci.Position 35154686 doesn't seem to be mutated. Here are the mutated foci.Position 35159895 doesn't seem to be mutated. Here are the mutated foci.Position 35305446 doesn't seem to be mutated. Here are the mutated foci.Position 35371184 doesn't seem to be mutated. Here are the mutated foci.Position 35425158 doesn't seem to be mutated. Here are the mutated foci.Position 35438214 doesn't seem to be mutated. Here are the mutated foci.Position 35585207 doesn't seem to be mutated. Here are the mutated foci.Position 35780533 doesn't seem to be mutated. Here are the mutated foci.Position 35784177 doesn't seem to be mutated. Here are the mutated foci.Position 35832721 doesn't seem to be mutated. Here are the mutated foci.Position 35873888 doesn't seem to be mutated. Here are the mutated foci.Position 35967648 doesn't seem to be mutated. Here are the mutated foci.Position 23788856 doesn't seem to be mutated. Here are the mutated foci.Position 23810171 doesn't seem to be mutated. Here are the mutated foci.Position 28726202 doesn't seem to be mutated. Here are the mutated foci.Position 29600475 doesn't seem to be mutated. Here are the mutated foci.Position 29665247 doesn't seem to be mutated. Here are the mutated foci.Position 29697566 doesn't seem to be mutated. Here are the mutated foci.Position 41090239 doesn't seem to be mutated. Here are the mutated foci.Position 41129018 doesn't seem to be mutated. Here are the mutated foci.Position 41183626 doesn't seem to be mutated. Here are the mutated foci.Position 14862149 doesn't seem to be mutated. Here are the mutated foci.Position 48681178 doesn't seem to be mutated. Here are the mutated foci.Position 77583521 doesn't seem to be mutated. Here are the mutated foci.Position 77600990 doesn't seem to be mutated. Here are the mutated foci.Position 77603369 doesn't seem to be mutated. Here are the mutated foci.Position 77609650 doesn't seem to be mutated. Here are the mutated foci.Position 77658210 doesn't seem to be mutated. Here are the mutated foci.Position 77671121 doesn't seem to be mutated. Here are the mutated foci.Position 77706742 doesn't seem to be mutated. Here are the mutated foci.Position 77710933 doesn't seem to be mutated. Here are the mutated foci.Position 77722369 doesn't seem to be mutated. Here are the mutated foci.Position 77754163 doesn't seem to be mutated. Here are the mutated foci.Position 124369240 doesn't seem to be mutated. Here are the mutated foci.Position 133417724 doesn't seem to be mutated. Here are the mutated foci.Position 133546399 doesn't seem to be mutated. Here are the mutated foci.Position 133624856 doesn't seem to be mutated. Here are the mutated foci.Position 133637416 doesn't seem to be mutated. Here are the mutated foci.Position 133645601 doesn't seem to be mutated. Here are the mutated foci.Position 133645987 doesn't seem to be mutated. Here are the mutated foci.Position 133650457 doesn't seem to be mutated. Here are the mutated foci.Position 133754195 doesn't seem to be mutated. Here are the mutated foci.Position 133775227 doesn't seem to be mutated. Here are the mutated foci.Position 133816365 doesn't seem to be mutated. Here are the mutated foci.Position 133848028 doesn't seem to be mutated. Here are the mutated foci.Position 133860370 doesn't seem to be mutated. Here are the mutated foci.Position 133872970 doesn't seem to be mutated. Here are the mutated foci.Position 133913054 doesn't seem to be mutated. Here are the mutated foci.Position 133970533 doesn't seem to be mutated. Here are the mutated foci.Position 147950082 doesn't seem to be mutated. Here are the mutated foci.Position 108280971 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 231971864 doesn't seem to be mutated. Here are the mutated foci.Position 261418 doesn't seem to be mutated. Here are the mutated foci.Position 121595429 doesn't seem to be mutated. Here are the mutated foci.Position 48335918 doesn't seem to be mutated. Here are the mutated foci.Position 50231680 doesn't seem to be mutated. Here are the mutated foci.Position 3860115 doesn't seem to be mutated. Here are the mutated foci.Position 231972644 doesn't seem to be mutated. Here are the mutated foci.Position 231972647 doesn't seem to be mutated. Here are the mutated foci.Position 87868417 doesn't seem to be mutated. Here are the mutated foci.Position 119228799 doesn't seem to be mutated. Here are the mutated foci.Position 50213698 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 29642052 doesn't seem to be mutated. Here are the mutated foci.Position 54270665 doesn't seem to be mutated. Here are the mutated foci.Position 37836199 doesn't seem to be mutated. Here are the mutated foci.Position 102638057 doesn't seem to be mutated. Here are the mutated foci.Position 110994122 doesn't seem to be mutated. Here are the mutated foci.Position 241496568 doesn't seem to be mutated. Here are the mutated foci.Position 47598980 doesn't seem to be mutated. Here are the mutated foci.Position 122233605 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 157256733 doesn't seem to be mutated. Here are the mutated foci.Position 104845434 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 36867007 doesn't seem to be mutated. Here are the mutated foci.Position 95368093 doesn't seem to be mutated. Here are the mutated foci.Position 533023 doesn't seem to be mutated. Here are the mutated foci.Position 112481154 doesn't seem to be mutated. Here are the mutated foci.Position 48388388 doesn't seem to be mutated. Here are the mutated foci.Position 38338529 doesn't seem to be mutated. Here are the mutated foci.Position 17226177 doesn't seem to be mutated. Here are the mutated foci.Position 61757994 doesn't seem to be mutated. Here are the mutated foci.Position 29643705 doesn't seem to be mutated. Here are the mutated foci.Position 77627232 doesn't seem to be mutated. Here are the mutated foci.Position 77720156 doesn't seem to be mutated. Here are the mutated foci.Position 133734655 doesn't seem to be mutated. Here are the mutated foci.Position 133983281 doesn't seem to be mutated. Here are the mutated foci.Position 54270650 doesn't seem to be mutated. Here are the mutated foci.Position 54270652 doesn't seem to be mutated. Here are the mutated foci.Position 138769380 doesn't seem to be mutated. Here are the mutated foci.Position 108880443 doesn't seem to be mutated. Here are the mutated foci.Position 32725394 doesn't seem to be mutated. Here are the mutated foci.Position 77569914 doesn't seem to be mutated. Here are the mutated foci.Position 10244864 doesn't seem to be mutated. Here are the mutated foci.Position 44820233 doesn't seem to be mutated. Here are the mutated foci.Position 10073350 doesn't seem to be mutated. Here are the mutated foci.Position 14158680 doesn't seem to be mutated. Here are the mutated foci.Position 177148213 doesn't seem to be mutated. Here are the mutated foci.Position 41966230 doesn't seem to be mutated. Here are the mutated foci.Position 142750071 doesn't seem to be mutated. Here are the mutated foci.Position 2078789 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 50177419 doesn't seem to be mutated. Here are the mutated foci.Position 61832539 doesn't seem to be mutated. Here are the mutated foci.Position 133892015 doesn't seem to be mutated. Here are the mutated foci.Position 36995375 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 119228814 doesn't seem to be mutated. Here are the mutated foci.Position 61830337 doesn't seem to be mutated. Here are the mutated foci.Position 65537615 doesn't seem to be mutated. Here are the mutated foci.Position 35480825 doesn't seem to be mutated. Here are the mutated foci.Position 169003350 doesn't seem to be mutated. Here are the mutated foci.Position 142751485 doesn't seem to be mutated. Here are the mutated foci.Position 112430739 doesn't seem to be mutated. Here are the mutated foci.Position 35738853 doesn't seem to be mutated. Here are the mutated foci.Position 35938172 doesn't seem to be mutated. Here are the mutated foci.Position 23825298 doesn't seem to be mutated. Here are the mutated foci.Position 77643930 doesn't seem to be mutated. Here are the mutated foci.Position 133377878 doesn't seem to be mutated. Here are the mutated foci.Position 179162860 doesn't seem to be mutated. Here are the mutated foci.Position 48326302 doesn't seem to be mutated. Here are the mutated foci.Position 95089112 doesn't seem to be mutated. Here are the mutated foci.Position 3839803 doesn't seem to be mutated. Here are the mutated foci.Position 40636394 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 133825739 doesn't seem to be mutated. Here are the mutated foci.Position 80768661 doesn't seem to be mutated. Here are the mutated foci.Position 118041948 doesn't seem to be mutated. Here are the mutated foci.Position 2195260 doesn't seem to be mutated. Here are the mutated foci.Position 68785023 doesn't seem to be mutated. Here are the mutated foci.Position 29649779 doesn't seem to be mutated. Here are the mutated foci.Position 77667176 doesn't seem to be mutated. Here are the mutated foci.Position 47460843 doesn't seem to be mutated. Here are the mutated foci.Position 144389881 doesn't seem to be mutated. Here are the mutated foci.Position 138771210 doesn't seem to be mutated. Here are the mutated foci.Position 50350468 doesn't seem to be mutated. Here are the mutated foci.Position 55137632 doesn't seem to be mutated. Here are the mutated foci.Position 55171127 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 96247627 doesn't seem to be mutated. Here are the mutated foci.Position 96316184 doesn't seem to be mutated. Here are the mutated foci.Position 116688346 doesn't seem to be mutated. Here are the mutated foci.Position 116688352 doesn't seem to be mutated. Here are the mutated foci.Position 116690361 doesn't seem to be mutated. Here are the mutated foci.Position 116691172 doesn't seem to be mutated. Here are the mutated foci.Position 116692504 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 290269 doesn't seem to be mutated. Here are the mutated foci.Position 87877557 doesn't seem to be mutated. Here are the mutated foci.Position 87877695 doesn't seem to be mutated. Here are the mutated foci.Position 121554334 doesn't seem to be mutated. Here are the mutated foci.Position 47228221 doesn't seem to be mutated. Here are the mutated foci.Position 32720096 doesn't seem to be mutated. Here are the mutated foci.Position 3757348 doesn't seem to be mutated. Here are the mutated foci.Position 7673534 doesn't seem to be mutated. Here are the mutated foci.Position 31355534 doesn't seem to be mutated. Here are the mutated foci.Position 43100658 doesn't seem to be mutated. Here are the mutated foci.Position 77689705 doesn't seem to be mutated. Here are the mutated foci.Position 133324577 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 80655284 doesn't seem to be mutated. Here are the mutated foci.Position 48427171 doesn't seem to be mutated. Here are the mutated foci.Position 31363989 doesn't seem to be mutated. Here are the mutated foci.Position 40622964 doesn't seem to be mutated. Here are the mutated foci.Position 51071282 doesn't seem to be mutated. Here are the mutated foci.Position 133380212 doesn't seem to be mutated. Here are the mutated foci.Position 193177316 doesn't seem to be mutated. Here are the mutated foci.Position 29606036 doesn't seem to be mutated. Here are the mutated foci.Position 148866518 doesn't seem to be mutated. Here are the mutated foci.Position 117915352 doesn't seem to be mutated. Here are the mutated foci.Position 43113619 doesn't seem to be mutated. Here are the mutated foci.Position 51071266 doesn't seem to be mutated. Here are the mutated foci.Position 77735708 doesn't seem to be mutated. Here are the mutated foci.Position 232155173 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 140731352 doesn't seem to be mutated. Here are the mutated foci.Position 29792800 doesn't seem to be mutated. Here are the mutated foci.Position 96147039 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 68840435 doesn't seem to be mutated. Here are the mutated foci.Position 10268512 doesn't seem to be mutated. Here are the mutated foci.Position 29578713 doesn't seem to be mutated. Here are the mutated foci.Position 47650738 doesn't seem to be mutated. Here are the mutated foci.Position 10084463 doesn't seem to be mutated. Here are the mutated foci.Position 10137934 doesn't seem to be mutated. Here are the mutated foci.Position 69814956 doesn't seem to be mutated. Here are the mutated foci.Position 122265006 doesn't seem to be mutated. Here are the mutated foci.Position 80693278 doesn't seem to be mutated. Here are the mutated foci.Position 132595760 doesn't seem to be mutated. Here are the mutated foci.Position 132614831 doesn't seem to be mutated. Here are the mutated foci.Position 26084012 doesn't seem to be mutated. Here are the mutated foci.Position 42115643 doesn't seem to be mutated. Here are the mutated foci.Position 93146796 doesn't seem to be mutated. Here are the mutated foci.Position 124898754 doesn't seem to be mutated. Here are the mutated foci.Position 142757948 doesn't seem to be mutated. Here are the mutated foci.Position 21808422 doesn't seem to be mutated. Here are the mutated foci.Position 95201210 doesn't seem to be mutated. Here are the mutated foci.Position 132655314 doesn't seem to be mutated. Here are the mutated foci.Position 48366192 doesn't seem to be mutated. Here are the mutated foci.Position 50224600 doesn't seem to be mutated. Here are the mutated foci.Position 95156597 doesn't seem to be mutated. Here are the mutated foci.Position 61829422 doesn't seem to be mutated. Here are the mutated foci.Position 77515425 doesn't seem to be mutated. Here are the mutated foci.Position 77643930 doesn't seem to be mutated. Here are the mutated foci.Position 133594861 doesn't seem to be mutated. Here are the mutated foci.Position 168999280 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 232153806 doesn't seem to be mutated. Here are the mutated foci.Position 1283479 doesn't seem to be mutated. Here are the mutated foci.Position 42002056 doesn't seem to be mutated. Here are the mutated foci.Position 96140652 doesn't seem to be mutated. Here are the mutated foci.Position 110996530 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 142749506 doesn't seem to be mutated. Here are the mutated foci.Position 119278164 doesn't seem to be mutated. Here are the mutated foci.Position 50180533 doesn't seem to be mutated. Here are the mutated foci.Position 68806123 doesn't seem to be mutated. Here are the mutated foci.Position 124874764 doesn't seem to be mutated. Here are the mutated foci.Position 38359347 doesn't seem to be mutated. Here are the mutated foci.Position 32409752 doesn't seem to be mutated. Here are the mutated foci.Position 35001289 doesn't seem to be mutated. Here are the mutated foci.Position 29644406 doesn't seem to be mutated. Here are the mutated foci.Position 10333418 doesn't seem to be mutated. Here are the mutated foci.Position 10369761 doesn't seem to be mutated. Here are the mutated foci.Position 47433589 doesn't seem to be mutated. Here are the mutated foci.Position 122184543 doesn't seem to be mutated. Here are the mutated foci.Position 102536597 doesn't seem to be mutated. Here are the mutated foci.Position 121488828 doesn't seem to be mutated. Here are the mutated foci.Position 530474 doesn't seem to be mutated. Here are the mutated foci.Position 11821574 doesn't seem to be mutated. Here are the mutated foci.Position 48320835 doesn't seem to be mutated. Here are the mutated foci.Position 89265374 doesn't seem to be mutated. Here are the mutated foci.Position 58720935 doesn't seem to be mutated. Here are the mutated foci.Position 58880039 doesn't seem to be mutated. Here are the mutated foci.Position 34811003 doesn't seem to be mutated. Here are the mutated foci.Position 29672854 doesn't seem to be mutated. Here are the mutated foci.Position 133882536 doesn't seem to be mutated. Here are the mutated foci.Position 47714072 doesn't seem to be mutated. Here are the mutated foci.Position 177161680 doesn't seem to be mutated. Here are the mutated foci.Position 124823337 doesn't seem to be mutated. Here are the mutated foci.Position 140753335 doesn't seem to be mutated. Here are the mutated foci.Position 21843307 doesn't seem to be mutated. Here are the mutated foci.Position 36894761 doesn't seem to be mutated. Here are the mutated foci.Position 97675118 doesn't seem to be mutated. Here are the mutated foci.Position 62039411 doesn't seem to be mutated. Here are the mutated foci.Position 14846831 doesn't seem to be mutated. Here are the mutated foci.Position 168975506 doesn't seem to be mutated. Here are the mutated foci.Position 132619903 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 12723908 doesn't seem to be mutated. Here are the mutated foci.Position 77918019 doesn't seem to be mutated. Here are the mutated foci.Position 80691959 doesn't seem to be mutated. Here are the mutated foci.Position 112477532 doesn't seem to be mutated. Here are the mutated foci.Position 32741653 doesn't seem to be mutated. Here are the mutated foci.Position 32743765 doesn't seem to be mutated. Here are the mutated foci.Position 23688132 doesn't seem to be mutated. Here are the mutated foci.Position 29296723 doesn't seem to be mutated. Here are the mutated foci.Position 12652436 doesn't seem to be mutated. Here are the mutated foci.Position 179222053 doesn't seem to be mutated. Here are the mutated foci.Position 124823337 doesn't seem to be mutated. Here are the mutated foci.Position 95505869 doesn't seem to be mutated. Here are the mutated foci.Position 102536597 doesn't seem to be mutated. Here are the mutated foci.Position 102537415 doesn't seem to be mutated. Here are the mutated foci.Position 40697378 doesn't seem to be mutated. Here are the mutated foci.Position 40697382 doesn't seem to be mutated. Here are the mutated foci.Position 31149278 doesn't seem to be mutated. Here are the mutated foci.Position 41089555 doesn't seem to be mutated. Here are the mutated foci.Position 41112433 doesn't seem to be mutated. Here are the mutated foci.Position 133731430 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 44819324 doesn't seem to be mutated. Here are the mutated foci.Position 29252831 doesn't seem to be mutated. Here are the mutated foci.Position 47426873 doesn't seem to be mutated. Here are the mutated foci.Position 58217068 doesn't seem to be mutated. Here are the mutated foci.Position 96255538 doesn't seem to be mutated. Here are the mutated foci.Position 232234090 doesn't seem to be mutated. Here are the mutated foci.Position 10074739 doesn't seem to be mutated. Here are the mutated foci.Position 69789913 doesn't seem to be mutated. Here are the mutated foci.Position 179202102 doesn't seem to be mutated. Here are the mutated foci.Position 54285260 doesn't seem to be mutated. Here are the mutated foci.Position 132560077 doesn't seem to be mutated. Here are the mutated foci.Position 6002246 doesn't seem to be mutated. Here are the mutated foci.Position 42010595 doesn't seem to be mutated. Here are the mutated foci.Position 55191658 doesn't seem to be mutated. Here are the mutated foci.Position 96146477 doesn't seem to be mutated. Here are the mutated foci.Position 148816405 doesn't seem to be mutated. Here are the mutated foci.Position 89936509 doesn't seem to be mutated. Here are the mutated foci.Position 117892418 doesn't seem to be mutated. Here are the mutated foci.Position 293874 doesn't seem to be mutated. Here are the mutated foci.Position 19382323 doesn't seem to be mutated. Here are the mutated foci.Position 61999200 doesn't seem to be mutated. Here are the mutated foci.Position 87907021 doesn't seem to be mutated. Here are the mutated foci.Position 87937113 doesn't seem to be mutated. Here are the mutated foci.Position 87943403 doesn't seem to be mutated. Here are the mutated foci.Position 32423035 doesn't seem to be mutated. Here are the mutated foci.Position 11654720 doesn't seem to be mutated. Here are the mutated foci.Position 11865527 doesn't seem to be mutated. Here are the mutated foci.Position 32328267 doesn't seem to be mutated. Here are the mutated foci.Position 32368324 doesn't seem to be mutated. Here are the mutated foci.Position 48348848 doesn't seem to be mutated. Here are the mutated foci.Position 102846575 doesn't seem to be mutated. Here are the mutated foci.Position 90769521 doesn't seem to be mutated. Here are the mutated foci.Position 90799282 doesn't seem to be mutated. Here are the mutated foci.Position 68827528 doesn't seem to be mutated. Here are the mutated foci.Position 43063066 doesn't seem to be mutated. Here are the mutated foci.Position 43063920 doesn't seem to be mutated. Here are the mutated foci.Position 11006049 doesn't seem to be mutated. Here are the mutated foci.Position 11027873 doesn't seem to be mutated. Here are the mutated foci.Position 58869467 doesn't seem to be mutated. Here are the mutated foci.Position 35461745 doesn't seem to be mutated. Here are the mutated foci.Position 35911675 doesn't seem to be mutated. Here are the mutated foci.Position 28702276 doesn't seem to be mutated. Here are the mutated foci.Position 133953129 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 158578381 doesn't seem to be mutated. Here are the mutated foci.Position 178156498 doesn't seem to be mutated. Here are the mutated foci.Position 2078789 doesn't seem to be mutated. Here are the mutated foci.Position 87917230 doesn't seem to be mutated. Here are the mutated foci.Position 89813051 doesn't seem to be mutated. Here are the mutated foci.Position 59059439 doesn't seem to be mutated. Here are the mutated foci.Position 51071282 doesn't seem to be mutated. Here are the mutated foci.Position 23801053 doesn't seem to be mutated. Here are the mutated foci.Position 47743754 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 50405467 doesn't seem to be mutated. Here are the mutated foci.Position 43100214 doesn't seem to be mutated. Here are the mutated foci.Position 59002027 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 54694243 doesn't seem to be mutated. Here are the mutated foci.Position 55041411 doesn't seem to be mutated. Here are the mutated foci.Position 116699512 doesn't seem to be mutated. Here are the mutated foci.Position 304842 doesn't seem to be mutated. Here are the mutated foci.Position 2085650 doesn't seem to be mutated. Here are the mutated foci.Position 32424549 doesn't seem to be mutated. Here are the mutated foci.Position 47218952 doesn't seem to be mutated. Here are the mutated foci.Position 41153930 doesn't seem to be mutated. Here are the mutated foci.Position 133641176 doesn't seem to be mutated. Here are the mutated foci.Position 69878412 doesn't seem to be mutated. Here are the mutated foci.Position 51071266 doesn't seem to be mutated. Here are the mutated foci.Position 155900053 doesn't seem to be mutated. Here are the mutated foci.Position 29440639 doesn't seem to be mutated. Here are the mutated foci.Position 58170426 doesn't seem to be mutated. Here are the mutated foci.Position 10149772 doesn't seem to be mutated. Here are the mutated foci.Position 14145600 doesn't seem to be mutated. Here are the mutated foci.Position 14160179 doesn't seem to be mutated. Here are the mutated foci.Position 69759785 doesn't seem to be mutated. Here are the mutated foci.Position 128485676 doesn't seem to be mutated. Here are the mutated foci.Position 54287733 doesn't seem to be mutated. Here are the mutated foci.Position 54672476 doesn't seem to be mutated. Here are the mutated foci.Position 80807557 doesn't seem to be mutated. Here are the mutated foci.Position 112754743 doesn't seem to be mutated. Here are the mutated foci.Position 138670650 doesn't seem to be mutated. Here are the mutated foci.Position 138864530 doesn't seem to be mutated. Here are the mutated foci.Position 116710703 doesn't seem to be mutated. Here are the mutated foci.Position 124875421 doesn't seem to be mutated. Here are the mutated foci.Position 124898754 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 140854492 doesn't seem to be mutated. Here are the mutated foci.Position 89982395 doesn't seem to be mutated. Here are the mutated foci.Position 385252 doesn't seem to be mutated. Here are the mutated foci.Position 2187118 doesn't seem to be mutated. Here are the mutated foci.Position 95493037 doesn't seem to be mutated. Here are the mutated foci.Position 61929225 doesn't seem to be mutated. Here are the mutated foci.Position 86827468 doesn't seem to be mutated. Here are the mutated foci.Position 89003281 doesn't seem to be mutated. Here are the mutated foci.Position 110997529 doesn't seem to be mutated. Here are the mutated foci.Position 32437749 doesn't seem to be mutated. Here are the mutated foci.Position 47210222 doesn't seem to be mutated. Here are the mutated foci.Position 112509299 doesn't seem to be mutated. Here are the mutated foci.Position 45188199 doesn't seem to be mutated. Here are the mutated foci.Position 45188208 doesn't seem to be mutated. Here are the mutated foci.Position 50156959 doesn't seem to be mutated. Here are the mutated foci.Position 50220244 doesn't seem to be mutated. Here are the mutated foci.Position 43089715 doesn't seem to be mutated. Here are the mutated foci.Position 59019185 doesn't seem to be mutated. Here are the mutated foci.Position 32409752 doesn't seem to be mutated. Here are the mutated foci.Position 34927487 doesn't seem to be mutated. Here are the mutated foci.Position 35121204 doesn't seem to be mutated. Here are the mutated foci.Position 35926318 doesn't seem to be mutated. Here are the mutated foci.Position 77594601 doesn't seem to be mutated. Here are the mutated foci.Position 77702730 doesn't seem to be mutated. Here are the mutated foci.Position 124353484 doesn't seem to be mutated. Here are the mutated foci.Position 133960697 doesn't seem to be mutated. Here are the mutated foci.Position 104854603 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 144467422 doesn't seem to be mutated. Here are the mutated foci.Position 232194575 doesn't seem to be mutated. Here are the mutated foci.Position 112811848 doesn't seem to be mutated. Here are the mutated foci.Position 132596129 doesn't seem to be mutated. Here are the mutated foci.Position 55033000 doesn't seem to be mutated. Here are the mutated foci.Position 148822183 doesn't seem to be mutated. Here are the mutated foci.Position 403961 doesn't seem to be mutated. Here are the mutated foci.Position 42369835 doesn't seem to be mutated. Here are the mutated foci.Position 43060254 doesn't seem to be mutated. Here are the mutated foci.Position 10957993 doesn't seem to be mutated. Here are the mutated foci.Position 34930700 doesn't seem to be mutated. Here are the mutated foci.Position 35636526 doesn't seem to be mutated. Here are the mutated foci.Position 77739326 doesn't seem to be mutated. Here are the mutated foci.Position 154777005 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 118041948 doesn't seem to be mutated. Here are the mutated foci.Position 95424399 doesn't seem to be mutated. Here are the mutated foci.Position 11074580 doesn't seem to be mutated. Here are the mutated foci.Position 35385950 doesn't seem to be mutated. Here are the mutated foci.Position 1285259 doesn't seem to be mutated. Here are the mutated foci.Position 50376483 doesn't seem to be mutated. Here are the mutated foci.Position 21974720 doesn't seem to be mutated. Here are the mutated foci.Position 3865945 doesn't seem to be mutated. Here are the mutated foci.Position 68833709 doesn't seem to be mutated. Here are the mutated foci.Position 58865544 doesn't seem to be mutated. Here are the mutated foci.Position 41109712 doesn't seem to be mutated. Here are the mutated foci.Position 41163639 doesn't seem to be mutated. Here are the mutated foci.Position 77737099 doesn't seem to be mutated. Here are the mutated foci.Position 69870163 doesn't seem to be mutated. Here are the mutated foci.Position 140846898 doesn't seem to be mutated. Here are the mutated foci.Position 117813533 doesn't seem to be mutated. Here are the mutated foci.Position 251601 doesn't seem to be mutated. Here are the mutated foci.Position 21855734 doesn't seem to be mutated. Here are the mutated foci.Position 110948939 doesn't seem to be mutated. Here are the mutated foci.Position 110971265 doesn't seem to be mutated. Here are the mutated foci.Position 42380618 doesn't seem to be mutated. Here are the mutated foci.Position 32380174 doesn't seem to be mutated. Here are the mutated foci.Position 14175097 doesn't seem to be mutated. Here are the mutated foci.Position 138769380 doesn't seem to be mutated. Here are the mutated foci.Position 95144134 doesn't seem to be mutated. Here are the mutated foci.Position 108228870 doesn't seem to be mutated. Here are the mutated foci.Position 31290218 doesn't seem to be mutated. Here are the mutated foci.Position 32405911 doesn't seem to be mutated. Here are the mutated foci.Position 29253845 doesn't seem to be mutated. Here are the mutated foci.Position 157225467 doesn't seem to be mutated. Here are the mutated foci.Position 142754800 doesn't seem to be mutated. Here are the mutated foci.Position 45374312 doesn't seem to be mutated. Here are the mutated foci.Position 28683053 doesn't seem to be mutated. Here are the mutated foci.Position 132612832 doesn't seem to be mutated. Here are the mutated foci.Position 177295541 doesn't seem to be mutated. Here are the mutated foci.Position 42191656 doesn't seem to be mutated. Here are the mutated foci.Position 50167868 doesn't seem to be mutated. Here are the mutated foci.Position 43108150 doesn't seem to be mutated. Here are the mutated foci.Position 133785840 doesn't seem to be mutated. Here are the mutated foci.Position 154773794 doesn't seem to be mutated. Here are the mutated foci.Position 47442368 doesn't seem to be mutated. Here are the mutated foci.Position 232186039 doesn't seem to be mutated. Here are the mutated foci.Position 69870260 doesn't seem to be mutated. Here are the mutated foci.Position 122282766 doesn't seem to be mutated. Here are the mutated foci.Position 54732567 doesn't seem to be mutated. Here are the mutated foci.Position 468958 doesn't seem to be mutated. Here are the mutated foci.Position 104793975 doesn't seem to be mutated. Here are the mutated foci.Position 7673802 doesn't seem to be mutated. Here are the mutated foci.Position 7676040 doesn't seem to be mutated. Here are the mutated foci.Position 35097518 doesn't seem to be mutated. Here are the mutated foci.Position 58896744 doesn't seem to be mutated. Here are the mutated foci.Position 77523266 doesn't seem to be mutated. Here are the mutated foci.Position 77552642 doesn't seem to be mutated. Here are the mutated foci.Position 77554630 doesn't seem to be mutated. Here are the mutated foci.Position 77577394 doesn't seem to be mutated. Here are the mutated foci.Position 77690844 doesn't seem to be mutated. Here are the mutated foci.Position 77731326 doesn't seem to be mutated. Here are the mutated foci.Position 77765490 doesn't seem to be mutated. Here are the mutated foci.Position 77777569 doesn't seem to be mutated. Here are the mutated foci.Position 77786402 doesn't seem to be mutated. Here are the mutated foci.Position 77790910 doesn't seem to be mutated. Here are the mutated foci.Position 133630095 doesn't seem to be mutated. Here are the mutated foci.Position 29354017 doesn't seem to be mutated. Here are the mutated foci.Position 29850904 doesn't seem to be mutated. Here are the mutated foci.Position 232068528 doesn't seem to be mutated. Here are the mutated foci.Position 142753625 doesn't seem to be mutated. Here are the mutated foci.Position 142757379 doesn't seem to be mutated. Here are the mutated foci.Position 95357187 doesn't seem to be mutated. Here are the mutated foci.Position 132927261 doesn't seem to be mutated. Here are the mutated foci.Position 121598523 doesn't seem to be mutated. Here are the mutated foci.Position 89240944 doesn't seem to be mutated. Here are the mutated foci.Position 90763519 doesn't seem to be mutated. Here are the mutated foci.Position 35921822 doesn't seem to be mutated. Here are the mutated foci.Position 77731599 doesn't seem to be mutated. Here are the mutated foci.Position 29252831 doesn't seem to be mutated. Here are the mutated foci.Position 69789913 doesn't seem to be mutated. Here are the mutated foci.Position 56951869 doesn't seem to be mutated. Here are the mutated foci.Position 138785582 doesn't seem to be mutated. Here are the mutated foci.Position 177219193 doesn't seem to be mutated. Here are the mutated foci.Position 148858796 doesn't seem to be mutated. Here are the mutated foci.Position 95477700 doesn't seem to be mutated. Here are the mutated foci.Position 78031191 doesn't seem to be mutated. Here are the mutated foci.Position 94373931 doesn't seem to be mutated. Here are the mutated foci.Position 43067523 doesn't seem to be mutated. Here are the mutated foci.Position 68511859 doesn't seem to be mutated. Here are the mutated foci.Position 34955245 doesn't seem to be mutated. Here are the mutated foci.Position 133900264 doesn't seem to be mutated. Here are the mutated foci.Position 133985254 doesn't seem to be mutated. Here are the mutated foci.Position 50341834 doesn't seem to be mutated. Here are the mutated foci.Position 112477532 doesn't seem to be mutated. Here are the mutated foci.Position 36519724 doesn't seem to be mutated. Here are the mutated foci.Position 11045319 doesn't seem to be mutated. Here are the mutated foci.Position 193211432 doesn't seem to be mutated. Here are the mutated foci.Position 47632801 doesn't seem to be mutated. Here are the mutated foci.Position 168949227 doesn't seem to be mutated. Here are the mutated foci.Position 50344926 doesn't seem to be mutated. Here are the mutated foci.Position 50355115 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 2027305 doesn't seem to be mutated. Here are the mutated foci.Position 132644687 doesn't seem to be mutated. Here are the mutated foci.Position 65101586 doesn't seem to be mutated. Here are the mutated foci.Position 82535087 doesn't seem to be mutated. Here are the mutated foci.Position 7674945 doesn't seem to be mutated. Here are the mutated foci.Position 161340519 doesn't seem to be mutated. Here are the mutated foci.Position 47758726 doesn't seem to be mutated. Here are the mutated foci.Position 144363201 doesn't seem to be mutated. Here are the mutated foci.Position 1252346 doesn't seem to be mutated. Here are the mutated foci.Position 6004978 doesn't seem to be mutated. Here are the mutated foci.Position 93101513 doesn't seem to be mutated. Here are the mutated foci.Position 117938924 doesn't seem to be mutated. Here are the mutated foci.Position 21802469 doesn't seem to be mutated. Here are the mutated foci.Position 61902704 doesn't seem to be mutated. Here are the mutated foci.Position 32377749 doesn't seem to be mutated. Here are the mutated foci.Position 38287421 doesn't seem to be mutated. Here are the mutated foci.Position 68776276 doesn't seem to be mutated. Here are the mutated foci.Position 31143443 doesn't seem to be mutated. Here are the mutated foci.Position 59083162 doesn't seem to be mutated. Here are the mutated foci.Position 11030751 doesn't seem to be mutated. Here are the mutated foci.Position 11033309 doesn't seem to be mutated. Here are the mutated foci.Position 11033437 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 34952319 doesn't seem to be mutated. Here are the mutated foci.Position 35381017 doesn't seem to be mutated. Here are the mutated foci.Position 77781573 doesn't seem to be mutated. Here are the mutated foci.Position 50302808 doesn't seem to be mutated. Here are the mutated foci.Position 124834313 doesn't seem to be mutated. Here are the mutated foci.Position 140752675 doesn't seem to be mutated. Here are the mutated foci.Position 87876390 doesn't seem to be mutated. Here are the mutated foci.Position 108345818 doesn't seem to be mutated. Here are the mutated foci.Position 96161494 doesn't seem to be mutated. Here are the mutated foci.Position 35561239 doesn't seem to be mutated. Here are the mutated foci.Position 157173425 doesn't seem to be mutated. Here are the mutated foci.Position 58992323 doesn't seem to be mutated. Here are the mutated foci.Position 77772643 doesn't seem to be mutated. Here are the mutated foci.Position 124369240 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.Position 155898341 doesn't seem to be mutated. Here are the mutated foci.Position 39035193 doesn't seem to be mutated. Here are the mutated foci.Position 47479449 doesn't seem to be mutated. Here are the mutated foci.Position 127292471 doesn't seem to be mutated. Here are the mutated foci.Position 132648757 doesn't seem to be mutated. Here are the mutated foci.Position 116781240 doesn't seem to be mutated. Here are the mutated foci.Position 110973881 doesn't seem to be mutated. Here are the mutated foci.Position 50148151 doesn't seem to be mutated. Here are the mutated foci.Position 133662007 doesn't seem to be mutated. Here are the mutated foci.Position 193224214 doesn't seem to be mutated. Here are the mutated foci.Position 50319329 doesn't seem to be mutated. Here are the mutated foci.Position 3837257 doesn't seem to be mutated. Here are the mutated foci.Position 133299938 doesn't seem to be mutated. Here are the mutated foci.Position 39120276 doesn't seem to be mutated. Here are the mutated foci.Position 50307802 doesn't seem to be mutated. Here are the mutated foci.Position 50164632 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 2103662 doesn't seem to be mutated. Here are the mutated foci.Position 108285611 doesn't seem to be mutated. Here are the mutated foci.Position 11821126 doesn't seem to be mutated. Here are the mutated foci.Position 25245350 doesn't seem to be mutated. Here are the mutated foci.Position 35072210 doesn't seem to be mutated. Here are the mutated foci.Position 10232302 doesn't seem to be mutated. Here are the mutated foci.Position 161366035 doesn't seem to be mutated. Here are the mutated foci.Position 47647201 doesn't seem to be mutated. Here are the mutated foci.Position 214754353 doesn't seem to be mutated. Here are the mutated foci.Position 1259342 doesn't seem to be mutated. Here are the mutated foci.Position 35451422 doesn't seem to be mutated. Here are the mutated foci.Position 55154129 doesn't seem to be mutated. Here are the mutated foci.Position 116778931 doesn't seem to be mutated. Here are the mutated foci.Position 118047549 doesn't seem to be mutated. Here are the mutated foci.Position 86914152 doesn't seem to be mutated. Here are the mutated foci.Position 86914171 doesn't seem to be mutated. Here are the mutated foci.Position 119213717 doesn't seem to be mutated. Here are the mutated foci.Position 48546138 doesn't seem to be mutated. Here are the mutated foci.Position 50122359 doesn't seem to be mutated. Here are the mutated foci.Position 68777634 doesn't seem to be mutated. Here are the mutated foci.Position 7675088 doesn't seem to be mutated. Here are the mutated foci.Position 61711385 doesn't seem to be mutated. Here are the mutated foci.Position 35295664 doesn't seem to be mutated. Here are the mutated foci.Position 35687227 doesn't seem to be mutated. Here are the mutated foci.Position 35996538 doesn't seem to be mutated. Here are the mutated foci.Position 29642475 doesn't seem to be mutated. Here are the mutated foci.Position 133358907 doesn't seem to be mutated. Here are the mutated foci.Position 168958149 doesn't seem to be mutated. Here are the mutated foci.Position 69905399 doesn't seem to be mutated. Here are the mutated foci.Position 54694243 doesn't seem to be mutated. Here are the mutated foci.Position 96252585 doesn't seem to be mutated. Here are the mutated foci.Position 140729460 doesn't seem to be mutated. Here are the mutated foci.Position 95115757 doesn't seem to be mutated. Here are the mutated foci.Position 2883615 doesn't seem to be mutated. Here are the mutated foci.Position 11728638 doesn't seem to be mutated. Here are the mutated foci.Position 31336597 doesn't seem to be mutated. Here are the mutated foci.Position 41096162 doesn't seem to be mutated. Here are the mutated foci.Position 232149194 doesn't seem to be mutated. Here are the mutated foci.Position 69876779 doesn't seem to be mutated. Here are the mutated foci.Position 96169023 doesn't seem to be mutated. Here are the mutated foci.Position 142750886 doesn't seem to be mutated. Here are the mutated foci.Position 102592581 doesn't seem to be mutated. Here are the mutated foci.Position 119228814 doesn't seem to be mutated. Here are the mutated foci.Position 42353262 doesn't seem to be mutated. Here are the mutated foci.Position 10208649 doesn't seem to be mutated. Here are the mutated foci.Position 10209645 doesn't seem to be mutated. Here are the mutated foci.Position 10209820 doesn't seem to be mutated. Here are the mutated foci.Position 10214207 doesn't seem to be mutated. Here are the mutated foci.Position 10222780 doesn't seem to be mutated. Here are the mutated foci.Position 10223123 doesn't seem to be mutated. Here are the mutated foci.Position 10226787 doesn't seem to be mutated. Here are the mutated foci.Position 10229309 doesn't seem to be mutated. Here are the mutated foci.Position 10232301 doesn't seem to be mutated. Here are the mutated foci.Position 10235040 doesn't seem to be mutated. Here are the mutated foci.Position 10236831 doesn't seem to be mutated. Here are the mutated foci.Position 10241754 doesn't seem to be mutated. Here are the mutated foci.Position 10248349 doesn't seem to be mutated. Here are the mutated foci.Position 10250661 doesn't seem to be mutated. Here are the mutated foci.Position 10255965 doesn't seem to be mutated. Here are the mutated foci.Position 10261841 doesn't seem to be mutated. Here are the mutated foci.Position 10278370 doesn't seem to be mutated. Here are the mutated foci.Position 10282721 doesn't seem to be mutated. Here are the mutated foci.Position 10287358 doesn't seem to be mutated. Here are the mutated foci.Position 10287514 doesn't seem to be mutated. Here are the mutated foci.Position 10290862 doesn't seem to be mutated. Here are the mutated foci.Position 10291436 doesn't seem to be mutated. Here are the mutated foci.Position 10302600 doesn't seem to be mutated. Here are the mutated foci.Position 10303452 doesn't seem to be mutated. Here are the mutated foci.Position 10303594 doesn't seem to be mutated. Here are the mutated foci.Position 10303938 doesn't seem to be mutated. Here are the mutated foci.Position 10304373 doesn't seem to be mutated. Here are the mutated foci.Position 10308186 doesn't seem to be mutated. Here are the mutated foci.Position 10309895 doesn't seem to be mutated. Here are the mutated foci.Position 10310875 doesn't seem to be mutated. Here are the mutated foci.Position 10311358 doesn't seem to be mutated. Here are the mutated foci.Position 10311398 doesn't seem to be mutated. Here are the mutated foci.Position 10313506 doesn't seem to be mutated. Here are the mutated foci.Position 10314042 doesn't seem to be mutated. Here are the mutated foci.Position 10316902 doesn't seem to be mutated. Here are the mutated foci.Position 10318644 doesn't seem to be mutated. Here are the mutated foci.Position 10323109 doesn't seem to be mutated. Here are the mutated foci.Position 10323990 doesn't seem to be mutated. Here are the mutated foci.Position 10331463 doesn't seem to be mutated. Here are the mutated foci.Position 10344194 doesn't seem to be mutated. Here are the mutated foci.Position 10346831 doesn't seem to be mutated. Here are the mutated foci.Position 10347696 doesn't seem to be mutated. Here are the mutated foci.Position 10348009 doesn't seem to be mutated. Here are the mutated foci.Position 10351020 doesn't seem to be mutated. Here are the mutated foci.Position 10353257 doesn't seem to be mutated. Here are the mutated foci.Position 10361786 doesn't seem to be mutated. Here are the mutated foci.Position 10362665 doesn't seem to be mutated. Here are the mutated foci.Position 10369928 doesn't seem to be mutated. Here are the mutated foci.Position 10372979 doesn't seem to be mutated. Here are the mutated foci.Position 10373432 doesn't seem to be mutated. Here are the mutated foci.Position 10375486 doesn't seem to be mutated. Here are the mutated foci.Position 10376082 doesn't seem to be mutated. Here are the mutated foci.Position 10379562 doesn't seem to be mutated. Here are the mutated foci.Position 10382560 doesn't seem to be mutated. Here are the mutated foci.Position 17027047 doesn't seem to be mutated. Here are the mutated foci.Position 17031423 doesn't seem to be mutated. Here are the mutated foci.Position 17034346 doesn't seem to be mutated. Here are the mutated foci.Position 17040800 doesn't seem to be mutated. Here are the mutated foci.Position 17050444 doesn't seem to be mutated. Here are the mutated foci.Position 17058410 doesn't seem to be mutated. Here are the mutated foci.Position 23688442 doesn't seem to be mutated. Here are the mutated foci.Position 23690465 doesn't seem to be mutated. Here are the mutated foci.Position 23690762 doesn't seem to be mutated. Here are the mutated foci.Position 23691417 doesn't seem to be mutated. Here are the mutated foci.Position 23695145 doesn't seem to be mutated. Here are the mutated foci.Position 23701444 doesn't seem to be mutated. Here are the mutated foci.Position 23701677 doesn't seem to be mutated. Here are the mutated foci.Position 43334052 doesn't seem to be mutated. Here are the mutated foci.Position 43334590 doesn't seem to be mutated. Here are the mutated foci.Position 43335158 doesn't seem to be mutated. Here are the mutated foci.Position 43343427 doesn't seem to be mutated. Here are the mutated foci.Position 43343862 doesn't seem to be mutated. Here are the mutated foci.Position 43347852 doesn't seem to be mutated. Here are the mutated foci.Position 43350736 doesn't seem to be mutated. Here are the mutated foci.Position 44822075 doesn't seem to be mutated. Here are the mutated foci.Position 44822544 doesn't seem to be mutated. Here are the mutated foci.Position 44826138 doesn't seem to be mutated. Here are the mutated foci.Position 44828530 doesn't seem to be mutated. Here are the mutated foci.Position 44832671 doesn't seem to be mutated. Here are the mutated foci.Position 44833841 doesn't seem to be mutated. Here are the mutated foci.Position 44836532 doesn't seem to be mutated. Here are the mutated foci.Position 44837170 doesn't seem to be mutated. Here are the mutated foci.Position 44840508 doesn't seem to be mutated. Here are the mutated foci.Position 44840937 doesn't seem to be mutated. Here are the mutated foci.Position 44841965 doesn't seem to be mutated. Here are the mutated foci.Position 44842366 doesn't seem to be mutated. Here are the mutated foci.Position 44842425 doesn't seem to be mutated. Here are the mutated foci.Position 44843587 doesn't seem to be mutated. Here are the mutated foci.Position 45014837 doesn't seem to be mutated. Here are the mutated foci.Position 45330031 doesn't seem to be mutated. Here are the mutated foci.Position 45332811 doesn't seem to be mutated. Here are the mutated foci.Position 45337739 doesn't seem to be mutated. Here are the mutated foci.Position 92829993 doesn't seem to be mutated. Here are the mutated foci.Position 92831296 doesn't seem to be mutated. Here are the mutated foci.Position 92839745 doesn't seem to be mutated. Here are the mutated foci.Position 114701287 doesn't seem to be mutated. Here are the mutated foci.Position 114701411 doesn't seem to be mutated. Here are the mutated foci.Position 114702377 doesn't seem to be mutated. Here are the mutated foci.Position 114707480 doesn't seem to be mutated. Here are the mutated foci.Position 114707684 doesn't seem to be mutated. Here are the mutated foci.Position 114710120 doesn't seem to be mutated. Here are the mutated foci.Position 154275667 doesn't seem to be mutated. Here are the mutated foci.Position 154278847 doesn't seem to be mutated. Here are the mutated foci.Position 154279857 doesn't seem to be mutated. Here are the mutated foci.Position 155232422 doesn't seem to be mutated. Here are the mutated foci.Position 155232934 doesn't seem to be mutated. Here are the mutated foci.Position 155235193 doesn't seem to be mutated. Here are the mutated foci.Position 155239245 doesn't seem to be mutated. Here are the mutated foci.Position 155241676 doesn't seem to be mutated. Here are the mutated foci.Position 155242800 doesn't seem to be mutated. Here are the mutated foci.Position 155896123 doesn't seem to be mutated. Here are the mutated foci.Position 155900689 doesn't seem to be mutated. Here are the mutated foci.Position 155901172 doesn't seem to be mutated. Here are the mutated foci.Position 155902408 doesn't seem to be mutated. Here are the mutated foci.Position 155903325 doesn't seem to be mutated. Here are the mutated foci.Position 155908070 doesn't seem to be mutated. Here are the mutated foci.Position 155909246 doesn't seem to be mutated. Here are the mutated foci.Position 155909599 doesn't seem to be mutated. Here are the mutated foci.Position 155909908 doesn't seem to be mutated. Here are the mutated foci.Position 156821911 doesn't seem to be mutated. Here are the mutated foci.Position 156862723 doesn't seem to be mutated. Here are the mutated foci.Position 156864126 doesn't seem to be mutated. Here are the mutated foci.Position 156872186 doesn't seem to be mutated. Here are the mutated foci.Position 156874507 doesn't seem to be mutated. Here are the mutated foci.Position 156879636 doesn't seem to be mutated. Here are the mutated foci.Position 156885840 doesn't seem to be mutated. Here are the mutated foci.Position 161312129 doesn't seem to be mutated. Here are the mutated foci.Position 161313002 doesn't seem to be mutated. Here are the mutated foci.Position 161313057 doesn't seem to be mutated. Here are the mutated foci.Position 161314586 doesn't seem to be mutated. Here are the mutated foci.Position 161318863 doesn't seem to be mutated. Here are the mutated foci.Position 161321117 doesn't seem to be mutated. Here are the mutated foci.Position 161322943 doesn't seem to be mutated. Here are the mutated foci.Position 161323156 doesn't seem to be mutated. Here are the mutated foci.Position 161323618 doesn't seem to be mutated. Here are the mutated foci.Position 161323986 doesn't seem to be mutated. Here are the mutated foci.Position 161325123 doesn't seem to be mutated. Here are the mutated foci.Position 161326187 doesn't seem to be mutated. Here are the mutated foci.Position 161326902 doesn't seem to be mutated. Here are the mutated foci.Position 161327585 doesn't seem to be mutated. Here are the mutated foci.Position 161329202 doesn't seem to be mutated. Here are the mutated foci.Position 161329409 doesn't seem to be mutated. Here are the mutated foci.Position 161329978 doesn't seem to be mutated. Here are the mutated foci.Position 161330954 doesn't seem to be mutated. Here are the mutated foci.Position 161331331 doesn't seem to be mutated. Here are the mutated foci.Position 161331697 doesn't seem to be mutated. Here are the mutated foci.Position 161331861 doesn't seem to be mutated. Here are the mutated foci.Position 161331934 doesn't seem to be mutated. Here are the mutated foci.Position 161333385 doesn't seem to be mutated. Here are the mutated foci.Position 161339430 doesn't seem to be mutated. Here are the mutated foci.Position 161340831 doesn't seem to be mutated. Here are the mutated foci.Position 161340847 doesn't seem to be mutated. Here are the mutated foci.Position 161344773 doesn't seem to be mutated. Here are the mutated foci.Position 161348451 doesn't seem to be mutated. Here are the mutated foci.Position 161350069 doesn't seem to be mutated. Here are the mutated foci.Position 161355006 doesn't seem to be mutated. Here are the mutated foci.Position 161357557 doesn't seem to be mutated. Here are the mutated foci.Position 161358286 doesn't seem to be mutated. Here are the mutated foci.Position 161360135 doesn't seem to be mutated. Here are the mutated foci.Position 161360485 doesn't seem to be mutated. Here are the mutated foci.Position 161370718 doesn't seem to be mutated. Here are the mutated foci.Position 161372360 doesn't seem to be mutated. Here are the mutated foci.Position 161372989 doesn't seem to be mutated. Here are the mutated foci.Position 161373451 doesn't seem to be mutated. Here are the mutated foci.Position 161375792 doesn't seem to be mutated. Here are the mutated foci.Position 161376444 doesn't seem to be mutated. Here are the mutated foci.Position 161376854 doesn't seem to be mutated. Here are the mutated foci.Position 161378518 doesn't seem to be mutated. Here are the mutated foci.Position 161378628 doesn't seem to be mutated. Here are the mutated foci.Position 193117358 doesn't seem to be mutated. Here are the mutated foci.Position 193119153 doesn't seem to be mutated. Here are the mutated foci.Position 193120724 doesn't seem to be mutated. Here are the mutated foci.Position 193127625 doesn't seem to be mutated. Here are the mutated foci.Position 193128025 doesn't seem to be mutated. Here are the mutated foci.Position 193129195 doesn't seem to be mutated. Here are the mutated foci.Position 193132093 doesn't seem to be mutated. Here are the mutated foci.Position 193146819 doesn't seem to be mutated. Here are the mutated foci.Position 193150010 doesn't seem to be mutated. Here are the mutated foci.Position 193151338 doesn't seem to be mutated. Here are the mutated foci.Position 193154989 doesn't seem to be mutated. Here are the mutated foci.Position 193166797 doesn't seem to be mutated. Here are the mutated foci.Position 193166905 doesn't seem to be mutated. Here are the mutated foci.Position 193171854 doesn't seem to be mutated. Here are the mutated foci.Position 193188749 doesn't seem to be mutated. Here are the mutated foci.Position 193191053 doesn't seem to be mutated. Here are the mutated foci.Position 193192217 doesn't seem to be mutated. Here are the mutated foci.Position 193198777 doesn't seem to be mutated. Here are the mutated foci.Position 193199969 doesn't seem to be mutated. Here are the mutated foci.Position 193200111 doesn't seem to be mutated. Here are the mutated foci.Position 193200337 doesn't seem to be mutated. Here are the mutated foci.Position 193203465 doesn't seem to be mutated. Here are the mutated foci.Position 193204277 doesn't seem to be mutated. Here are the mutated foci.Position 193204434 doesn't seem to be mutated. Here are the mutated foci.Position 193207053 doesn't seem to be mutated. Here are the mutated foci.Position 193209375 doesn't seem to be mutated. Here are the mutated foci.Position 193212505 doesn't seem to be mutated. Here are the mutated foci.Position 193213196 doesn't seem to be mutated. Here are the mutated foci.Position 193214357 doesn't seem to be mutated. Here are the mutated foci.Position 193214650 doesn't seem to be mutated. Here are the mutated foci.Position 193217113 doesn't seem to be mutated. Here are the mutated foci.Position 193219785 doesn't seem to be mutated. Here are the mutated foci.Position 193224210 doesn't seem to be mutated. Here are the mutated foci.Position 193232818 doesn't seem to be mutated. Here are the mutated foci.Position 193233167 doesn't seem to be mutated. Here are the mutated foci.Position 193235645 doesn't seem to be mutated. Here are the mutated foci.Position 193237110 doesn't seem to be mutated. Here are the mutated foci.Position 193245547 doesn't seem to be mutated. Here are the mutated foci.Position 193246747 doesn't seem to be mutated. Here are the mutated foci.Position 193249573 doesn't seem to be mutated. Here are the mutated foci.Position 193252079 doesn't seem to be mutated. Here are the mutated foci.Position 193253592 doesn't seem to be mutated. Here are the mutated foci.Position 231365420 doesn't seem to be mutated. Here are the mutated foci.Position 231376556 doesn't seem to be mutated. Here are the mutated foci.Position 231384026 doesn't seem to be mutated. Here are the mutated foci.Position 231386753 doesn't seem to be mutated. Here are the mutated foci.Position 231396403 doesn't seem to be mutated. Here are the mutated foci.Position 231399352 doesn't seem to be mutated. Here are the mutated foci.Position 231411997 doesn't seem to be mutated. Here are the mutated foci.Position 231418809 doesn't seem to be mutated. Here are the mutated foci.Position 231419415 doesn't seem to be mutated. Here are the mutated foci.Position 241495946 doesn't seem to be mutated. Here are the mutated foci.Position 241496247 doesn't seem to be mutated. Here are the mutated foci.Position 241496581 doesn't seem to be mutated. Here are the mutated foci.Position 241496731 doesn't seem to be mutated. Here are the mutated foci.Position 241503903 doesn't seem to be mutated. Here are the mutated foci.Position 241504639 doesn't seem to be mutated. Here are the mutated foci.Position 241504827 doesn't seem to be mutated. Here are the mutated foci.Position 241505075 doesn't seem to be mutated. Here are the mutated foci.Position 241506376 doesn't seem to be mutated. Here are the mutated foci.Position 241506782 doesn't seem to be mutated. Here are the mutated foci.Position 241509419 doesn't seem to be mutated. Here are the mutated foci.Position 241510700 doesn't seem to be mutated. Here are the mutated foci.Position 241514780 doesn't seem to be mutated. Here are the mutated foci.Position 241516423 doesn't seem to be mutated. Here are the mutated foci.Position 241516982 doesn't seem to be mutated. Here are the mutated foci.Position 241518314 doesn't seem to be mutated. Here are the mutated foci.Position 241524117 doesn't seem to be mutated. Here are the mutated foci.Position 3572246 doesn't seem to be mutated. Here are the mutated foci.Position 3573391 doesn't seem to be mutated. Here are the mutated foci.Position 3574676 doesn't seem to be mutated. Here are the mutated foci.Position 3574967 doesn't seem to be mutated. Here are the mutated foci.Position 3580131 doesn't seem to be mutated. Here are the mutated foci.Position 3585562 doesn't seem to be mutated. Here are the mutated foci.Position 29192040 doesn't seem to be mutated. Here are the mutated foci.Position 29196053 doesn't seem to be mutated. Here are the mutated foci.Position 29198962 doesn't seem to be mutated. Here are the mutated foci.Position 29199244 doesn't seem to be mutated. Here are the mutated foci.Position 29199390 doesn't seem to be mutated. Here are the mutated foci.Position 29203536 doesn't seem to be mutated. Here are the mutated foci.Position 29204258 doesn't seem to be mutated. Here are the mutated foci.Position 29205021 doesn't seem to be mutated. Here are the mutated foci.Position 29208545 doesn't seem to be mutated. Here are the mutated foci.Position 29216421 doesn't seem to be mutated. Here are the mutated foci.Position 29219785 doesn't seem to be mutated. Here are the mutated foci.Position 29229609 doesn't seem to be mutated. Here are the mutated foci.Position 29230205 doesn't seem to be mutated. Here are the mutated foci.Position 29232841 doesn't seem to be mutated. Here are the mutated foci.Position 29240648 doesn't seem to be mutated. Here are the mutated foci.Position 29242840 doesn't seem to be mutated. Here are the mutated foci.Position 29247137 doesn't seem to be mutated. Here are the mutated foci.Position 29247159 doesn't seem to be mutated. Here are the mutated foci.Position 29256733 doesn't seem to be mutated. Here are the mutated foci.Position 29260337 doesn't seem to be mutated. Here are the mutated foci.Position 29260647 doesn't seem to be mutated. Here are the mutated foci.Position 29264727 doesn't seem to be mutated. Here are the mutated foci.Position 29266533 doesn't seem to be mutated. Here are the mutated foci.Position 29273168 doesn't seem to be mutated. Here are the mutated foci.Position 29278167 doesn't seem to be mutated. Here are the mutated foci.Position 29280360 doesn't seem to be mutated. Here are the mutated foci.Position 29283728 doesn't seem to be mutated. Here are the mutated foci.Position 29285737 doesn't seem to be mutated. Here are the mutated foci.Position 29290266 doesn't seem to be mutated. Here are the mutated foci.Position 29290508 doesn't seem to be mutated. Here are the mutated foci.Position 29290554 doesn't seem to be mutated. Here are the mutated foci.Position 29306653 doesn't seem to be mutated. Here are the mutated foci.Position 29309322 doesn't seem to be mutated. Here are the mutated foci.Position 29310278 doesn't seem to be mutated. Here are the mutated foci.Position 29314205 doesn't seem to be mutated. Here are the mutated foci.Position 29314422 doesn't seem to be mutated. Here are the mutated foci.Position 29317806 doesn't seem to be mutated. Here are the mutated foci.Position 29318628 doesn't seem to be mutated. Here are the mutated foci.Position 29318965 doesn't seem to be mutated. Here are the mutated foci.Position 29320621 doesn't seem to be mutated. Here are the mutated foci.Position 29321341 doesn't seem to be mutated. Here are the mutated foci.Position 29322437 doesn't seem to be mutated. Here are the mutated foci.Position 29324976 doesn't seem to be mutated. Here are the mutated foci.Position 29335850 doesn't seem to be mutated. Here are the mutated foci.Position 29346623 doesn't seem to be mutated. Here are the mutated foci.Position 29347222 doesn't seem to be mutated. Here are the mutated foci.Position 29354680 doesn't seem to be mutated. Here are the mutated foci.Position 29354922 doesn't seem to be mutated. Here are the mutated foci.Position 29357711 doesn't seem to be mutated. Here are the mutated foci.Position 29365090 doesn't seem to be mutated. Here are the mutated foci.Position 29366459 doesn't seem to be mutated. Here are the mutated foci.Position 29367974 doesn't seem to be mutated. Here are the mutated foci.Position 29370224 doesn't seem to be mutated. Here are the mutated foci.Position 29375614 doesn't seem to be mutated. Here are the mutated foci.Position 29379074 doesn't seem to be mutated. Here are the mutated foci.Position 29379696 doesn't seem to be mutated. Here are the mutated foci.Position 29382130 doesn't seem to be mutated. Here are the mutated foci.Position 29383835 doesn't seem to be mutated. Here are the mutated foci.Position 29386004 doesn't seem to be mutated. Here are the mutated foci.Position 29395620 doesn't seem to be mutated. Here are the mutated foci.Position 29400212 doesn't seem to be mutated. Here are the mutated foci.Position 29407074 doesn't seem to be mutated. Here are the mutated foci.Position 29408528 doesn't seem to be mutated. Here are the mutated foci.Position 29411409 doesn't seem to be mutated. Here are the mutated foci.Position 29412851 doesn't seem to be mutated. Here are the mutated foci.Position 29419813 doesn't seem to be mutated. Here are the mutated foci.Position 29424005 doesn't seem to be mutated. Here are the mutated foci.Position 29428752 doesn't seem to be mutated. Here are the mutated foci.Position 29430991 doesn't seem to be mutated. Here are the mutated foci.Position 29431562 doesn't seem to be mutated. Here are the mutated foci.Position 29433862 doesn't seem to be mutated. Here are the mutated foci.Position 29440459 doesn't seem to be mutated. Here are the mutated foci.Position 29441126 doesn't seem to be mutated. Here are the mutated foci.Position 29443617 doesn't seem to be mutated. Here are the mutated foci.Position 29443796 doesn't seem to be mutated. Here are the mutated foci.Position 29444980 doesn't seem to be mutated. Here are the mutated foci.Position 29445474 doesn't seem to be mutated. Here are the mutated foci.Position 29447777 doesn't seem to be mutated. Here are the mutated foci.Position 29460465 doesn't seem to be mutated. Here are the mutated foci.Position 29462720 doesn't seem to be mutated. Here are the mutated foci.Position 29466178 doesn't seem to be mutated. Here are the mutated foci.Position 29471660 doesn't seem to be mutated. Here are the mutated foci.Position 29474368 doesn't seem to be mutated. Here are the mutated foci.Position 29475750 doesn't seem to be mutated. Here are the mutated foci.Position 29478399 doesn't seem to be mutated. Here are the mutated foci.Position 29492568 doesn't seem to be mutated. Here are the mutated foci.Position 29510412 doesn't seem to be mutated. Here are the mutated foci.Position 29523335 doesn't seem to be mutated. Here are the mutated foci.Position 29525601 doesn't seem to be mutated. Here are the mutated foci.Position 29529674 doesn't seem to be mutated. Here are the mutated foci.Position 29530457 doesn't seem to be mutated. Here are the mutated foci.Position 29536146 doesn't seem to be mutated. Here are the mutated foci.Position 29541312 doesn't seem to be mutated. Here are the mutated foci.Position 29551827 doesn't seem to be mutated. Here are the mutated foci.Position 29556585 doesn't seem to be mutated. Here are the mutated foci.Position 29559517 doesn't seem to be mutated. Here are the mutated foci.Position 29564441 doesn't seem to be mutated. Here are the mutated foci.Position 29570080 doesn't seem to be mutated. Here are the mutated foci.Position 29570341 doesn't seem to be mutated. Here are the mutated foci.Position 29573982 doesn't seem to be mutated. Here are the mutated foci.Position 29580200 doesn't seem to be mutated. Here are the mutated foci.Position 29593483 doesn't seem to be mutated. Here are the mutated foci.Position 29597164 doesn't seem to be mutated. Here are the mutated foci.Position 29598184 doesn't seem to be mutated. Here are the mutated foci.Position 29600026 doesn't seem to be mutated. Here are the mutated foci.Position 29605353 doesn't seem to be mutated. Here are the mutated foci.Position 29608637 doesn't seem to be mutated. Here are the mutated foci.Position 29615491 doesn't seem to be mutated. Here are the mutated foci.Position 29616517 doesn't seem to be mutated. Here are the mutated foci.Position 29621825 doesn't seem to be mutated. Here are the mutated foci.Position 29645072 doesn't seem to be mutated. Here are the mutated foci.Position 29648195 doesn't seem to be mutated. Here are the mutated foci.Position 29651908 doesn't seem to be mutated. Here are the mutated foci.Position 29653200 doesn't seem to be mutated. Here are the mutated foci.Position 29653368 doesn't seem to be mutated. Here are the mutated foci.Position 29676846 doesn't seem to be mutated. Here are the mutated foci.Position 29689131 doesn't seem to be mutated. Here are the mutated foci.Position 29690577 doesn't seem to be mutated. Here are the mutated foci.Position 29691085 doesn't seem to be mutated. Here are the mutated foci.Position 29700284 doesn't seem to be mutated. Here are the mutated foci.Position 29702406 doesn't seem to be mutated. Here are the mutated foci.Position 29702904 doesn't seem to be mutated. Here are the mutated foci.Position 29705324 doesn't seem to be mutated. Here are the mutated foci.Position 29706004 doesn't seem to be mutated. Here are the mutated foci.Position 29712577 doesn't seem to be mutated. Here are the mutated foci.Position 29713840 doesn't seem to be mutated. Here are the mutated foci.Position 29714149 doesn't seem to be mutated. Here are the mutated foci.Position 29717584 doesn't seem to be mutated. Here are the mutated foci.Position 29726419 doesn't seem to be mutated. Here are the mutated foci.Position 29727664 doesn't seem to be mutated. Here are the mutated foci.Position 29729436 doesn't seem to be mutated. Here are the mutated foci.Position 29730391 doesn't seem to be mutated. Here are the mutated foci.Position 29735504 doesn't seem to be mutated. Here are the mutated foci.Position 29737492 doesn't seem to be mutated. Here are the mutated foci.Position 29742640 doesn't seem to be mutated. Here are the mutated foci.Position 29743603 doesn't seem to be mutated. Here are the mutated foci.Position 29743970 doesn't seem to be mutated. Here are the mutated foci.Position 29745553 doesn't seem to be mutated. Here are the mutated foci.Position 29749404 doesn't seem to be mutated. Here are the mutated foci.Position 29765814 doesn't seem to be mutated. Here are the mutated foci.Position 29766202 doesn't seem to be mutated. Here are the mutated foci.Position 29767574 doesn't seem to be mutated. Here are the mutated foci.Position 29777143 doesn't seem to be mutated. Here are the mutated foci.Position 29777465 doesn't seem to be mutated. Here are the mutated foci.Position 29784275 doesn't seem to be mutated. Here are the mutated foci.Position 29793970 doesn't seem to be mutated. Here are the mutated foci.Position 29795425 doesn't seem to be mutated. Here are the mutated foci.Position 29797029 doesn't seem to be mutated. Here are the mutated foci.Position 29804109 doesn't seem to be mutated. Here are the mutated foci.Position 29807615 doesn't seem to be mutated. Here are the mutated foci.Position 29815399 doesn't seem to be mutated. Here are the mutated foci.Position 29815409 doesn't seem to be mutated. Here are the mutated foci.Position 29828840 doesn't seem to be mutated. Here are the mutated foci.Position 29828979 doesn't seem to be mutated. Here are the mutated foci.Position 29837571 doesn't seem to be mutated. Here are the mutated foci.Position 29837675 doesn't seem to be mutated. Here are the mutated foci.Position 29839778 doesn't seem to be mutated. Here are the mutated foci.Position 29844270 doesn't seem to be mutated. Here are the mutated foci.Position 29848309 doesn't seem to be mutated. Here are the mutated foci.Position 29851819 doesn't seem to be mutated. Here are the mutated foci.Position 29852127 doesn't seem to be mutated. Here are the mutated foci.Position 29860868 doesn't seem to be mutated. Here are the mutated foci.Position 29880266 doesn't seem to be mutated. Here are the mutated foci.Position 29881689 doesn't seem to be mutated. Here are the mutated foci.Position 29884176 doesn't seem to be mutated. Here are the mutated foci.Position 29892257 doesn't seem to be mutated. Here are the mutated foci.Position 29894214 doesn't seem to be mutated. Here are the mutated foci.Position 29900679 doesn't seem to be mutated. Here are the mutated foci.Position 29914101 doesn't seem to be mutated. Here are the mutated foci.Position 29922470 doesn't seem to be mutated. Here are the mutated foci.Position 29924688 doesn't seem to be mutated. Here are the mutated foci.Position 29925117 doesn't seem to be mutated. Here are the mutated foci.Position 29926042 doesn't seem to be mutated. Here are the mutated foci.Position 38980694 doesn't seem to be mutated. Here are the mutated foci.Position 38985957 doesn't seem to be mutated. Here are the mutated foci.Position 38997528 doesn't seem to be mutated. Here are the mutated foci.Position 38997545 doesn't seem to be mutated. Here are the mutated foci.Position 39006729 doesn't seem to be mutated. Here are the mutated foci.Position 39010188 doesn't seem to be mutated. Here are the mutated foci.Position 39017123 doesn't seem to be mutated. Here are the mutated foci.Position 39017321 doesn't seem to be mutated. Here are the mutated foci.Position 39020926 doesn't seem to be mutated. Here are the mutated foci.Position 39021931 doesn't seem to be mutated. Here are the mutated foci.Position 39023339 doesn't seem to be mutated. Here are the mutated foci.Position 39023537 doesn't seem to be mutated. Here are the mutated foci.Position 39030098 doesn't seem to be mutated. Here are the mutated foci.Position 39031702 doesn't seem to be mutated. Here are the mutated foci.Position 39033922 doesn't seem to be mutated. Here are the mutated foci.Position 39040274 doesn't seem to be mutated. Here are the mutated foci.Position 39044486 doesn't seem to be mutated. Here are the mutated foci.Position 39044841 doesn't seem to be mutated. Here are the mutated foci.Position 39045031 doesn't seem to be mutated. Here are the mutated foci.Position 39050630 doesn't seem to be mutated. Here are the mutated foci.Position 39060141 doesn't seem to be mutated. Here are the mutated foci.Position 39065344 doesn't seem to be mutated. Here are the mutated foci.Position 39067042 doesn't seem to be mutated. Here are the mutated foci.Position 39074075 doesn't seem to be mutated. Here are the mutated foci.Position 39074977 doesn't seem to be mutated. Here are the mutated foci.Position 39076041 doesn't seem to be mutated. Here are the mutated foci.Position 39079759 doesn't seem to be mutated. Here are the mutated foci.Position 39080751 doesn't seem to be mutated. Here are the mutated foci.Position 39082608 doesn't seem to be mutated. Here are the mutated foci.Position 39083336 doesn't seem to be mutated. Here are the mutated foci.Position 39087001 doesn't seem to be mutated. Here are the mutated foci.Position 39091384 doesn't seem to be mutated. Here are the mutated foci.Position 39094514 doesn't seem to be mutated. Here are the mutated foci.Position 39096754 doesn't seem to be mutated. Here are the mutated foci.Position 39105290 doesn't seem to be mutated. Here are the mutated foci.Position 39106317 doesn't seem to be mutated. Here are the mutated foci.Position 39106323 doesn't seem to be mutated. Here are the mutated foci.Position 39111053 doesn't seem to be mutated. Here are the mutated foci.Position 39114847 doesn't seem to be mutated. Here are the mutated foci.Position 39121532 doesn't seem to be mutated. Here are the mutated foci.Position 39122155 doesn't seem to be mutated. Here are the mutated foci.Position 39122378 doesn't seem to be mutated. Here are the mutated foci.Position 39122494 doesn't seem to be mutated. Here are the mutated foci.Position 39125076 doesn't seem to be mutated. Here are the mutated foci.Position 47352146 doesn't seem to be mutated. Here are the mutated foci.Position 47368961 doesn't seem to be mutated. Here are the mutated foci.Position 47370959 doesn't seem to be mutated. Here are the mutated foci.Position 47371269 doesn't seem to be mutated. Here are the mutated foci.Position 47374650 doesn't seem to be mutated. Here are the mutated foci.Position 47381032 doesn't seem to be mutated. Here are the mutated foci.Position 47381804 doesn't seem to be mutated. Here are the mutated foci.Position 47402055 doesn't seem to be mutated. Here are the mutated foci.Position 47407646 doesn't seem to be mutated. Here are the mutated foci.Position 47410836 doesn't seem to be mutated. Here are the mutated foci.Position 47411519 doesn't seem to be mutated. Here are the mutated foci.Position 47413956 doesn't seem to be mutated. Here are the mutated foci.Position 47414292 doesn't seem to be mutated. Here are the mutated foci.Position 47414448 doesn't seem to be mutated. Here are the mutated foci.Position 47419215 doesn't seem to be mutated. Here are the mutated foci.Position 47420443 doesn't seem to be mutated. Here are the mutated foci.Position 47420953 doesn't seem to be mutated. Here are the mutated foci.Position 47421211 doesn't seem to be mutated. Here are the mutated foci.Position 47421303 doesn't seem to be mutated. Here are the mutated foci.Position 47426297 doesn't seem to be mutated. Here are the mutated foci.Position 47430030 doesn't seem to be mutated. Here are the mutated foci.Position 47430614 doesn't seem to be mutated. Here are the mutated foci.Position 47434397 doesn't seem to be mutated. Here are the mutated foci.Position 47434885 doesn't seem to be mutated. Here are the mutated foci.Position 47436442 doesn't seem to be mutated. Here are the mutated foci.Position 47440833 doesn't seem to be mutated. Here are the mutated foci.Position 47450188 doesn't seem to be mutated. Here are the mutated foci.Position 47462659 doesn't seem to be mutated. Here are the mutated foci.Position 47465307 doesn't seem to be mutated. Here are the mutated foci.Position 47466971 doesn't seem to be mutated. Here are the mutated foci.Position 47467435 doesn't seem to be mutated. Here are the mutated foci.Position 47467868 doesn't seem to be mutated. Here are the mutated foci.Position 47471605 doesn't seem to be mutated. Here are the mutated foci.Position 47473293 doesn't seem to be mutated. Here are the mutated foci.Position 47475656 doesn't seem to be mutated. Here are the mutated foci.Position 47476124 doesn't seem to be mutated. Here are the mutated foci.Position 47480812 doesn't seem to be mutated. Here are the mutated foci.Position 47480817 doesn't seem to be mutated. Here are the mutated foci.Position 47481529 doesn't seem to be mutated. Here are the mutated foci.Position 47482637 doesn't seem to be mutated. Here are the mutated foci.Position 47483288 doesn't seem to be mutated. Here are the mutated foci.Position 47483811 doesn't seem to be mutated. Here are the mutated foci.Position 47489324 doesn't seem to be mutated. Here are the mutated foci.Position 47491065 doesn't seem to be mutated. Here are the mutated foci.Position 47491934 doesn't seem to be mutated. Here are the mutated foci.Position 47493166 doesn't seem to be mutated. Here are the mutated foci.Position 47497652 doesn't seem to be mutated. Here are the mutated foci.Position 47507443 doesn't seem to be mutated. Here are the mutated foci.Position 47508755 doesn't seem to be mutated. Here are the mutated foci.Position 47510046 doesn't seem to be mutated. Here are the mutated foci.Position 47576187 doesn't seem to be mutated. Here are the mutated foci.Position 47577488 doesn't seem to be mutated. Here are the mutated foci.Position 47585038 doesn't seem to be mutated. Here are the mutated foci.Position 47586927 doesn't seem to be mutated. Here are the mutated foci.Position 47587344 doesn't seem to be mutated. Here are the mutated foci.Position 47591407 doesn't seem to be mutated. Here are the mutated foci.Position 47592375 doesn't seem to be mutated. Here are the mutated foci.Position 47595163 doesn't seem to be mutated. Here are the mutated foci.Position 47598105 doesn't seem to be mutated. Here are the mutated foci.Position 47598511 doesn't seem to be mutated. Here are the mutated foci.Position 47602153 doesn't seem to be mutated. Here are the mutated foci.Position 47602997 doesn't seem to be mutated. Here are the mutated foci.Position 47610190 doesn't seem to be mutated. Here are the mutated foci.Position 47616412 doesn't seem to be mutated. Here are the mutated foci.Position 47621305 doesn't seem to be mutated. Here are the mutated foci.Position 47628646 doesn't seem to be mutated. Here are the mutated foci.Position 47636672 doesn't seem to be mutated. Here are the mutated foci.Position 47640568 doesn't seem to be mutated. Here are the mutated foci.Position 47642376 doesn't seem to be mutated. Here are the mutated foci.Position 47654921 doesn't seem to be mutated. Here are the mutated foci.Position 47656335 doesn't seem to be mutated. Here are the mutated foci.Position 47659111 doesn't seem to be mutated. Here are the mutated foci.Position 47664612 doesn't seem to be mutated. Here are the mutated foci.Position 47699125 doesn't seem to be mutated. Here are the mutated foci.Position 47716747 doesn't seem to be mutated. Here are the mutated foci.Position 47722007 doesn't seem to be mutated. Here are the mutated foci.Position 47747945 doesn't seem to be mutated. Here are the mutated foci.Position 47750916 doesn't seem to be mutated. Here are the mutated foci.Position 47756996 doesn't seem to be mutated. Here are the mutated foci.Position 47759532 doesn't seem to be mutated. Here are the mutated foci.Position 47760966 doesn't seem to be mutated. Here are the mutated foci.Position 47766253 doesn't seem to be mutated. Here are the mutated foci.Position 47768141 doesn't seem to be mutated. Here are the mutated foci.Position 47769836 doesn't seem to be mutated. Here are the mutated foci.Position 47770368 doesn't seem to be mutated. Here are the mutated foci.Position 47779896 doesn't seem to be mutated. Here are the mutated foci.Position 47782979 doesn't seem to be mutated. Here are the mutated foci.Position 47783564 doesn't seem to be mutated. Here are the mutated foci.Position 47786933 doesn't seem to be mutated. Here are the mutated foci.Position 47790232 doesn't seem to be mutated. Here are the mutated foci.Position 47794834 doesn't seem to be mutated. Here are the mutated foci.Position 47795563 doesn't seem to be mutated. Here are the mutated foci.Position 47798711 doesn't seem to be mutated. Here are the mutated foci.Position 47800374 doesn't seem to be mutated. Here are the mutated foci.Position 47803500 doesn't seem to be mutated. Here are the mutated foci.Position 47804130 doesn't seem to be mutated. Here are the mutated foci.Position 47807668 doesn't seem to be mutated. Here are the mutated foci.Position 58160806 doesn't seem to be mutated. Here are the mutated foci.Position 58162568 doesn't seem to be mutated. Here are the mutated foci.Position 58172035 doesn't seem to be mutated. Here are the mutated foci.Position 58172558 doesn't seem to be mutated. Here are the mutated foci.Position 58182074 doesn't seem to be mutated. Here are the mutated foci.Position 58187060 doesn't seem to be mutated. Here are the mutated foci.Position 58194457 doesn't seem to be mutated. Here are the mutated foci.Position 58194659 doesn't seem to be mutated. Here are the mutated foci.Position 58198046 doesn't seem to be mutated. Here are the mutated foci.Position 58200357 doesn't seem to be mutated. Here are the mutated foci.Position 58201986 doesn't seem to be mutated. Here are the mutated foci.Position 58207927 doesn't seem to be mutated. Here are the mutated foci.Position 58214014 doesn't seem to be mutated. Here are the mutated foci.Position 58216860 doesn't seem to be mutated. Here are the mutated foci.Position 58216864 doesn't seem to be mutated. Here are the mutated foci.Position 58221073 doesn't seem to be mutated. Here are the mutated foci.Position 58221696 doesn't seem to be mutated. Here are the mutated foci.Position 58223028 doesn't seem to be mutated. Here are the mutated foci.Position 58232541 doesn't seem to be mutated. Here are the mutated foci.Position 58244084 doesn't seem to be mutated. Here are the mutated foci.Position 58244620 doesn't seem to be mutated. Here are the mutated foci.Position 96244386 doesn't seem to be mutated. Here are the mutated foci.Position 96245481 doesn't seem to be mutated. Here are the mutated foci.Position 96245736 doesn't seem to be mutated. Here are the mutated foci.Position 96246252 doesn't seem to be mutated. Here are the mutated foci.Position 96247672 doesn't seem to be mutated. Here are the mutated foci.Position 96249091 doesn't seem to be mutated. Here are the mutated foci.Position 96251638 doesn't seem to be mutated. Here are the mutated foci.Position 96258197 doesn't seem to be mutated. Here are the mutated foci.Position 96259675 doesn't seem to be mutated. Here are the mutated foci.Position 127257261 doesn't seem to be mutated. Here are the mutated foci.Position 127258232 doesn't seem to be mutated. Here are the mutated foci.Position 127260803 doesn't seem to be mutated. Here are the mutated foci.Position 127263067 doesn't seem to be mutated. Here are the mutated foci.Position 127265532 doesn't seem to be mutated. Here are the mutated foci.Position 127266861 doesn't seem to be mutated. Here are the mutated foci.Position 127267646 doesn't seem to be mutated. Here are the mutated foci.Position 127268299 doesn't seem to be mutated. Here are the mutated foci.Position 127272652 doesn't seem to be mutated. Here are the mutated foci.Position 127273520 doesn't seem to be mutated. Here are the mutated foci.Position 127277212 doesn't seem to be mutated. Here are the mutated foci.Position 127277777 doesn't seem to be mutated. Here are the mutated foci.Position 127279182 doesn't seem to be mutated. Here are the mutated foci.Position 127282007 doesn't seem to be mutated. Here are the mutated foci.Position 127283634 doesn't seem to be mutated. Here are the mutated foci.Position 127285052 doesn't seem to be mutated. Here are the mutated foci.Position 127285380 doesn't seem to be mutated. Here are the mutated foci.Position 127286831 doesn't seem to be mutated. Here are the mutated foci.Position 127291999 doesn't seem to be mutated. Here are the mutated foci.Position 127297563 doesn't seem to be mutated. Here are the mutated foci.Position 144364011 doesn't seem to be mutated. Here are the mutated foci.Position 144369651 doesn't seem to be mutated. Here are the mutated foci.Position 144373090 doesn't seem to be mutated. Here are the mutated foci.Position 144374040 doesn't seem to be mutated. Here are the mutated foci.Position 144379024 doesn't seem to be mutated. Here are the mutated foci.Position 144380851 doesn't seem to be mutated. Here are the mutated foci.Position 144381567 doesn't seem to be mutated. Here are the mutated foci.Position 144382708 doesn't seem to be mutated. Here are the mutated foci.Position 144383405 doesn't seem to be mutated. Here are the mutated foci.Position 144385294 doesn't seem to be mutated. Here are the mutated foci.Position 144386080 doesn't seem to be mutated. Here are the mutated foci.Position 144387524 doesn't seem to be mutated. Here are the mutated foci.Position 144388965 doesn't seem to be mutated. Here are the mutated foci.Position 144389318 doesn't seem to be mutated. Here are the mutated foci.Position 144393120 doesn't seem to be mutated. Here are the mutated foci.Position 144397967 doesn't seem to be mutated. Here are the mutated foci.Position 144399104 doesn't seem to be mutated. Here are the mutated foci.Position 144400981 doesn't seem to be mutated. Here are the mutated foci.Position 144401516 doesn't seem to be mutated. Here are the mutated foci.Position 144405830 doesn't seem to be mutated. Here are the mutated foci.Position 144407062 doesn't seem to be mutated. Here are the mutated foci.Position 144413980 doesn't seem to be mutated. Here are the mutated foci.Position 144415918 doesn't seem to be mutated. Here are the mutated foci.Position 144419788 doesn't seem to be mutated. Here are the mutated foci.Position 144423025 doesn't seem to be mutated. Here are the mutated foci.Position 144424386 doesn't seem to be mutated. Here are the mutated foci.Position 144425452 doesn't seem to be mutated. Here are the mutated foci.Position 144427235 doesn't seem to be mutated. Here are the mutated foci.Position 144427284 doesn't seem to be mutated. Here are the mutated foci.Position 144427698 doesn't seem to be mutated. Here are the mutated foci.Position 144433560 doesn't seem to be mutated. Here are the mutated foci.Position 144434067 doesn't seem to be mutated. Here are the mutated foci.Position 144435615 doesn't seem to be mutated. Here are the mutated foci.Position 144436460 doesn't seem to be mutated. Here are the mutated foci.Position 144437163 doesn't seem to be mutated. Here are the mutated foci.Position 144441789 doesn't seem to be mutated. Here are the mutated foci.Position 144444398 doesn't seem to be mutated. Here are the mutated foci.Position 144445409 doesn't seem to be mutated. Here are the mutated foci.Position 144445661 doesn't seem to be mutated. Here are the mutated foci.Position 144449990 doesn't seem to be mutated. Here are the mutated foci.Position 144457716 doesn't seem to be mutated. Here are the mutated foci.Position 144459124 doesn't seem to be mutated. Here are the mutated foci.Position 144460220 doesn't seem to be mutated. Here are the mutated foci.Position 144468639 doesn't seem to be mutated. Here are the mutated foci.Position 144482063 doesn't seem to be mutated. Here are the mutated foci.Position 144483460 doesn't seem to be mutated. Here are the mutated foci.Position 144485768 doesn't seem to be mutated. Here are the mutated foci.Position 144488298 doesn't seem to be mutated. Here are the mutated foci.Position 144488558 doesn't seem to be mutated. Here are the mutated foci.Position 144488629 doesn't seem to be mutated. Here are the mutated foci.Position 144494824 doesn't seem to be mutated. Here are the mutated foci.Position 144496666 doesn't seem to be mutated. Here are the mutated foci.Position 144501074 doesn't seem to be mutated. Here are the mutated foci.Position 144506709 doesn't seem to be mutated. Here are the mutated foci.Position 144508978 doesn't seem to be mutated. Here are the mutated foci.Position 144511519 doesn't seem to be mutated. Here are the mutated foci.Position 144512036 doesn't seem to be mutated. Here are the mutated foci.Position 144512231 doesn't seem to be mutated. Here are the mutated foci.Position 144513924 doesn't seem to be mutated. Here are the mutated foci.Position 144514301 doesn't seem to be mutated. Here are the mutated foci.Position 144518187 doesn't seem to be mutated. Here are the mutated foci.Position 144519241 doesn't seem to be mutated. Here are the mutated foci.Position 144524560 doesn't seem to be mutated. Here are the mutated foci.Position 168920519 doesn't seem to be mutated. Here are the mutated foci.Position 168923753 doesn't seem to be mutated. Here are the mutated foci.Position 168924716 doesn't seem to be mutated. Here are the mutated foci.Position 168925545 doesn't seem to be mutated. Here are the mutated foci.Position 168926321 doesn't seem to be mutated. Here are the mutated foci.Position 168929922 doesn't seem to be mutated. Here are the mutated foci.Position 168933950 doesn't seem to be mutated. Here are the mutated foci.Position 168937293 doesn't seem to be mutated. Here are the mutated foci.Position 168940003 doesn't seem to be mutated. Here are the mutated foci.Position 168952406 doesn't seem to be mutated. Here are the mutated foci.Position 168956243 doesn't seem to be mutated. Here are the mutated foci.Position 168960890 doesn't seem to be mutated. Here are the mutated foci.Position 168965007 doesn't seem to be mutated. Here are the mutated foci.Position 168975719 doesn't seem to be mutated. Here are the mutated foci.Position 168979712 doesn't seem to be mutated. Here are the mutated foci.Position 168986488 doesn't seem to be mutated. Here are the mutated foci.Position 168986659 doesn't seem to be mutated. Here are the mutated foci.Position 168986736 doesn't seem to be mutated. Here are the mutated foci.Position 168987350 doesn't seem to be mutated. Here are the mutated foci.Position 168989538 doesn't seem to be mutated. Here are the mutated foci.Position 168991834 doesn't seem to be mutated. Here are the mutated foci.Position 169000885 doesn't seem to be mutated. Here are the mutated foci.Position 169006061 doesn't seem to be mutated. Here are the mutated foci.Position 169007486 doesn't seem to be mutated. Here are the mutated foci.Position 169009729 doesn't seem to be mutated. Here are the mutated foci.Position 169009818 doesn't seem to be mutated. Here are the mutated foci.Position 169014173 doesn't seem to be mutated. Here are the mutated foci.Position 169016857 doesn't seem to be mutated. Here are the mutated foci.Position 169028528 doesn't seem to be mutated. Here are the mutated foci.Position 169033553 doesn't seem to be mutated. Here are the mutated foci.Position 214734743 doesn't seem to be mutated. Here are the mutated foci.Position 214737227 doesn't seem to be mutated. Here are the mutated foci.Position 214739614 doesn't seem to be mutated. Here are the mutated foci.Position 214742301 doesn't seem to be mutated. Here are the mutated foci.Position 214743947 doesn't seem to be mutated. Here are the mutated foci.Position 214747322 doesn't seem to be mutated. Here are the mutated foci.Position 214753441 doesn't seem to be mutated. Here are the mutated foci.Position 214753516 doesn't seem to be mutated. Here are the mutated foci.Position 214753993 doesn't seem to be mutated. Here are the mutated foci.Position 214759324 doesn't seem to be mutated. Here are the mutated foci.Position 214765959 doesn't seem to be mutated. Here are the mutated foci.Position 214776719 doesn't seem to be mutated. Here are the mutated foci.Position 214781341 doesn't seem to be mutated. Here are the mutated foci.Position 214782260 doesn't seem to be mutated. Here are the mutated foci.Position 214783204 doesn't seem to be mutated. Here are the mutated foci.Position 214786836 doesn't seem to be mutated. Here are the mutated foci.Position 214789754 doesn't seem to be mutated. Here are the mutated foci.Position 214790237 doesn't seem to be mutated. Here are the mutated foci.Position 214797676 doesn't seem to be mutated. Here are the mutated foci.Position 214798692 doesn't seem to be mutated. Here are the mutated foci.Position 214799593 doesn't seem to be mutated. Here are the mutated foci.Position 214801471 doesn't seem to be mutated. Here are the mutated foci.Position 214801639 doesn't seem to be mutated. Here are the mutated foci.Position 214804615 doesn't seem to be mutated. Here are the mutated foci.Position 214813522 doesn't seem to be mutated. Here are the mutated foci.Position 214813526 doesn't seem to be mutated. Here are the mutated foci.Position 214814697 doesn't seem to be mutated. Here are the mutated foci.Position 231957504 doesn't seem to be mutated. Here are the mutated foci.Position 231964491 doesn't seem to be mutated. Here are the mutated foci.Position 231978663 doesn't seem to be mutated. Here are the mutated foci.Position 231984426 doesn't seem to be mutated. Here are the mutated foci.Position 231985824 doesn't seem to be mutated. Here are the mutated foci.Position 231993411 doesn't seem to be mutated. Here are the mutated foci.Position 231997990 doesn't seem to be mutated. Here are the mutated foci.Position 232002147 doesn't seem to be mutated. Here are the mutated foci.Position 232002758 doesn't seem to be mutated. Here are the mutated foci.Position 232010005 doesn't seem to be mutated. Here are the mutated foci.Position 232013137 doesn't seem to be mutated. Here are the mutated foci.Position 232015808 doesn't seem to be mutated. Here are the mutated foci.Position 232017411 doesn't seem to be mutated. Here are the mutated foci.Position 232018856 doesn't seem to be mutated. Here are the mutated foci.Position 232022234 doesn't seem to be mutated. Here are the mutated foci.Position 232028917 doesn't seem to be mutated. Here are the mutated foci.Position 232032928 doesn't seem to be mutated. Here are the mutated foci.Position 232041604 doesn't seem to be mutated. Here are the mutated foci.Position 232044950 doesn't seem to be mutated. Here are the mutated foci.Position 232048414 doesn't seem to be mutated. Here are the mutated foci.Position 232050555 doesn't seem to be mutated. Here are the mutated foci.Position 232063483 doesn't seem to be mutated. Here are the mutated foci.Position 232064127 doesn't seem to be mutated. Here are the mutated foci.Position 232070537 doesn't seem to be mutated. Here are the mutated foci.Position 232072414 doesn't seem to be mutated. Here are the mutated foci.Position 232076534 doesn't seem to be mutated. Here are the mutated foci.Position 232080030 doesn't seem to be mutated. Here are the mutated foci.Position 232082033 doesn't seem to be mutated. Here are the mutated foci.Position 232084466 doesn't seem to be mutated. Here are the mutated foci.Position 232086207 doesn't seem to be mutated. Here are the mutated foci.Position 232100290 doesn't seem to be mutated. Here are the mutated foci.Position 232103992 doesn't seem to be mutated. Here are the mutated foci.Position 232113255 doesn't seem to be mutated. Here are the mutated foci.Position 232115713 doesn't seem to be mutated. Here are the mutated foci.Position 232117450 doesn't seem to be mutated. Here are the mutated foci.Position 232121633 doesn't seem to be mutated. Here are the mutated foci.Position 232121901 doesn't seem to be mutated. Here are the mutated foci.Position 232128829 doesn't seem to be mutated. Here are the mutated foci.Position 232145489 doesn't seem to be mutated. Here are the mutated foci.Position 232147332 doesn't seem to be mutated. Here are the mutated foci.Position 232155219 doesn't seem to be mutated. Here are the mutated foci.Position 232155765 doesn't seem to be mutated. Here are the mutated foci.Position 232157305 doesn't seem to be mutated. Here are the mutated foci.Position 232159335 doesn't seem to be mutated. Here are the mutated foci.Position 232161075 doesn't seem to be mutated. Here are the mutated foci.Position 232169436 doesn't seem to be mutated. Here are the mutated foci.Position 232170610 doesn't seem to be mutated. Here are the mutated foci.Position 232174847 doesn't seem to be mutated. Here are the mutated foci.Position 232177277 doesn't seem to be mutated. Here are the mutated foci.Position 232184934 doesn't seem to be mutated. Here are the mutated foci.Position 232192198 doesn't seem to be mutated. Here are the mutated foci.Position 232193550 doesn't seem to be mutated. Here are the mutated foci.Position 232193619 doesn't seem to be mutated. Here are the mutated foci.Position 232194759 doesn't seem to be mutated. Here are the mutated foci.Position 232195776 doesn't seem to be mutated. Here are the mutated foci.Position 232196579 doesn't seem to be mutated. Here are the mutated foci.Position 232200941 doesn't seem to be mutated. Here are the mutated foci.Position 232202297 doesn't seem to be mutated. Here are the mutated foci.Position 232215316 doesn't seem to be mutated. Here are the mutated foci.Position 232215565 doesn't seem to be mutated. Here are the mutated foci.Position 232221263 doesn't seem to be mutated. Here are the mutated foci.Position 232223499 doesn't seem to be mutated. Here are the mutated foci.Position 232228371 doesn't seem to be mutated. Here are the mutated foci.Position 232230928 doesn't seem to be mutated. Here are the mutated foci.Position 232242786 doesn't seem to be mutated. Here are the mutated foci.Position 232248381 doesn't seem to be mutated. Here are the mutated foci.Position 232251443 doesn't seem to be mutated. Here are the mutated foci.Position 232262187 doesn't seem to be mutated. Here are the mutated foci.Position 232266241 doesn't seem to be mutated. Here are the mutated foci.Position 232270042 doesn't seem to be mutated. Here are the mutated foci.Position 232273502 doesn't seem to be mutated. Here are the mutated foci.Position 232274100 doesn't seem to be mutated. Here are the mutated foci.Position 232277546 doesn't seem to be mutated. Here are the mutated foci.Position 232287459 doesn't seem to be mutated. Here are the mutated foci.Position 232289359 doesn't seem to be mutated. Here are the mutated foci.Position 232294523 doesn't seem to be mutated. Here are the mutated foci.Position 232305233 doesn't seem to be mutated. Here are the mutated foci.Position 232305687 doesn't seem to be mutated. Here are the mutated foci.Position 232306273 doesn't seem to be mutated. Here are the mutated foci.Position 232309626 doesn't seem to be mutated. Here are the mutated foci.Position 232310504 doesn't seem to be mutated. Here are the mutated foci.Position 232312140 doesn't seem to be mutated. Here are the mutated foci.Position 232312208 doesn't seem to be mutated. Here are the mutated foci.Position 232314269 doesn't seem to be mutated. Here are the mutated foci.Position 232318605 doesn't seem to be mutated. Here are the mutated foci.Position 232319117 doesn't seem to be mutated. Here are the mutated foci.Position 232320333 doesn't seem to be mutated. Here are the mutated foci.Position 232321268 doesn't seem to be mutated. Here are the mutated foci.Position 232321861 doesn't seem to be mutated. Here are the mutated foci.Position 232322585 doesn't seem to be mutated. Here are the mutated foci.Position 232322948 doesn't seem to be mutated. Here are the mutated foci.Position 232323974 doesn't seem to be mutated. Here are the mutated foci.Position 232325405 doesn't seem to be mutated. Here are the mutated foci.Position 232329258 doesn't seem to be mutated. Here are the mutated foci.Position 232329868 doesn't seem to be mutated. Here are the mutated foci.Position 232330276 doesn't seem to be mutated. Here are the mutated foci.Position 232330514 doesn't seem to be mutated. Here are the mutated foci.Position 232333263 doesn't seem to be mutated. Here are the mutated foci.Position 232335678 doesn't seem to be mutated. Here are the mutated foci.Position 10022064 doesn't seem to be mutated. Here are the mutated foci.Position 10023006 doesn't seem to be mutated. Here are the mutated foci.Position 10025078 doesn't seem to be mutated. Here are the mutated foci.Position 10026394 doesn't seem to be mutated. Here are the mutated foci.Position 10031995 doesn't seem to be mutated. Here are the mutated foci.Position 10034146 doesn't seem to be mutated. Here are the mutated foci.Position 10034167 doesn't seem to be mutated. Here are the mutated foci.Position 10036529 doesn't seem to be mutated. Here are the mutated foci.Position 10037724 doesn't seem to be mutated. Here are the mutated foci.Position 10038443 doesn't seem to be mutated. Here are the mutated foci.Position 10041857 doesn't seem to be mutated. Here are the mutated foci.Position 10044248 doesn't seem to be mutated. Here are the mutated foci.Position 10048739 doesn't seem to be mutated. Here are the mutated foci.Position 10052429 doesn't seem to be mutated. Here are the mutated foci.Position 10057286 doesn't seem to be mutated. Here are the mutated foci.Position 10057984 doesn't seem to be mutated. Here are the mutated foci.Position 10059662 doesn't seem to be mutated. Here are the mutated foci.Position 10059762 doesn't seem to be mutated. Here are the mutated foci.Position 10061019 doesn't seem to be mutated. Here are the mutated foci.Position 10061933 doesn't seem to be mutated. Here are the mutated foci.Position 10062898 doesn't seem to be mutated. Here are the mutated foci.Position 10074882 doesn't seem to be mutated. Here are the mutated foci.Position 10075222 doesn't seem to be mutated. Here are the mutated foci.Position 10075381 doesn't seem to be mutated. Here are the mutated foci.Position 10078689 doesn't seem to be mutated. Here are the mutated foci.Position 10083270 doesn't seem to be mutated. Here are the mutated foci.Position 10083614 doesn't seem to be mutated. Here are the mutated foci.Position 10087950 doesn't seem to be mutated. Here are the mutated foci.Position 10090750 doesn't seem to be mutated. Here are the mutated foci.Position 10096279 doesn't seem to be mutated. Here are the mutated foci.Position 10098472 doesn't seem to be mutated. Here are the mutated foci.Position 10100396 doesn't seem to be mutated. Here are the mutated foci.Position 10136491 doesn't seem to be mutated. Here are the mutated foci.Position 10137724 doesn't seem to be mutated. Here are the mutated foci.Position 10138211 doesn't seem to be mutated. Here are the mutated foci.Position 10138739 doesn't seem to be mutated. Here are the mutated foci.Position 10140778 doesn't seem to be mutated. Here are the mutated foci.Position 10148610 doesn't seem to be mutated. Here are the mutated foci.Position 10148879 doesn't seem to be mutated. Here are the mutated foci.Position 10149350 doesn't seem to be mutated. Here are the mutated foci.Position 10152192 doesn't seem to be mutated. Here are the mutated foci.Position 10152637 doesn't seem to be mutated. Here are the mutated foci.Position 10152815 doesn't seem to be mutated. Here are the mutated foci.Position 10153448 doesn't seem to be mutated. Here are the mutated foci.Position 10153569 doesn't seem to be mutated. Here are the mutated foci.Position 12590296 doesn't seem to be mutated. Here are the mutated foci.Position 12590501 doesn't seem to be mutated. Here are the mutated foci.Position 12595911 doesn't seem to be mutated. Here are the mutated foci.Position 12597556 doesn't seem to be mutated. Here are the mutated foci.Position 12605532 doesn't seem to be mutated. Here are the mutated foci.Position 12606898 doesn't seem to be mutated. Here are the mutated foci.Position 12609136 doesn't seem to be mutated. Here are the mutated foci.Position 12611846 doesn't seem to be mutated. Here are the mutated foci.Position 12612419 doesn't seem to be mutated. Here are the mutated foci.Position 12615911 doesn't seem to be mutated. Here are the mutated foci.Position 12616271 doesn't seem to be mutated. Here are the mutated foci.Position 12617426 doesn't seem to be mutated. Here are the mutated foci.Position 12619117 doesn't seem to be mutated. Here are the mutated foci.Position 12625436 doesn't seem to be mutated. Here are the mutated foci.Position 12625766 doesn't seem to be mutated. Here are the mutated foci.Position 12630062 doesn't seem to be mutated. Here are the mutated foci.Position 12632302 doesn't seem to be mutated. Here are the mutated foci.Position 12634404 doesn't seem to be mutated. Here are the mutated foci.Position 12636285 doesn't seem to be mutated. Here are the mutated foci.Position 12645956 doesn't seem to be mutated. Here are the mutated foci.Position 12648842 doesn't seem to be mutated. Here are the mutated foci.Position 12649504 doesn't seem to be mutated. Here are the mutated foci.Position 12650565 doesn't seem to be mutated. Here are the mutated foci.Position 12650586 doesn't seem to be mutated. Here are the mutated foci.Position 12653052 doesn't seem to be mutated. Here are the mutated foci.Position 12653199 doesn't seem to be mutated. Here are the mutated foci.Position 12655185 doesn't seem to be mutated. Here are the mutated foci.Position 12655293 doesn't seem to be mutated. Here are the mutated foci.Position 12655762 doesn't seem to be mutated. Here are the mutated foci.Position 12661980 doesn't seem to be mutated. Here are the mutated foci.Position 12665012 doesn't seem to be mutated. Here are the mutated foci.Position 12666821 doesn't seem to be mutated. Here are the mutated foci.Position 12666895 doesn't seem to be mutated. Here are the mutated foci.Position 14147913 doesn't seem to be mutated. Here are the mutated foci.Position 14151997 doesn't seem to be mutated. Here are the mutated foci.Position 14157135 doesn't seem to be mutated. Here are the mutated foci.Position 14158857 doesn't seem to be mutated. Here are the mutated foci.Position 14164690 doesn't seem to be mutated. Here are the mutated foci.Position 14165150 doesn't seem to be mutated. Here are the mutated foci.Position 14166923 doesn't seem to be mutated. Here are the mutated foci.Position 14172795 doesn't seem to be mutated. Here are the mutated foci.Position 14176129 doesn't seem to be mutated. Here are the mutated foci.Position 36993282 doesn't seem to be mutated. Here are the mutated foci.Position 36994444 doesn't seem to be mutated. Here are the mutated foci.Position 36995428 doesn't seem to be mutated. Here are the mutated foci.Position 36996100 doesn't seem to be mutated. Here are the mutated foci.Position 37012703 doesn't seem to be mutated. Here are the mutated foci.Position 37013011 doesn't seem to be mutated. Here are the mutated foci.Position 37015342 doesn't seem to be mutated. Here are the mutated foci.Position 37022716 doesn't seem to be mutated. Here are the mutated foci.Position 37033615 doesn't seem to be mutated. Here are the mutated foci.Position 37038346 doesn't seem to be mutated. Here are the mutated foci.Position 37038477 doesn't seem to be mutated. Here are the mutated foci.Position 37043280 doesn't seem to be mutated. Here are the mutated foci.Position 37044903 doesn't seem to be mutated. Here are the mutated foci.Position 37045817 doesn't seem to be mutated. Here are the mutated foci.Position 37046900 doesn't seem to be mutated. Here are the mutated foci.Position 48564183 doesn't seem to be mutated. Here are the mutated foci.Position 48569856 doesn't seem to be mutated. Here are the mutated foci.Position 48574941 doesn't seem to be mutated. Here are the mutated foci.Position 48575088 doesn't seem to be mutated. Here are the mutated foci.Position 48578876 doesn't seem to be mutated. Here are the mutated foci.Position 48581294 doesn't seem to be mutated. Here are the mutated foci.Position 48583014 doesn't seem to be mutated. Here are the mutated foci.Position 48584763 doesn't seem to be mutated. Here are the mutated foci.Position 48588158 doesn't seem to be mutated. Here are the mutated foci.Position 48592402 doesn't seem to be mutated. Here are the mutated foci.Position 52400697 doesn't seem to be mutated. Here are the mutated foci.Position 52403502 doesn't seem to be mutated. Here are the mutated foci.Position 69744345 doesn't seem to be mutated. Here are the mutated foci.Position 69744895 doesn't seem to be mutated. Here are the mutated foci.Position 69745285 doesn't seem to be mutated. Here are the mutated foci.Position 69746351 doesn't seem to be mutated. Here are the mutated foci.Position 69746944 doesn't seem to be mutated. Here are the mutated foci.Position 69748525 doesn't seem to be mutated. Here are the mutated foci.Position 69759927 doesn't seem to be mutated. Here are the mutated foci.Position 69760070 doesn't seem to be mutated. Here are the mutated foci.Position 69760738 doesn't seem to be mutated. Here are the mutated foci.Position 69761779 doesn't seem to be mutated. Here are the mutated foci.Position 69766233 doesn't seem to be mutated. Here are the mutated foci.Position 69767744 doesn't seem to be mutated. Here are the mutated foci.Position 69769045 doesn't seem to be mutated. Here are the mutated foci.Position 69769252 doesn't seem to be mutated. Here are the mutated foci.Position 69771343 doesn't seem to be mutated. Here are the mutated foci.Position 69771349 doesn't seem to be mutated. Here are the mutated foci.Position 69772686 doesn't seem to be mutated. Here are the mutated foci.Position 69774565 doesn't seem to be mutated. Here are the mutated foci.Position 69778221 doesn't seem to be mutated. Here are the mutated foci.Position 69796218 doesn't seem to be mutated. Here are the mutated foci.Position 69796488 doesn't seem to be mutated. Here are the mutated foci.Position 69798217 doesn't seem to be mutated. Here are the mutated foci.Position 69798457 doesn't seem to be mutated. Here are the mutated foci.Position 69803946 doesn't seem to be mutated. Here are the mutated foci.Position 69814106 doesn't seem to be mutated. Here are the mutated foci.Position 69824749 doesn't seem to be mutated. Here are the mutated foci.Position 69826331 doesn't seem to be mutated. Here are the mutated foci.Position 69826970 doesn't seem to be mutated. Here are the mutated foci.Position 69829007 doesn't seem to be mutated. Here are the mutated foci.Position 69834036 doesn't seem to be mutated. Here are the mutated foci.Position 69838750 doesn't seem to be mutated. Here are the mutated foci.Position 69840745 doesn't seem to be mutated. Here are the mutated foci.Position 69844789 doesn't seem to be mutated. Here are the mutated foci.Position 69845060 doesn't seem to be mutated. Here are the mutated foci.Position 69847915 doesn't seem to be mutated. Here are the mutated foci.Position 69851475 doesn't seem to be mutated. Here are the mutated foci.Position 69855925 doesn't seem to be mutated. Here are the mutated foci.Position 69857003 doesn't seem to be mutated. Here are the mutated foci.Position 69860517 doesn't seem to be mutated. Here are the mutated foci.Position 69866036 doesn't seem to be mutated. Here are the mutated foci.Position 69874678 doesn't seem to be mutated. Here are the mutated foci.Position 69875640 doesn't seem to be mutated. Here are the mutated foci.Position 69876067 doesn't seem to be mutated. Here are the mutated foci.Position 69881318 doesn't seem to be mutated. Here are the mutated foci.Position 69881464 doesn't seem to be mutated. Here are the mutated foci.Position 69889340 doesn't seem to be mutated. Here are the mutated foci.Position 69889372 doesn't seem to be mutated. Here are the mutated foci.Position 69890998 doesn't seem to be mutated. Here are the mutated foci.Position 69893843 doesn't seem to be mutated. Here are the mutated foci.Position 69900827 doesn't seem to be mutated. Here are the mutated foci.Position 69903267 doesn't seem to be mutated. Here are the mutated foci.Position 69903499 doesn't seem to be mutated. Here are the mutated foci.Position 69903871 doesn't seem to be mutated. Here are the mutated foci.Position 69904788 doesn't seem to be mutated. Here are the mutated foci.Position 69906710 doesn't seem to be mutated. Here are the mutated foci.Position 69907006 doesn't seem to be mutated. Here are the mutated foci.Position 69907551 doesn't seem to be mutated. Here are the mutated foci.Position 69908906 doesn't seem to be mutated. Here are the mutated foci.Position 69915007 doesn't seem to be mutated. Here are the mutated foci.Position 69915231 doesn't seem to be mutated. Here are the mutated foci.Position 69917108 doesn't seem to be mutated. Here are the mutated foci.Position 69932268 doesn't seem to be mutated. Here are the mutated foci.Position 69932325 doesn't seem to be mutated. Here are the mutated foci.Position 69932601 doesn't seem to be mutated. Here are the mutated foci.Position 69934525 doesn't seem to be mutated. Here are the mutated foci.Position 69946469 doesn't seem to be mutated. Here are the mutated foci.Position 69952354 doesn't seem to be mutated. Here are the mutated foci.Position 69959165 doesn't seem to be mutated. Here are the mutated foci.Position 69959661 doesn't seem to be mutated. Here are the mutated foci.Position 69960369 doesn't seem to be mutated. Here are the mutated foci.Position 69965031 doesn't seem to be mutated. Here are the mutated foci.Position 69965272 doesn't seem to be mutated. Here are the mutated foci.Position 69970758 doesn't seem to be mutated. Here are the mutated foci.Position 69972676 doesn't seem to be mutated. Here are the mutated foci.Position 122179769 doesn't seem to be mutated. Here are the mutated foci.Position 122180092 doesn't seem to be mutated. Here are the mutated foci.Position 122185757 doesn't seem to be mutated. Here are the mutated foci.Position 122187069 doesn't seem to be mutated. Here are the mutated foci.Position 122188139 doesn't seem to be mutated. Here are the mutated foci.Position 122190746 doesn't seem to be mutated. Here are the mutated foci.Position 122191470 doesn't seem to be mutated. Here are the mutated foci.Position 122193148 doesn't seem to be mutated. Here are the mutated foci.Position 122200075 doesn't seem to be mutated. Here are the mutated foci.Position 122213311 doesn't seem to be mutated. Here are the mutated foci.Position 122215707 doesn't seem to be mutated. Here are the mutated foci.Position 122218389 doesn't seem to be mutated. Here are the mutated foci.Position 122225873 doesn't seem to be mutated. Here are the mutated foci.Position 122227602 doesn't seem to be mutated. Here are the mutated foci.Position 122230461 doesn't seem to be mutated. Here are the mutated foci.Position 122233544 doesn't seem to be mutated. Here are the mutated foci.Position 122237132 doesn't seem to be mutated. Here are the mutated foci.Position 122240030 doesn't seem to be mutated. Here are the mutated foci.Position 122245918 doesn't seem to be mutated. Here are the mutated foci.Position 122247419 doesn't seem to be mutated. Here are the mutated foci.Position 122252717 doesn't seem to be mutated. Here are the mutated foci.Position 122255689 doesn't seem to be mutated. Here are the mutated foci.Position 122257260 doesn't seem to be mutated. Here are the mutated foci.Position 122258544 doesn't seem to be mutated. Here are the mutated foci.Position 122262178 doesn't seem to be mutated. Here are the mutated foci.Position 122262247 doesn't seem to be mutated. Here are the mutated foci.Position 122266096 doesn't seem to be mutated. Here are the mutated foci.Position 122266487 doesn't seem to be mutated. Here are the mutated foci.Position 122267153 doesn't seem to be mutated. Here are the mutated foci.Position 122268931 doesn't seem to be mutated. Here are the mutated foci.Position 122275422 doesn't seem to be mutated. Here are the mutated foci.Position 122278156 doesn't seem to be mutated. Here are the mutated foci.Position 122278782 doesn't seem to be mutated. Here are the mutated foci.Position 122284337 doesn't seem to be mutated. Here are the mutated foci.Position 122284966 doesn't seem to be mutated. Here are the mutated foci.Position 122285699 doesn't seem to be mutated. Here are the mutated foci.Position 122292939 doesn't seem to be mutated. Here are the mutated foci.Position 128475079 doesn't seem to be mutated. Here are the mutated foci.Position 128478426 doesn't seem to be mutated. Here are the mutated foci.Position 128481030 doesn't seem to be mutated. Here are the mutated foci.Position 128488623 doesn't seem to be mutated. Here are the mutated foci.Position 128488704 doesn't seem to be mutated. Here are the mutated foci.Position 128488921 doesn't seem to be mutated. Here are the mutated foci.Position 128490110 doesn't seem to be mutated. Here are the mutated foci.Position 128493245 doesn't seem to be mutated. Here are the mutated foci.Position 128495215 doesn't seem to be mutated. Here are the mutated foci.Position 128495834 doesn't seem to be mutated. Here are the mutated foci.Position 128496518 doesn't seem to be mutated. Here are the mutated foci.Position 128496722 doesn't seem to be mutated. Here are the mutated foci.Position 128497748 doesn't seem to be mutated. Here are the mutated foci.Position 158577921 doesn't seem to be mutated. Here are the mutated foci.Position 158579206 doesn't seem to be mutated. Here are the mutated foci.Position 158582518 doesn't seem to be mutated. Here are the mutated foci.Position 158585887 doesn't seem to be mutated. Here are the mutated foci.Position 158586474 doesn't seem to be mutated. Here are the mutated foci.Position 158586629 doesn't seem to be mutated. Here are the mutated foci.Position 158591308 doesn't seem to be mutated. Here are the mutated foci.Position 158593386 doesn't seem to be mutated. Here are the mutated foci.Position 158596503 doesn't seem to be mutated. Here are the mutated foci.Position 158599554 doesn't seem to be mutated. Here are the mutated foci.Position 158600555 doesn't seem to be mutated. Here are the mutated foci.Position 158600812 doesn't seem to be mutated. Here are the mutated foci.Position 158600825 doesn't seem to be mutated. Here are the mutated foci.Position 158605473 doesn't seem to be mutated. Here are the mutated foci.Position 169759749 doesn't seem to be mutated. Here are the mutated foci.Position 169761682 doesn't seem to be mutated. Here are the mutated foci.Position 179154568 doesn't seem to be mutated. Here are the mutated foci.Position 179157057 doesn't seem to be mutated. Here are the mutated foci.Position 179180209 doesn't seem to be mutated. Here are the mutated foci.Position 179182127 doesn't seem to be mutated. Here are the mutated foci.Position 179187769 doesn't seem to be mutated. Here are the mutated foci.Position 179195544 doesn't seem to be mutated. Here are the mutated foci.Position 179197038 doesn't seem to be mutated. Here are the mutated foci.Position 179200166 doesn't seem to be mutated. Here are the mutated foci.Position 179200564 doesn't seem to be mutated. Here are the mutated foci.Position 179206215 doesn't seem to be mutated. Here are the mutated foci.Position 179206918 doesn't seem to be mutated. Here are the mutated foci.Position 179207280 doesn't seem to be mutated. Here are the mutated foci.Position 179209062 doesn't seem to be mutated. Here are the mutated foci.Position 179211743 doesn't seem to be mutated. Here are the mutated foci.Position 179213687 doesn't seem to be mutated. Here are the mutated foci.Position 179239523 doesn't seem to be mutated. Here are the mutated foci.Position 1789650 doesn't seem to be mutated. Here are the mutated foci.Position 1792841 doesn't seem to be mutated. Here are the mutated foci.Position 1797711 doesn't seem to be mutated. Here are the mutated foci.Position 1798619 doesn't seem to be mutated. Here are the mutated foci.Position 1801661 doesn't seem to be mutated. Here are the mutated foci.Position 1802520 doesn't seem to be mutated. Here are the mutated foci.Position 1803126 doesn't seem to be mutated. Here are the mutated foci.Position 41739867 doesn't seem to be mutated. Here are the mutated foci.Position 41742979 doesn't seem to be mutated. Here are the mutated foci.Position 41751392 doesn't seem to be mutated. Here are the mutated foci.Position 54230352 doesn't seem to be mutated. Here are the mutated foci.Position 54243137 doesn't seem to be mutated. Here are the mutated foci.Position 54248407 doesn't seem to be mutated. Here are the mutated foci.Position 54267392 doesn't seem to be mutated. Here are the mutated foci.Position 54270342 doesn't seem to be mutated. Here are the mutated foci.Position 54270616 doesn't seem to be mutated. Here are the mutated foci.Position 54302506 doesn't seem to be mutated. Here are the mutated foci.Position 54654947 doesn't seem to be mutated. Here are the mutated foci.Position 54657086 doesn't seem to be mutated. Here are the mutated foci.Position 54666275 doesn't seem to be mutated. Here are the mutated foci.Position 54667074 doesn't seem to be mutated. Here are the mutated foci.Position 54670452 doesn't seem to be mutated. Here are the mutated foci.Position 54671201 doesn't seem to be mutated. Here are the mutated foci.Position 54674252 doesn't seem to be mutated. Here are the mutated foci.Position 54675827 doesn't seem to be mutated. Here are the mutated foci.Position 54681267 doesn't seem to be mutated. Here are the mutated foci.Position 54686606 doesn't seem to be mutated. Here are the mutated foci.Position 54687441 doesn't seem to be mutated. Here are the mutated foci.Position 54696559 doesn't seem to be mutated. Here are the mutated foci.Position 54700859 doesn't seem to be mutated. Here are the mutated foci.Position 54710732 doesn't seem to be mutated. Here are the mutated foci.Position 54710906 doesn't seem to be mutated. Here are the mutated foci.Position 54716966 doesn't seem to be mutated. Here are the mutated foci.Position 54724371 doesn't seem to be mutated. Here are the mutated foci.Position 54727666 doesn't seem to be mutated. Here are the mutated foci.Position 54728846 doesn't seem to be mutated. Here are the mutated foci.Position 54731559 doesn't seem to be mutated. Here are the mutated foci.Position 54731999 doesn't seem to be mutated. Here are the mutated foci.Position 54733791 doesn't seem to be mutated. Here are the mutated foci.Position 54734683 doesn't seem to be mutated. Here are the mutated foci.Position 54736827 doesn't seem to be mutated. Here are the mutated foci.Position 54737997 doesn't seem to be mutated. Here are the mutated foci.Position 54739022 doesn't seem to be mutated. Here are the mutated foci.Position 54739864 doesn't seem to be mutated. Here are the mutated foci.Position 54742832 doesn't seem to be mutated. Here are the mutated foci.Position 56903200 doesn't seem to be mutated. Here are the mutated foci.Position 56906670 doesn't seem to be mutated. Here are the mutated foci.Position 56907524 doesn't seem to be mutated. Here are the mutated foci.Position 56910428 doesn't seem to be mutated. Here are the mutated foci.Position 56914964 doesn't seem to be mutated. Here are the mutated foci.Position 56918865 doesn't seem to be mutated. Here are the mutated foci.Position 56919114 doesn't seem to be mutated. Here are the mutated foci.Position 56919670 doesn't seem to be mutated. Here are the mutated foci.Position 56920717 doesn't seem to be mutated. Here are the mutated foci.Position 56920874 doesn't seem to be mutated. Here are the mutated foci.Position 56923830 doesn't seem to be mutated. Here are the mutated foci.Position 56924540 doesn't seem to be mutated. Here are the mutated foci.Position 56924918 doesn't seem to be mutated. Here are the mutated foci.Position 56926114 doesn't seem to be mutated. Here are the mutated foci.Position 56926247 doesn't seem to be mutated. Here are the mutated foci.Position 56928087 doesn't seem to be mutated. Here are the mutated foci.Position 56928302 doesn't seem to be mutated. Here are the mutated foci.Position 56931280 doesn't seem to be mutated. Here are the mutated foci.Position 56934064 doesn't seem to be mutated. Here are the mutated foci.Position 56937100 doesn't seem to be mutated. Here are the mutated foci.Position 56937359 doesn't seem to be mutated. Here are the mutated foci.Position 56940611 doesn't seem to be mutated. Here are the mutated foci.Position 56940775 doesn't seem to be mutated. Here are the mutated foci.Position 56943054 doesn't seem to be mutated. Here are the mutated foci.Position 56946148 doesn't seem to be mutated. Here are the mutated foci.Position 56946382 doesn't seem to be mutated. Here are the mutated foci.Position 56950788 doesn't seem to be mutated. Here are the mutated foci.Position 222196 doesn't seem to be mutated. Here are the mutated foci.Position 223508 doesn't seem to be mutated. Here are the mutated foci.Position 224090 doesn't seem to be mutated. Here are the mutated foci.Position 224310 doesn't seem to be mutated. Here are the mutated foci.Position 225493 doesn't seem to be mutated. Here are the mutated foci.Position 226845 doesn't seem to be mutated. Here are the mutated foci.Position 227532 doesn't seem to be mutated. Here are the mutated foci.Position 227561 doesn't seem to be mutated. Here are the mutated foci.Position 228163 doesn't seem to be mutated. Here are the mutated foci.Position 228883 doesn't seem to be mutated. Here are the mutated foci.Position 230481 doesn't seem to be mutated. Here are the mutated foci.Position 233566 doesn't seem to be mutated. Here are the mutated foci.Position 234247 doesn't seem to be mutated. Here are the mutated foci.Position 235214 doesn't seem to be mutated. Here are the mutated foci.Position 239832 doesn't seem to be mutated. Here are the mutated foci.Position 240813 doesn't seem to be mutated. Here are the mutated foci.Position 242171 doesn't seem to be mutated. Here are the mutated foci.Position 250611 doesn't seem to be mutated. Here are the mutated foci.Position 251712 doesn't seem to be mutated. Here are the mutated foci.Position 252976 doesn't seem to be mutated. Here are the mutated foci.Position 254939 doesn't seem to be mutated. Here are the mutated foci.Position 256510 doesn't seem to be mutated. Here are the mutated foci.Position 896429 doesn't seem to be mutated. Here are the mutated foci.Position 900137 doesn't seem to be mutated. Here are the mutated foci.Position 900999 doesn't seem to be mutated. Here are the mutated foci.Position 906324 doesn't seem to be mutated. Here are the mutated foci.Position 909247 doesn't seem to be mutated. Here are the mutated foci.Position 914720 doesn't seem to be mutated. Here are the mutated foci.Position 916166 doesn't seem to be mutated. Here are the mutated foci.Position 917065 doesn't seem to be mutated. Here are the mutated foci.Position 920083 doesn't seem to be mutated. Here are the mutated foci.Position 920304 doesn't seem to be mutated. Here are the mutated foci.Position 922139 doesn't seem to be mutated. Here are the mutated foci.Position 923049 doesn't seem to be mutated. Here are the mutated foci.Position 1250023 doesn't seem to be mutated. Here are the mutated foci.Position 1258008 doesn't seem to be mutated. Here are the mutated foci.Position 1265350 doesn't seem to be mutated. Here are the mutated foci.Position 1267891 doesn't seem to be mutated. Here are the mutated foci.Position 1269461 doesn't seem to be mutated. Here are the mutated foci.Position 1269711 doesn't seem to be mutated. Here are the mutated foci.Position 1270984 doesn't seem to be mutated. Here are the mutated foci.Position 1272435 doesn't seem to be mutated. Here are the mutated foci.Position 1274522 doesn't seem to be mutated. Here are the mutated foci.Position 1274612 doesn't seem to be mutated. Here are the mutated foci.Position 1275101 doesn't seem to be mutated. Here are the mutated foci.Position 1276919 doesn't seem to be mutated. Here are the mutated foci.Position 1278812 doesn't seem to be mutated. Here are the mutated foci.Position 1279513 doesn't seem to be mutated. Here are the mutated foci.Position 1287932 doesn't seem to be mutated. Here are the mutated foci.Position 1288837 doesn't seem to be mutated. Here are the mutated foci.Position 1293101 doesn't seem to be mutated. Here are the mutated foci.Position 1295442 doesn't seem to be mutated. Here are the mutated foci.Position 37808961 doesn't seem to be mutated. Here are the mutated foci.Position 37813681 doesn't seem to be mutated. Here are the mutated foci.Position 37817239 doesn't seem to be mutated. Here are the mutated foci.Position 37822528 doesn't seem to be mutated. Here are the mutated foci.Position 37828121 doesn't seem to be mutated. Here are the mutated foci.Position 37834774 doesn't seem to be mutated. Here are the mutated foci.Position 37835212 doesn't seem to be mutated. Here are the mutated foci.Position 37835405 doesn't seem to be mutated. Here are the mutated foci.Position 37835780 doesn't seem to be mutated. Here are the mutated foci.Position 37837643 doesn't seem to be mutated. Here are the mutated foci.Position 37838631 doesn't seem to be mutated. Here are the mutated foci.Position 80655193 doesn't seem to be mutated. Here are the mutated foci.Position 80655327 doesn't seem to be mutated. Here are the mutated foci.Position 80656156 doesn't seem to be mutated. Here are the mutated foci.Position 80658283 doesn't seem to be mutated. Here are the mutated foci.Position 80658312 doesn't seem to be mutated. Here are the mutated foci.Position 80659672 doesn't seem to be mutated. Here are the mutated foci.Position 80663079 doesn't seem to be mutated. Here are the mutated foci.Position 80668657 doesn't seem to be mutated. Here are the mutated foci.Position 80672718 doesn't seem to be mutated. Here are the mutated foci.Position 80676863 doesn't seem to be mutated. Here are the mutated foci.Position 80678988 doesn't seem to be mutated. Here are the mutated foci.Position 80680175 doesn't seem to be mutated. Here are the mutated foci.Position 80684753 doesn't seem to be mutated. Here are the mutated foci.Position 80690139 doesn't seem to be mutated. Here are the mutated foci.Position 80700786 doesn't seem to be mutated. Here are the mutated foci.Position 80704165 doesn't seem to be mutated. Here are the mutated foci.Position 80704328 doesn't seem to be mutated. Here are the mutated foci.Position 80708058 doesn't seem to be mutated. Here are the mutated foci.Position 80709361 doesn't seem to be mutated. Here are the mutated foci.Position 80710838 doesn't seem to be mutated. Here are the mutated foci.Position 80711951 doesn't seem to be mutated. Here are the mutated foci.Position 80717248 doesn't seem to be mutated. Here are the mutated foci.Position 80717763 doesn't seem to be mutated. Here are the mutated foci.Position 80717765 doesn't seem to be mutated. Here are the mutated foci.Position 80719134 doesn't seem to be mutated. Here are the mutated foci.Position 80719388 doesn't seem to be mutated. Here are the mutated foci.Position 80727908 doesn't seem to be mutated. Here are the mutated foci.Position 80731058 doesn't seem to be mutated. Here are the mutated foci.Position 80734381 doesn't seem to be mutated. Here are the mutated foci.Position 80735467 doesn't seem to be mutated. Here are the mutated foci.Position 80752293 doesn't seem to be mutated. Here are the mutated foci.Position 80757059 doesn't seem to be mutated. Here are the mutated foci.Position 80759768 doesn't seem to be mutated. Here are the mutated foci.Position 80763099 doesn't seem to be mutated. Here are the mutated foci.Position 80768335 doesn't seem to be mutated. Here are the mutated foci.Position 80769434 doesn't seem to be mutated. Here are the mutated foci.Position 80774575 doesn't seem to be mutated. Here are the mutated foci.Position 80776925 doesn't seem to be mutated. Here are the mutated foci.Position 80779716 doesn't seem to be mutated. Here are the mutated foci.Position 80779891 doesn't seem to be mutated. Here are the mutated foci.Position 80789989 doesn't seem to be mutated. Here are the mutated foci.Position 80797063 doesn't seem to be mutated. Here are the mutated foci.Position 80798673 doesn't seem to be mutated. Here are the mutated foci.Position 80800391 doesn't seem to be mutated. Here are the mutated foci.Position 80801765 doesn't seem to be mutated. Here are the mutated foci.Position 80802860 doesn't seem to be mutated. Here are the mutated foci.Position 80809691 doesn't seem to be mutated. Here are the mutated foci.Position 80809718 doesn't seem to be mutated. Here are the mutated foci.Position 80816266 doesn't seem to be mutated. Here are the mutated foci.Position 80817560 doesn't seem to be mutated. Here are the mutated foci.Position 80819090 doesn't seem to be mutated. Here are the mutated foci.Position 80831982 doesn't seem to be mutated. Here are the mutated foci.Position 80842282 doesn't seem to be mutated. Here are the mutated foci.Position 80847773 doesn't seem to be mutated. Here are the mutated foci.Position 80847975 doesn't seem to be mutated. Here are the mutated foci.Position 80850543 doesn't seem to be mutated. Here are the mutated foci.Position 80850887 doesn't seem to be mutated. Here are the mutated foci.Position 80856002 doesn't seem to be mutated. Here are the mutated foci.Position 80864799 doesn't seem to be mutated. Here are the mutated foci.Position 80876635 doesn't seem to be mutated. Here are the mutated foci.Position 80876637 doesn't seem to be mutated. Here are the mutated foci.Position 80878118 doesn't seem to be mutated. Here are the mutated foci.Position 112719579 doesn't seem to be mutated. Here are the mutated foci.Position 112724818 doesn't seem to be mutated. Here are the mutated foci.Position 112731276 doesn't seem to be mutated. Here are the mutated foci.Position 112733582 doesn't seem to be mutated. Here are the mutated foci.Position 112741420 doesn't seem to be mutated. Here are the mutated foci.Position 112745029 doesn't seem to be mutated. Here are the mutated foci.Position 112747248 doesn't seem to be mutated. Here are the mutated foci.Position 112748049 doesn't seem to be mutated. Here are the mutated foci.Position 112754458 doesn't seem to be mutated. Here are the mutated foci.Position 112756437 doesn't seem to be mutated. Here are the mutated foci.Position 112760339 doesn't seem to be mutated. Here are the mutated foci.Position 112760841 doesn't seem to be mutated. Here are the mutated foci.Position 112761501 doesn't seem to be mutated. Here are the mutated foci.Position 112762210 doesn't seem to be mutated. Here are the mutated foci.Position 112762431 doesn't seem to be mutated. Here are the mutated foci.Position 112771909 doesn't seem to be mutated. Here are the mutated foci.Position 112772064 doesn't seem to be mutated. Here are the mutated foci.Position 112774505 doesn't seem to be mutated. Here are the mutated foci.Position 112783958 doesn't seem to be mutated. Here are the mutated foci.Position 112785197 doesn't seem to be mutated. Here are the mutated foci.Position 112793655 doesn't seem to be mutated. Here are the mutated foci.Position 112795434 doesn't seem to be mutated. Here are the mutated foci.Position 112797437 doesn't seem to be mutated. Here are the mutated foci.Position 112798711 doesn't seem to be mutated. Here are the mutated foci.Position 112800832 doesn't seem to be mutated. Here are the mutated foci.Position 112801759 doesn't seem to be mutated. Here are the mutated foci.Position 112801934 doesn't seem to be mutated. Here are the mutated foci.Position 112812924 doesn't seem to be mutated. Here are the mutated foci.Position 112813773 doesn't seem to be mutated. Here are the mutated foci.Position 112815334 doesn't seem to be mutated. Here are the mutated foci.Position 112815840 doesn't seem to be mutated. Here are the mutated foci.Position 112821575 doesn't seem to be mutated. Here are the mutated foci.Position 112827678 doesn't seem to be mutated. Here are the mutated foci.Position 112828592 doesn't seem to be mutated. Here are the mutated foci.Position 112832291 doesn't seem to be mutated. Here are the mutated foci.Position 112833252 doesn't seem to be mutated. Here are the mutated foci.Position 112833961 doesn't seem to be mutated. Here are the mutated foci.Position 112834408 doesn't seem to be mutated. Here are the mutated foci.Position 112838972 doesn't seem to be mutated. Here are the mutated foci.Position 112840029 doesn't seem to be mutated. Here are the mutated foci.Position 112842693 doesn't seem to be mutated. Here are the mutated foci.Position 112848706 doesn't seem to be mutated. Here are the mutated foci.Position 112849688 doesn't seem to be mutated. Here are the mutated foci.Position 112850766 doesn't seem to be mutated. Here are the mutated foci.Position 132556567 doesn't seem to be mutated. Here are the mutated foci.Position 132556855 doesn't seem to be mutated. Here are the mutated foci.Position 132562931 doesn't seem to be mutated. Here are the mutated foci.Position 132570159 doesn't seem to be mutated. Here are the mutated foci.Position 132573340 doesn't seem to be mutated. Here are the mutated foci.Position 132585034 doesn't seem to be mutated. Here are the mutated foci.Position 132585243 doesn't seem to be mutated. Here are the mutated foci.Position 132587228 doesn't seem to be mutated. Here are the mutated foci.Position 132590426 doesn't seem to be mutated. Here are the mutated foci.Position 132599426 doesn't seem to be mutated. Here are the mutated foci.Position 132599502 doesn't seem to be mutated. Here are the mutated foci.Position 132601482 doesn't seem to be mutated. Here are the mutated foci.Position 132601733 doesn't seem to be mutated. Here are the mutated foci.Position 132601869 doesn't seem to be mutated. Here are the mutated foci.Position 132603235 doesn't seem to be mutated. Here are the mutated foci.Position 132606094 doesn't seem to be mutated. Here are the mutated foci.Position 132608075 doesn't seem to be mutated. Here are the mutated foci.Position 132611246 doesn't seem to be mutated. Here are the mutated foci.Position 132612605 doesn't seem to be mutated. Here are the mutated foci.Position 132623186 doesn't seem to be mutated. Here are the mutated foci.Position 132623281 doesn't seem to be mutated. Here are the mutated foci.Position 132624805 doesn't seem to be mutated. Here are the mutated foci.Position 132626983 doesn't seem to be mutated. Here are the mutated foci.Position 132637377 doesn't seem to be mutated. Here are the mutated foci.Position 132638197 doesn't seem to be mutated. Here are the mutated foci.Position 132641610 doesn't seem to be mutated. Here are the mutated foci.Position 132644275 doesn't seem to be mutated. Here are the mutated foci.Position 132646259 doesn't seem to be mutated. Here are the mutated foci.Position 138609876 doesn't seem to be mutated. Here are the mutated foci.Position 138634416 doesn't seem to be mutated. Here are the mutated foci.Position 138637956 doesn't seem to be mutated. Here are the mutated foci.Position 138640351 doesn't seem to be mutated. Here are the mutated foci.Position 138640511 doesn't seem to be mutated. Here are the mutated foci.Position 138640569 doesn't seem to be mutated. Here are the mutated foci.Position 138646797 doesn't seem to be mutated. Here are the mutated foci.Position 138654222 doesn't seem to be mutated. Here are the mutated foci.Position 138659232 doesn't seem to be mutated. Here are the mutated foci.Position 138666153 doesn't seem to be mutated. Here are the mutated foci.Position 138667251 doesn't seem to be mutated. Here are the mutated foci.Position 138677722 doesn't seem to be mutated. Here are the mutated foci.Position 138678945 doesn't seem to be mutated. Here are the mutated foci.Position 138679363 doesn't seem to be mutated. Here are the mutated foci.Position 138684083 doesn't seem to be mutated. Here are the mutated foci.Position 138684156 doesn't seem to be mutated. Here are the mutated foci.Position 138684521 doesn't seem to be mutated. Here are the mutated foci.Position 138688926 doesn't seem to be mutated. Here are the mutated foci.Position 138696637 doesn't seem to be mutated. Here are the mutated foci.Position 138697541 doesn't seem to be mutated. Here are the mutated foci.Position 138704747 doesn't seem to be mutated. Here are the mutated foci.Position 138717701 doesn't seem to be mutated. Here are the mutated foci.Position 138718951 doesn't seem to be mutated. Here are the mutated foci.Position 138722185 doesn't seem to be mutated. Here are the mutated foci.Position 138723039 doesn't seem to be mutated. Here are the mutated foci.Position 138723094 doesn't seem to be mutated. Here are the mutated foci.Position 138725900 doesn't seem to be mutated. Here are the mutated foci.Position 138726560 doesn't seem to be mutated. Here are the mutated foci.Position 138727142 doesn't seem to be mutated. Here are the mutated foci.Position 138736602 doesn't seem to be mutated. Here are the mutated foci.Position 138738009 doesn't seem to be mutated. Here are the mutated foci.Position 138753302 doesn't seem to be mutated. Here are the mutated foci.Position 138756133 doesn't seem to be mutated. Here are the mutated foci.Position 138759188 doesn't seem to be mutated. Here are the mutated foci.Position 138770558 doesn't seem to be mutated. Here are the mutated foci.Position 138774777 doesn't seem to be mutated. Here are the mutated foci.Position 138775889 doesn't seem to be mutated. Here are the mutated foci.Position 138776776 doesn't seem to be mutated. Here are the mutated foci.Position 138778286 doesn't seem to be mutated. Here are the mutated foci.Position 138779723 doesn't seem to be mutated. Here are the mutated foci.Position 138781041 doesn't seem to be mutated. Here are the mutated foci.Position 138785101 doesn't seem to be mutated. Here are the mutated foci.Position 138786999 doesn't seem to be mutated. Here are the mutated foci.Position 138796501 doesn't seem to be mutated. Here are the mutated foci.Position 138800633 doesn't seem to be mutated. Here are the mutated foci.Position 138803598 doesn't seem to be mutated. Here are the mutated foci.Position 138807129 doesn't seem to be mutated. Here are the mutated foci.Position 138811716 doesn't seem to be mutated. Here are the mutated foci.Position 138814762 doesn't seem to be mutated. Here are the mutated foci.Position 138819727 doesn't seem to be mutated. Here are the mutated foci.Position 138820294 doesn't seem to be mutated. Here are the mutated foci.Position 138835121 doesn't seem to be mutated. Here are the mutated foci.Position 138839224 doesn't seem to be mutated. Here are the mutated foci.Position 138843295 doesn't seem to be mutated. Here are the mutated foci.Position 138846760 doesn't seem to be mutated. Here are the mutated foci.Position 138855125 doesn't seem to be mutated. Here are the mutated foci.Position 138855196 doesn't seem to be mutated. Here are the mutated foci.Position 138858972 doesn't seem to be mutated. Here are the mutated foci.Position 138860378 doesn't seem to be mutated. Here are the mutated foci.Position 138863452 doesn't seem to be mutated. Here are the mutated foci.Position 138864256 doesn't seem to be mutated. Here are the mutated foci.Position 138880569 doesn't seem to be mutated. Here are the mutated foci.Position 138882454 doesn't seem to be mutated. Here are the mutated foci.Position 138885606 doesn't seem to be mutated. Here are the mutated foci.Position 138888505 doesn't seem to be mutated. Here are the mutated foci.Position 138891485 doesn't seem to be mutated. Here are the mutated foci.Position 138892842 doesn't seem to be mutated. Here are the mutated foci.Position 138893156 doesn't seem to be mutated. Here are the mutated foci.Position 138896875 doesn't seem to be mutated. Here are the mutated foci.Position 138897874 doesn't seem to be mutated. Here are the mutated foci.Position 138899999 doesn't seem to be mutated. Here are the mutated foci.Position 138902564 doesn't seem to be mutated. Here are the mutated foci.Position 138902889 doesn't seem to be mutated. Here are the mutated foci.Position 138904695 doesn't seem to be mutated. Here are the mutated foci.Position 138908395 doesn't seem to be mutated. Here are the mutated foci.Position 138911137 doesn't seem to be mutated. Here are the mutated foci.Position 138911168 doesn't seem to be mutated. Here are the mutated foci.Position 138919775 doesn't seem to be mutated. Here are the mutated foci.Position 138920674 doesn't seem to be mutated. Here are the mutated foci.Position 138935866 doesn't seem to be mutated. Here are the mutated foci.Position 157149476 doesn't seem to be mutated. Here are the mutated foci.Position 157173106 doesn't seem to be mutated. Here are the mutated foci.Position 157173691 doesn't seem to be mutated. Here are the mutated foci.Position 157176152 doesn't seem to be mutated. Here are the mutated foci.Position 157186380 doesn't seem to be mutated. Here are the mutated foci.Position 157191336 doesn't seem to be mutated. Here are the mutated foci.Position 157200956 doesn't seem to be mutated. Here are the mutated foci.Position 157201839 doesn't seem to be mutated. Here are the mutated foci.Position 157203899 doesn't seem to be mutated. Here are the mutated foci.Position 157204972 doesn't seem to be mutated. Here are the mutated foci.Position 157209200 doesn't seem to be mutated. Here are the mutated foci.Position 157209204 doesn't seem to be mutated. Here are the mutated foci.Position 157209263 doesn't seem to be mutated. Here are the mutated foci.Position 157213693 doesn't seem to be mutated. Here are the mutated foci.Position 157219350 doesn't seem to be mutated. Here are the mutated foci.Position 157219966 doesn't seem to be mutated. Here are the mutated foci.Position 157223655 doesn't seem to be mutated. Here are the mutated foci.Position 157226239 doesn't seem to be mutated. Here are the mutated foci.Position 157234155 doesn't seem to be mutated. Here are the mutated foci.Position 157239920 doesn't seem to be mutated. Here are the mutated foci.Position 157241621 doesn't seem to be mutated. Here are the mutated foci.Position 157242834 doesn't seem to be mutated. Here are the mutated foci.Position 157242872 doesn't seem to be mutated. Here are the mutated foci.Position 157247268 doesn't seem to be mutated. Here are the mutated foci.Position 157247582 doesn't seem to be mutated. Here are the mutated foci.Position 157248170 doesn't seem to be mutated. Here are the mutated foci.Position 157248405 doesn't seem to be mutated. Here are the mutated foci.Position 157253779 doesn't seem to be mutated. Here are the mutated foci.Position 157254195 doesn't seem to be mutated. Here are the mutated foci.Position 157258604 doesn't seem to be mutated. Here are the mutated foci.Position 177128867 doesn't seem to be mutated. Here are the mutated foci.Position 177131595 doesn't seem to be mutated. Here are the mutated foci.Position 177131670 doesn't seem to be mutated. Here are the mutated foci.Position 177132384 doesn't seem to be mutated. Here are the mutated foci.Position 177135068 doesn't seem to be mutated. Here are the mutated foci.Position 177143040 doesn't seem to be mutated. Here are the mutated foci.Position 177145514 doesn't seem to be mutated. Here are the mutated foci.Position 177150175 doesn't seem to be mutated. Here are the mutated foci.Position 177152010 doesn't seem to be mutated. Here are the mutated foci.Position 177152843 doesn't seem to be mutated. Here are the mutated foci.Position 177154036 doesn't seem to be mutated. Here are the mutated foci.Position 177154975 doesn't seem to be mutated. Here are the mutated foci.Position 177163987 doesn't seem to be mutated. Here are the mutated foci.Position 177164215 doesn't seem to be mutated. Here are the mutated foci.Position 177164373 doesn't seem to be mutated. Here are the mutated foci.Position 177164680 doesn't seem to be mutated. Here are the mutated foci.Position 177165553 doesn't seem to be mutated. Here are the mutated foci.Position 177169590 doesn't seem to be mutated. Here are the mutated foci.Position 177170136 doesn't seem to be mutated. Here are the mutated foci.Position 177170317 doesn't seem to be mutated. Here are the mutated foci.Position 177171222 doesn't seem to be mutated. Here are the mutated foci.Position 177174698 doesn't seem to be mutated. Here are the mutated foci.Position 177175033 doesn't seem to be mutated. Here are the mutated foci.Position 177177430 doesn't seem to be mutated. Here are the mutated foci.Position 177177597 doesn't seem to be mutated. Here are the mutated foci.Position 177179302 doesn't seem to be mutated. Here are the mutated foci.Position 177186350 doesn't seem to be mutated. Here are the mutated foci.Position 177186879 doesn't seem to be mutated. Here are the mutated foci.Position 177188844 doesn't seem to be mutated. Here are the mutated foci.Position 177190432 doesn't seem to be mutated. Here are the mutated foci.Position 177199757 doesn't seem to be mutated. Here are the mutated foci.Position 177200093 doesn't seem to be mutated. Here are the mutated foci.Position 177200575 doesn't seem to be mutated. Here are the mutated foci.Position 177202114 doesn't seem to be mutated. Here are the mutated foci.Position 177203019 doesn't seem to be mutated. Here are the mutated foci.Position 177204549 doesn't seem to be mutated. Here are the mutated foci.Position 177205024 doesn't seem to be mutated. Here are the mutated foci.Position 177205186 doesn't seem to be mutated. Here are the mutated foci.Position 177207369 doesn't seem to be mutated. Here are the mutated foci.Position 177208894 doesn't seem to be mutated. Here are the mutated foci.Position 177213689 doesn't seem to be mutated. Here are the mutated foci.Position 177215783 doesn't seem to be mutated. Here are the mutated foci.Position 177219908 doesn't seem to be mutated. Here are the mutated foci.Position 177225187 doesn't seem to be mutated. Here are the mutated foci.Position 177228735 doesn't seem to be mutated. Here are the mutated foci.Position 177233400 doesn't seem to be mutated. Here are the mutated foci.Position 177234870 doesn't seem to be mutated. Here are the mutated foci.Position 177235826 doesn't seem to be mutated. Here are the mutated foci.Position 177239258 doesn't seem to be mutated. Here are the mutated foci.Position 177241483 doesn't seem to be mutated. Here are the mutated foci.Position 177253638 doesn't seem to be mutated. Here are the mutated foci.Position 177255322 doesn't seem to be mutated. Here are the mutated foci.Position 177257510 doesn't seem to be mutated. Here are the mutated foci.Position 177258083 doesn't seem to be mutated. Here are the mutated foci.Position 177258272 doesn't seem to be mutated. Here are the mutated foci.Position 177263947 doesn't seem to be mutated. Here are the mutated foci.Position 177265035 doesn't seem to be mutated. Here are the mutated foci.Position 177267478 doesn't seem to be mutated. Here are the mutated foci.Position 177270182 doesn't seem to be mutated. Here are the mutated foci.Position 177272815 doesn't seem to be mutated. Here are the mutated foci.Position 177274533 doesn't seem to be mutated. Here are the mutated foci.Position 177276626 doesn't seem to be mutated. Here are the mutated foci.Position 177277429 doesn't seem to be mutated. Here are the mutated foci.Position 177279475 doesn't seem to be mutated. Here are the mutated foci.Position 177279870 doesn't seem to be mutated. Here are the mutated foci.Position 177284241 doesn't seem to be mutated. Here are the mutated foci.Position 177284981 doesn't seem to be mutated. Here are the mutated foci.Position 177285518 doesn't seem to be mutated. Here are the mutated foci.Position 177289859 doesn't seem to be mutated. Here are the mutated foci.Position 177293939 doesn't seem to be mutated. Here are the mutated foci.Position 178154713 doesn't seem to be mutated. Here are the mutated foci.Position 26087255 doesn't seem to be mutated. Here are the mutated foci.Position 26090316 doesn't seem to be mutated. Here are the mutated foci.Position 26090976 doesn't seem to be mutated. Here are the mutated foci.Position 26092045 doesn't seem to be mutated. Here are the mutated foci.Position 26092849 doesn't seem to be mutated. Here are the mutated foci.Position 26094034 doesn't seem to be mutated. Here are the mutated foci.Position 26097194 doesn't seem to be mutated. Here are the mutated foci.Position 26097707 doesn't seem to be mutated. Here are the mutated foci.Position 26099464 doesn't seem to be mutated. Here are the mutated foci.Position 26099606 doesn't seem to be mutated. Here are the mutated foci.Position 26099844 doesn't seem to be mutated. Here are the mutated foci.Position 26100496 doesn't seem to be mutated. Here are the mutated foci.Position 34421437 doesn't seem to be mutated. Here are the mutated foci.Position 34426672 doesn't seem to be mutated. Here are the mutated foci.Position 34427767 doesn't seem to be mutated. Here are the mutated foci.Position 34429184 doesn't seem to be mutated. Here are the mutated foci.Position 35450194 doesn't seem to be mutated. Here are the mutated foci.Position 35452792 doesn't seem to be mutated. Here are the mutated foci.Position 35459734 doesn't seem to be mutated. Here are the mutated foci.Position 35461186 doesn't seem to be mutated. Here are the mutated foci.Position 35464387 doesn't seem to be mutated. Here are the mutated foci.Position 35464764 doesn't seem to be mutated. Here are the mutated foci.Position 43578114 doesn't seem to be mutated. Here are the mutated foci.Position 43580624 doesn't seem to be mutated. Here are the mutated foci.Position 43580850 doesn't seem to be mutated. Here are the mutated foci.Position 43581298 doesn't seem to be mutated. Here are the mutated foci.Position 43590561 doesn't seem to be mutated. Here are the mutated foci.Position 43595166 doesn't seem to be mutated. Here are the mutated foci.Position 43595594 doesn't seem to be mutated. Here are the mutated foci.Position 43596431 doesn't seem to be mutated. Here are the mutated foci.Position 43601411 doesn't seem to be mutated. Here are the mutated foci.Position 43605367 doesn't seem to be mutated. Here are the mutated foci.Position 43607896 doesn't seem to be mutated. Here are the mutated foci.Position 43608086 doesn't seem to be mutated. Here are the mutated foci.Position 43608512 doesn't seem to be mutated. Here are the mutated foci.Position 43608526 doesn't seem to be mutated. Here are the mutated foci.Position 43610623 doesn't seem to be mutated. Here are the mutated foci.Position 104725981 doesn't seem to be mutated. Here are the mutated foci.Position 104726655 doesn't seem to be mutated. Here are the mutated foci.Position 104727528 doesn't seem to be mutated. Here are the mutated foci.Position 104729264 doesn't seem to be mutated. Here are the mutated foci.Position 104733078 doesn't seem to be mutated. Here are the mutated foci.Position 104736434 doesn't seem to be mutated. Here are the mutated foci.Position 104737505 doesn't seem to be mutated. Here are the mutated foci.Position 104741010 doesn't seem to be mutated. Here are the mutated foci.Position 104741424 doesn't seem to be mutated. Here are the mutated foci.Position 104742892 doesn't seem to be mutated. Here are the mutated foci.Position 104742946 doesn't seem to be mutated. Here are the mutated foci.Position 104743236 doesn't seem to be mutated. Here are the mutated foci.Position 104745646 doesn't seem to be mutated. Here are the mutated foci.Position 104747257 doesn't seem to be mutated. Here are the mutated foci.Position 104747437 doesn't seem to be mutated. Here are the mutated foci.Position 104748834 doesn't seem to be mutated. Here are the mutated foci.Position 104755886 doesn't seem to be mutated. Here are the mutated foci.Position 104756915 doesn't seem to be mutated. Here are the mutated foci.Position 104757415 doesn't seem to be mutated. Here are the mutated foci.Position 104762712 doesn't seem to be mutated. Here are the mutated foci.Position 104765143 doesn't seem to be mutated. Here are the mutated foci.Position 104766883 doesn't seem to be mutated. Here are the mutated foci.Position 104771874 doesn't seem to be mutated. Here are the mutated foci.Position 104773765 doesn't seem to be mutated. Here are the mutated foci.Position 104776813 doesn't seem to be mutated. Here are the mutated foci.Position 104782826 doesn't seem to be mutated. Here are the mutated foci.Position 104785030 doesn't seem to be mutated. Here are the mutated foci.Position 104787431 doesn't seem to be mutated. Here are the mutated foci.Position 104789972 doesn't seem to be mutated. Here are the mutated foci.Position 104790609 doesn't seem to be mutated. Here are the mutated foci.Position 104801139 doesn't seem to be mutated. Here are the mutated foci.Position 104806647 doesn't seem to be mutated. Here are the mutated foci.Position 104807907 doesn't seem to be mutated. Here are the mutated foci.Position 104813441 doesn't seem to be mutated. Here are the mutated foci.Position 104823511 doesn't seem to be mutated. Here are the mutated foci.Position 104825077 doesn't seem to be mutated. Here are the mutated foci.Position 104825571 doesn't seem to be mutated. Here are the mutated foci.Position 104831565 doesn't seem to be mutated. Here are the mutated foci.Position 104831809 doesn't seem to be mutated. Here are the mutated foci.Position 104831824 doesn't seem to be mutated. Here are the mutated foci.Position 104831849 doesn't seem to be mutated. Here are the mutated foci.Position 104831850 doesn't seem to be mutated. Here are the mutated foci.Position 104832570 doesn't seem to be mutated. Here are the mutated foci.Position 104833507 doesn't seem to be mutated. Here are the mutated foci.Position 104833797 doesn't seem to be mutated. Here are the mutated foci.Position 104833925 doesn't seem to be mutated. Here are the mutated foci.Position 104833983 doesn't seem to be mutated. Here are the mutated foci.Position 104839399 doesn't seem to be mutated. Here are the mutated foci.Position 104842300 doesn't seem to be mutated. Here are the mutated foci.Position 104845374 doesn't seem to be mutated. Here are the mutated foci.Position 104848139 doesn't seem to be mutated. Here are the mutated foci.Position 104848608 doesn't seem to be mutated. Here are the mutated foci.Position 104851938 doesn't seem to be mutated. Here are the mutated foci.Position 104857728 doesn't seem to be mutated. Here are the mutated foci.Position 104861401 doesn't seem to be mutated. Here are the mutated foci.Position 104861479 doesn't seem to be mutated. Here are the mutated foci.Position 5973197 doesn't seem to be mutated. Here are the mutated foci.Position 5980738 doesn't seem to be mutated. Here are the mutated foci.Position 5988845 doesn't seem to be mutated. Here are the mutated foci.Position 5989001 doesn't seem to be mutated. Here are the mutated foci.Position 5990287 doesn't seem to be mutated. Here are the mutated foci.Position 5993470 doesn't seem to be mutated. Here are the mutated foci.Position 5999356 doesn't seem to be mutated. Here are the mutated foci.Position 6001855 doesn't seem to be mutated. Here are the mutated foci.Position 6002263 doesn't seem to be mutated. Here are the mutated foci.Position 6003045 doesn't seem to be mutated. Here are the mutated foci.Position 41958292 doesn't seem to be mutated. Here are the mutated foci.Position 41958851 doesn't seem to be mutated. Here are the mutated foci.Position 41965750 doesn't seem to be mutated. Here are the mutated foci.Position 41967264 doesn't seem to be mutated. Here are the mutated foci.Position 41972012 doesn't seem to be mutated. Here are the mutated foci.Position 41973991 doesn't seem to be mutated. Here are the mutated foci.Position 41974342 doesn't seem to be mutated. Here are the mutated foci.Position 41975760 doesn't seem to be mutated. Here are the mutated foci.Position 41977958 doesn't seem to be mutated. Here are the mutated foci.Position 41981606 doesn't seem to be mutated. Here are the mutated foci.Position 41981787 doesn't seem to be mutated. Here are the mutated foci.Position 41987357 doesn't seem to be mutated. Here are the mutated foci.Position 41988227 doesn't seem to be mutated. Here are the mutated foci.Position 41992823 doesn't seem to be mutated. Here are the mutated foci.Position 41993864 doesn't seem to be mutated. Here are the mutated foci.Position 41997682 doesn't seem to be mutated. Here are the mutated foci.Position 42000948 doesn't seem to be mutated. Here are the mutated foci.Position 42001193 doesn't seem to be mutated. Here are the mutated foci.Position 42003719 doesn't seem to be mutated. Here are the mutated foci.Position 42012088 doesn't seem to be mutated. Here are the mutated foci.Position 42012259 doesn't seem to be mutated. Here are the mutated foci.Position 42015487 doesn't seem to be mutated. Here are the mutated foci.Position 42019266 doesn't seem to be mutated. Here are the mutated foci.Position 42022023 doesn't seem to be mutated. Here are the mutated foci.Position 42028491 doesn't seem to be mutated. Here are the mutated foci.Position 42028667 doesn't seem to be mutated. Here are the mutated foci.Position 42028718 doesn't seem to be mutated. Here are the mutated foci.Position 42029390 doesn't seem to be mutated. Here are the mutated foci.Position 42029980 doesn't seem to be mutated. Here are the mutated foci.Position 42032879 doesn't seem to be mutated. Here are the mutated foci.Position 42039330 doesn't seem to be mutated. Here are the mutated foci.Position 42044312 doesn't seem to be mutated. Here are the mutated foci.Position 42046628 doesn't seem to be mutated. Here are the mutated foci.Position 42048117 doesn't seem to be mutated. Here are the mutated foci.Position 42048630 doesn't seem to be mutated. Here are the mutated foci.Position 42049304 doesn't seem to be mutated. Here are the mutated foci.Position 42049534 doesn't seem to be mutated. Here are the mutated foci.Position 42052681 doesn't seem to be mutated. Here are the mutated foci.Position 42060367 doesn't seem to be mutated. Here are the mutated foci.Position 42062285 doesn't seem to be mutated. Here are the mutated foci.Position 42065367 doesn't seem to be mutated. Here are the mutated foci.Position 42068664 doesn't seem to be mutated. Here are the mutated foci.Position 42070283 doesn't seem to be mutated. Here are the mutated foci.Position 42073086 doesn't seem to be mutated. Here are the mutated foci.Position 42078976 doesn't seem to be mutated. Here are the mutated foci.Position 42079370 doesn't seem to be mutated. Here are the mutated foci.Position 42080887 doesn't seem to be mutated. Here are the mutated foci.Position 42080942 doesn't seem to be mutated. Here are the mutated foci.Position 42080983 doesn't seem to be mutated. Here are the mutated foci.Position 42082899 doesn't seem to be mutated. Here are the mutated foci.Position 42090797 doesn't seem to be mutated. Here are the mutated foci.Position 42093141 doesn't seem to be mutated. Here are the mutated foci.Position 42094626 doesn't seem to be mutated. Here are the mutated foci.Position 42095533 doesn't seem to be mutated. Here are the mutated foci.Position 42099512 doesn't seem to be mutated. Here are the mutated foci.Position 42101187 doesn't seem to be mutated. Here are the mutated foci.Position 42101326 doesn't seem to be mutated. Here are the mutated foci.Position 42103665 doesn't seem to be mutated. Here are the mutated foci.Position 42104264 doesn't seem to be mutated. Here are the mutated foci.Position 42106645 doesn't seem to be mutated. Here are the mutated foci.Position 42109504 doesn't seem to be mutated. Here are the mutated foci.Position 42109955 doesn't seem to be mutated. Here are the mutated foci.Position 42111279 doesn't seem to be mutated. Here are the mutated foci.Position 42111841 doesn't seem to be mutated. Here are the mutated foci.Position 42118880 doesn't seem to be mutated. Here are the mutated foci.Position 42123361 doesn't seem to be mutated. Here are the mutated foci.Position 42126004 doesn't seem to be mutated. Here are the mutated foci.Position 42130213 doesn't seem to be mutated. Here are the mutated foci.Position 42138932 doesn't seem to be mutated. Here are the mutated foci.Position 42139274 doesn't seem to be mutated. Here are the mutated foci.Position 42141532 doesn't seem to be mutated. Here are the mutated foci.Position 42143889 doesn't seem to be mutated. Here are the mutated foci.Position 42154566 doesn't seem to be mutated. Here are the mutated foci.Position 42154883 doesn't seem to be mutated. Here are the mutated foci.Position 42155833 doesn't seem to be mutated. Here are the mutated foci.Position 42156269 doesn't seem to be mutated. Here are the mutated foci.Position 42158227 doesn't seem to be mutated. Here are the mutated foci.Position 42159623 doesn't seem to be mutated. Here are the mutated foci.Position 42164881 doesn't seem to be mutated. Here are the mutated foci.Position 42170655 doesn't seem to be mutated. Here are the mutated foci.Position 42172649 doesn't seem to be mutated. Here are the mutated foci.Position 42180094 doesn't seem to be mutated. Here are the mutated foci.Position 42181914 doesn't seem to be mutated. Here are the mutated foci.Position 42183050 doesn't seem to be mutated. Here are the mutated foci.Position 42184172 doesn't seem to be mutated. Here are the mutated foci.Position 42186536 doesn't seem to be mutated. Here are the mutated foci.Position 42187073 doesn't seem to be mutated. Here are the mutated foci.Position 42194869 doesn't seem to be mutated. Here are the mutated foci.Position 42195636 doesn't seem to be mutated. Here are the mutated foci.Position 42201809 doesn't seem to be mutated. Here are the mutated foci.Position 42201862 doesn't seem to be mutated. Here are the mutated foci.Position 42201954 doesn't seem to be mutated. Here are the mutated foci.Position 42203587 doesn't seem to be mutated. Here are the mutated foci.Position 42205683 doesn't seem to be mutated. Here are the mutated foci.Position 42208618 doesn't seem to be mutated. Here are the mutated foci.Position 42213986 doesn't seem to be mutated. Here are the mutated foci.Position 42214796 doesn't seem to be mutated. Here are the mutated foci.Position 42216426 doesn't seem to be mutated. Here are the mutated foci.Position 42217212 doesn't seem to be mutated. Here are the mutated foci.Position 42219424 doesn't seem to be mutated. Here are the mutated foci.Position 42225467 doesn't seem to be mutated. Here are the mutated foci.Position 42225769 doesn't seem to be mutated. Here are the mutated foci.Position 42227496 doesn't seem to be mutated. Here are the mutated foci.Position 42228664 doesn't seem to be mutated. Here are the mutated foci.Position 50305660 doesn't seem to be mutated. Here are the mutated foci.Position 50305665 doesn't seem to be mutated. Here are the mutated foci.Position 50305993 doesn't seem to be mutated. Here are the mutated foci.Position 50307261 doesn't seem to be mutated. Here are the mutated foci.Position 50307792 doesn't seem to be mutated. Here are the mutated foci.Position 50312557 doesn't seem to be mutated. Here are the mutated foci.Position 50322368 doesn't seem to be mutated. Here are the mutated foci.Position 50328041 doesn't seem to be mutated. Here are the mutated foci.Position 50328945 doesn't seem to be mutated. Here are the mutated foci.Position 50333035 doesn't seem to be mutated. Here are the mutated foci.Position 50333190 doesn't seem to be mutated. Here are the mutated foci.Position 50338344 doesn't seem to be mutated. Here are the mutated foci.Position 50340465 doesn't seem to be mutated. Here are the mutated foci.Position 50343622 doesn't seem to be mutated. Here are the mutated foci.Position 50351450 doesn't seem to be mutated. Here are the mutated foci.Position 50351868 doesn't seem to be mutated. Here are the mutated foci.Position 50357763 doesn't seem to be mutated. Here are the mutated foci.Position 50359551 doesn't seem to be mutated. Here are the mutated foci.Position 50360738 doesn't seem to be mutated. Here are the mutated foci.Position 50365449 doesn't seem to be mutated. Here are the mutated foci.Position 50367074 doesn't seem to be mutated. Here are the mutated foci.Position 50371957 doesn't seem to be mutated. Here are the mutated foci.Position 50373574 doesn't seem to be mutated. Here are the mutated foci.Position 50373766 doesn't seem to be mutated. Here are the mutated foci.Position 50374087 doesn't seem to be mutated. Here are the mutated foci.Position 50378462 doesn't seem to be mutated. Here are the mutated foci.Position 50383875 doesn't seem to be mutated. Here are the mutated foci.Position 50386674 doesn't seem to be mutated. Here are the mutated foci.Position 50389402 doesn't seem to be mutated. Here are the mutated foci.Position 50391803 doesn't seem to be mutated. Here are the mutated foci.Position 50393240 doesn't seem to be mutated. Here are the mutated foci.Position 50395734 doesn't seem to be mutated. Here are the mutated foci.Position 50406759 doesn't seem to be mutated. Here are the mutated foci.Position 50408413 doesn't seem to be mutated. Here are the mutated foci.Position 55014531 doesn't seem to be mutated. Here are the mutated foci.Position 55019396 doesn't seem to be mutated. Here are the mutated foci.Position 55026410 doesn't seem to be mutated. Here are the mutated foci.Position 55031815 doesn't seem to be mutated. Here are the mutated foci.Position 55032133 doesn't seem to be mutated. Here are the mutated foci.Position 55041410 doesn't seem to be mutated. Here are the mutated foci.Position 55041863 doesn't seem to be mutated. Here are the mutated foci.Position 55049778 doesn't seem to be mutated. Here are the mutated foci.Position 55053196 doesn't seem to be mutated. Here are the mutated foci.Position 55054116 doesn't seem to be mutated. Here are the mutated foci.Position 55054662 doesn't seem to be mutated. Here are the mutated foci.Position 55066553 doesn't seem to be mutated. Here are the mutated foci.Position 55066689 doesn't seem to be mutated. Here are the mutated foci.Position 55066804 doesn't seem to be mutated. Here are the mutated foci.Position 55067094 doesn't seem to be mutated. Here are the mutated foci.Position 55076616 doesn't seem to be mutated. Here are the mutated foci.Position 55078933 doesn't seem to be mutated. Here are the mutated foci.Position 55082866 doesn't seem to be mutated. Here are the mutated foci.Position 55085747 doesn't seem to be mutated. Here are the mutated foci.Position 55093875 doesn't seem to be mutated. Here are the mutated foci.Position 55098495 doesn't seem to be mutated. Here are the mutated foci.Position 55101229 doesn't seem to be mutated. Here are the mutated foci.Position 55104325 doesn't seem to be mutated. Here are the mutated foci.Position 55104328 doesn't seem to be mutated. Here are the mutated foci.Position 55110239 doesn't seem to be mutated. Here are the mutated foci.Position 55115071 doesn't seem to be mutated. Here are the mutated foci.Position 55116451 doesn't seem to be mutated. Here are the mutated foci.Position 55118013 doesn't seem to be mutated. Here are the mutated foci.Position 55120896 doesn't seem to be mutated. Here are the mutated foci.Position 55131239 doesn't seem to be mutated. Here are the mutated foci.Position 55131794 doesn't seem to be mutated. Here are the mutated foci.Position 55132028 doesn't seem to be mutated. Here are the mutated foci.Position 55137270 doesn't seem to be mutated. Here are the mutated foci.Position 55140100 doesn't seem to be mutated. Here are the mutated foci.Position 55141084 doesn't seem to be mutated. Here are the mutated foci.Position 55146993 doesn't seem to be mutated. Here are the mutated foci.Position 55147392 doesn't seem to be mutated. Here are the mutated foci.Position 55151760 doesn't seem to be mutated. Here are the mutated foci.Position 55155331 doesn't seem to be mutated. Here are the mutated foci.Position 55155927 doesn't seem to be mutated. Here are the mutated foci.Position 55157229 doesn't seem to be mutated. Here are the mutated foci.Position 55157501 doesn't seem to be mutated. Here are the mutated foci.Position 55174764 doesn't seem to be mutated. Here are the mutated foci.Position 55181336 doesn't seem to be mutated. Here are the mutated foci.Position 55189719 doesn't seem to be mutated. Here are the mutated foci.Position 55192387 doesn't seem to be mutated. Here are the mutated foci.Position 55194027 doesn't seem to be mutated. Here are the mutated foci.Position 55194042 doesn't seem to be mutated. Here are the mutated foci.Position 55195060 doesn't seem to be mutated. Here are the mutated foci.Position 55200164 doesn't seem to be mutated. Here are the mutated foci.Position 55202057 doesn't seem to be mutated. Here are the mutated foci.Position 55202926 doesn't seem to be mutated. Here are the mutated foci.Position 55205962 doesn't seem to be mutated. Here are the mutated foci.Position 55207990 doesn't seem to be mutated. Here are the mutated foci.Position 55208230 doesn't seem to be mutated. Here are the mutated foci.Position 55213191 doesn't seem to be mutated. Here are the mutated foci.Position 66988892 doesn't seem to be mutated. Here are the mutated foci.Position 66994644 doesn't seem to be mutated. Here are the mutated foci.Position 93095675 doesn't seem to be mutated. Here are the mutated foci.Position 93097838 doesn't seem to be mutated. Here are the mutated foci.Position 93098290 doesn't seem to be mutated. Here are the mutated foci.Position 93100516 doesn't seem to be mutated. Here are the mutated foci.Position 93100656 doesn't seem to be mutated. Here are the mutated foci.Position 93101108 doesn't seem to be mutated. Here are the mutated foci.Position 93101114 doesn't seem to be mutated. Here are the mutated foci.Position 93104422 doesn't seem to be mutated. Here are the mutated foci.Position 93111274 doesn't seem to be mutated. Here are the mutated foci.Position 93114169 doesn't seem to be mutated. Here are the mutated foci.Position 93117306 doesn't seem to be mutated. Here are the mutated foci.Position 93117443 doesn't seem to be mutated. Here are the mutated foci.Position 93117534 doesn't seem to be mutated. Here are the mutated foci.Position 93120027 doesn't seem to be mutated. Here are the mutated foci.Position 93121990 doesn't seem to be mutated. Here are the mutated foci.Position 93122073 doesn't seem to be mutated. Here are the mutated foci.Position 93125219 doesn't seem to be mutated. Here are the mutated foci.Position 93127199 doesn't seem to be mutated. Here are the mutated foci.Position 93130960 doesn't seem to be mutated. Here are the mutated foci.Position 93135708 doesn't seem to be mutated. Here are the mutated foci.Position 93138018 doesn't seem to be mutated. Here are the mutated foci.Position 93138702 doesn't seem to be mutated. Here are the mutated foci.Position 93138745 doesn't seem to be mutated. Here are the mutated foci.Position 93141340 doesn't seem to be mutated. Here are the mutated foci.Position 93141580 doesn't seem to be mutated. Here are the mutated foci.Position 93146796 doesn't seem to be mutated. Here are the mutated foci.Position 93148448 doesn't seem to be mutated. Here are the mutated foci.Position 93150174 doesn't seem to be mutated. Here are the mutated foci.Position 96115224 doesn't seem to be mutated. Here are the mutated foci.Position 96115960 doesn't seem to be mutated. Here are the mutated foci.Position 96116824 doesn't seem to be mutated. Here are the mutated foci.Position 96120677 doesn't seem to be mutated. Here are the mutated foci.Position 96123621 doesn't seem to be mutated. Here are the mutated foci.Position 96125097 doesn't seem to be mutated. Here are the mutated foci.Position 96131593 doesn't seem to be mutated. Here are the mutated foci.Position 96133375 doesn't seem to be mutated. Here are the mutated foci.Position 96133955 doesn't seem to be mutated. Here are the mutated foci.Position 96134224 doesn't seem to be mutated. Here are the mutated foci.Position 96138850 doesn't seem to be mutated. Here are the mutated foci.Position 96139235 doesn't seem to be mutated. Here are the mutated foci.Position 96139263 doesn't seem to be mutated. Here are the mutated foci.Position 96139490 doesn't seem to be mutated. Here are the mutated foci.Position 96142935 doesn't seem to be mutated. Here are the mutated foci.Position 96146464 doesn't seem to be mutated. Here are the mutated foci.Position 96148338 doesn't seem to be mutated. Here are the mutated foci.Position 96149670 doesn't seem to be mutated. Here are the mutated foci.Position 96150049 doesn't seem to be mutated. Here are the mutated foci.Position 96152134 doesn't seem to be mutated. Here are the mutated foci.Position 96157918 doesn't seem to be mutated. Here are the mutated foci.Position 96165790 doesn't seem to be mutated. Here are the mutated foci.Position 96167655 doesn't seem to be mutated. Here are the mutated foci.Position 96169341 doesn't seem to be mutated. Here are the mutated foci.Position 96169373 doesn't seem to be mutated. Here are the mutated foci.Position 96178623 doesn't seem to be mutated. Here are the mutated foci.Position 96180174 doesn't seem to be mutated. Here are the mutated foci.Position 96180342 doesn't seem to be mutated. Here are the mutated foci.Position 96185472 doesn't seem to be mutated. Here are the mutated foci.Position 96187849 doesn't seem to be mutated. Here are the mutated foci.Position 96190381 doesn't seem to be mutated. Here are the mutated foci.Position 96192091 doesn't seem to be mutated. Here are the mutated foci.Position 96195185 doesn't seem to be mutated. Here are the mutated foci.Position 96199767 doesn't seem to be mutated. Here are the mutated foci.Position 96202066 doesn't seem to be mutated. Here are the mutated foci.Position 96211602 doesn't seem to be mutated. Here are the mutated foci.Position 96212241 doesn't seem to be mutated. Here are the mutated foci.Position 96219998 doesn't seem to be mutated. Here are the mutated foci.Position 96221042 doesn't seem to be mutated. Here are the mutated foci.Position 96228974 doesn't seem to be mutated. Here are the mutated foci.Position 96229702 doesn't seem to be mutated. Here are the mutated foci.Position 96232277 doesn't seem to be mutated. Here are the mutated foci.Position 96234416 doesn't seem to be mutated. Here are the mutated foci.Position 96237331 doesn't seem to be mutated. Here are the mutated foci.Position 96237724 doesn't seem to be mutated. Here are the mutated foci.Position 96239072 doesn't seem to be mutated. Here are the mutated foci.Position 96247502 doesn't seem to be mutated. Here are the mutated foci.Position 96251853 doesn't seem to be mutated. Here are the mutated foci.Position 96253678 doesn't seem to be mutated. Here are the mutated foci.Position 96255814 doesn't seem to be mutated. Here are the mutated foci.Position 96256012 doesn't seem to be mutated. Here are the mutated foci.Position 96256667 doesn't seem to be mutated. Here are the mutated foci.Position 96256911 doesn't seem to be mutated. Here are the mutated foci.Position 96263627 doesn't seem to be mutated. Here are the mutated foci.Position 96267697 doesn't seem to be mutated. Here are the mutated foci.Position 96268282 doesn't seem to be mutated. Here are the mutated foci.Position 96269734 doesn't seem to be mutated. Here are the mutated foci.Position 96270304 doesn't seem to be mutated. Here are the mutated foci.Position 96270427 doesn't seem to be mutated. Here are the mutated foci.Position 96271363 doesn't seem to be mutated. Here are the mutated foci.Position 96273215 doesn't seem to be mutated. Here are the mutated foci.Position 96276803 doesn't seem to be mutated. Here are the mutated foci.Position 96281220 doesn't seem to be mutated. Here are the mutated foci.Position 96281487 doesn't seem to be mutated. Here are the mutated foci.Position 96287114 doesn't seem to be mutated. Here are the mutated foci.Position 96287458 doesn't seem to be mutated. Here are the mutated foci.Position 96288151 doesn't seem to be mutated. Here are the mutated foci.Position 96288182 doesn't seem to be mutated. Here are the mutated foci.Position 96298718 doesn't seem to be mutated. Here are the mutated foci.Position 96303425 doesn't seem to be mutated. Here are the mutated foci.Position 96303841 doesn't seem to be mutated. Here are the mutated foci.Position 96308299 doesn't seem to be mutated. Here are the mutated foci.Position 96308353 doesn't seem to be mutated. Here are the mutated foci.Position 96311983 doesn't seem to be mutated. Here are the mutated foci.Position 96312950 doesn't seem to be mutated. Here are the mutated foci.Position 96314646 doesn't seem to be mutated. Here are the mutated foci.Position 96315912 doesn't seem to be mutated. Here are the mutated foci.Position 96315947 doesn't seem to be mutated. Here are the mutated foci.Position 96315969 doesn't seem to be mutated. Here are the mutated foci.Position 96316527 doesn't seem to be mutated. Here are the mutated foci.Position 96316840 doesn't seem to be mutated. Here are the mutated foci.Position 96323398 doesn't seem to be mutated. Here are the mutated foci.Position 96323613 doesn't seem to be mutated. Here are the mutated foci.Position 96325110 doesn't seem to be mutated. Here are the mutated foci.Position 116680680 doesn't seem to be mutated. Here are the mutated foci.Position 116687324 doesn't seem to be mutated. Here are the mutated foci.Position 116688823 doesn't seem to be mutated. Here are the mutated foci.Position 116695267 doesn't seem to be mutated. Here are the mutated foci.Position 116699511 doesn't seem to be mutated. Here are the mutated foci.Position 116702412 doesn't seem to be mutated. Here are the mutated foci.Position 116703503 doesn't seem to be mutated. Here are the mutated foci.Position 116704103 doesn't seem to be mutated. Here are the mutated foci.Position 116706314 doesn't seem to be mutated. Here are the mutated foci.Position 116709551 doesn't seem to be mutated. Here are the mutated foci.Position 116715394 doesn't seem to be mutated. Here are the mutated foci.Position 116716379 doesn't seem to be mutated. Here are the mutated foci.Position 116716956 doesn't seem to be mutated. Here are the mutated foci.Position 116719305 doesn't seem to be mutated. Here are the mutated foci.Position 116724093 doesn't seem to be mutated. Here are the mutated foci.Position 116728303 doesn't seem to be mutated. Here are the mutated foci.Position 116730257 doesn't seem to be mutated. Here are the mutated foci.Position 116734923 doesn't seem to be mutated. Here are the mutated foci.Position 116737582 doesn't seem to be mutated. Here are the mutated foci.Position 116738853 doesn't seem to be mutated. Here are the mutated foci.Position 116741890 doesn't seem to be mutated. Here are the mutated foci.Position 116747920 doesn't seem to be mutated. Here are the mutated foci.Position 116749856 doesn't seem to be mutated. Here are the mutated foci.Position 116754358 doesn't seem to be mutated. Here are the mutated foci.Position 116762993 doesn't seem to be mutated. Here are the mutated foci.Position 116770813 doesn't seem to be mutated. Here are the mutated foci.Position 116783917 doesn't seem to be mutated. Here are the mutated foci.Position 116786946 doesn't seem to be mutated. Here are the mutated foci.Position 116787949 doesn't seem to be mutated. Here are the mutated foci.Position 116792876 doesn't seem to be mutated. Here are the mutated foci.Position 116794772 doesn't seem to be mutated. Here are the mutated foci.Position 116798950 doesn't seem to be mutated. Here are the mutated foci.Position 124817428 doesn't seem to be mutated. Here are the mutated foci.Position 124817845 doesn't seem to be mutated. Here are the mutated foci.Position 124819816 doesn't seem to be mutated. Here are the mutated foci.Position 124824442 doesn't seem to be mutated. Here are the mutated foci.Position 124826868 doesn't seem to be mutated. Here are the mutated foci.Position 124829203 doesn't seem to be mutated. Here are the mutated foci.Position 124832811 doesn't seem to be mutated. Here are the mutated foci.Position 124833217 doesn't seem to be mutated. Here are the mutated foci.Position 124834385 doesn't seem to be mutated. Here are the mutated foci.Position 124835522 doesn't seem to be mutated. Here are the mutated foci.Position 124836047 doesn't seem to be mutated. Here are the mutated foci.Position 124842083 doesn't seem to be mutated. Here are the mutated foci.Position 124844358 doesn't seem to be mutated. Here are the mutated foci.Position 124845826 doesn't seem to be mutated. Here are the mutated foci.Position 124848014 doesn't seem to be mutated. Here are the mutated foci.Position 124850041 doesn't seem to be mutated. Here are the mutated foci.Position 124853657 doesn't seem to be mutated. Here are the mutated foci.Position 124856914 doesn't seem to be mutated. Here are the mutated foci.Position 124857956 doesn't seem to be mutated. Here are the mutated foci.Position 124859555 doesn't seem to be mutated. Here are the mutated foci.Position 124861177 doesn't seem to be mutated. Here are the mutated foci.Position 124863676 doesn't seem to be mutated. Here are the mutated foci.Position 124864515 doesn't seem to be mutated. Here are the mutated foci.Position 124886005 doesn't seem to be mutated. Here are the mutated foci.Position 124887412 doesn't seem to be mutated. Here are the mutated foci.Position 124887417 doesn't seem to be mutated. Here are the mutated foci.Position 124888047 doesn't seem to be mutated. Here are the mutated foci.Position 124889106 doesn't seem to be mutated. Here are the mutated foci.Position 124895947 doesn't seem to be mutated. Here are the mutated foci.Position 124897744 doesn't seem to be mutated. Here are the mutated foci.Position 124907094 doesn't seem to be mutated. Here are the mutated foci.Position 124909143 doesn't seem to be mutated. Here are the mutated foci.Position 124910660 doesn't seem to be mutated. Here are the mutated foci.Position 124910689 doesn't seem to be mutated. Here are the mutated foci.Position 124914311 doesn't seem to be mutated. Here are the mutated foci.Position 124916971 doesn't seem to be mutated. Here are the mutated foci.Position 124927496 doesn't seem to be mutated. Here are the mutated foci.Position 124928082 doesn't seem to be mutated. Here are the mutated foci.Position 124928165 doesn't seem to be mutated. Here are the mutated foci.Position 124930861 doesn't seem to be mutated. Here are the mutated foci.Position 124931871 doesn't seem to be mutated. Here are the mutated foci.Position 140726152 doesn't seem to be mutated. Here are the mutated foci.Position 140726503 doesn't seem to be mutated. Here are the mutated foci.Position 140727333 doesn't seem to be mutated. Here are the mutated foci.Position 140727454 doesn't seem to be mutated. Here are the mutated foci.Position 140730557 doesn't seem to be mutated. Here are the mutated foci.Position 140734814 doesn't seem to be mutated. Here are the mutated foci.Position 140748228 doesn't seem to be mutated. Here are the mutated foci.Position 140752614 doesn't seem to be mutated. Here are the mutated foci.Position 140755005 doesn't seem to be mutated. Here are the mutated foci.Position 140759390 doesn't seem to be mutated. Here are the mutated foci.Position 140760764 doesn't seem to be mutated. Here are the mutated foci.Position 140760878 doesn't seem to be mutated. Here are the mutated foci.Position 140761636 doesn't seem to be mutated. Here are the mutated foci.Position 140767140 doesn't seem to be mutated. Here are the mutated foci.Position 140768161 doesn't seem to be mutated. Here are the mutated foci.Position 140772253 doesn't seem to be mutated. Here are the mutated foci.Position 140778349 doesn't seem to be mutated. Here are the mutated foci.Position 140781388 doesn't seem to be mutated. Here are the mutated foci.Position 140785707 doesn't seem to be mutated. Here are the mutated foci.Position 140788929 doesn't seem to be mutated. Here are the mutated foci.Position 140791385 doesn't seem to be mutated. Here are the mutated foci.Position 140792613 doesn't seem to be mutated. Here are the mutated foci.Position 140799142 doesn't seem to be mutated. Here are the mutated foci.Position 140810141 doesn't seem to be mutated. Here are the mutated foci.Position 140810982 doesn't seem to be mutated. Here are the mutated foci.Position 140816323 doesn't seem to be mutated. Here are the mutated foci.Position 140828991 doesn't seem to be mutated. Here are the mutated foci.Position 140833131 doesn't seem to be mutated. Here are the mutated foci.Position 140839244 doesn't seem to be mutated. Here are the mutated foci.Position 140842533 doesn't seem to be mutated. Here are the mutated foci.Position 140845183 doesn't seem to be mutated. Here are the mutated foci.Position 140850715 doesn't seem to be mutated. Here are the mutated foci.Position 140851443 doesn't seem to be mutated. Here are the mutated foci.Position 140853160 doesn't seem to be mutated. Here are the mutated foci.Position 140854716 doesn't seem to be mutated. Here are the mutated foci.Position 140862705 doesn't seem to be mutated. Here are the mutated foci.Position 140864100 doesn't seem to be mutated. Here are the mutated foci.Position 140864410 doesn't seem to be mutated. Here are the mutated foci.Position 140871071 doesn't seem to be mutated. Here are the mutated foci.Position 140871328 doesn't seem to be mutated. Here are the mutated foci.Position 140875436 doesn't seem to be mutated. Here are the mutated foci.Position 140882312 doesn't seem to be mutated. Here are the mutated foci.Position 140888398 doesn't seem to be mutated. Here are the mutated foci.Position 140896593 doesn't seem to be mutated. Here are the mutated foci.Position 140902131 doesn't seem to be mutated. Here are the mutated foci.Position 140905339 doesn't seem to be mutated. Here are the mutated foci.Position 140910303 doesn't seem to be mutated. Here are the mutated foci.Position 140910912 doesn't seem to be mutated. Here are the mutated foci.Position 140915886 doesn't seem to be mutated. Here are the mutated foci.Position 140916102 doesn't seem to be mutated. Here are the mutated foci.Position 140919167 doesn't seem to be mutated. Here are the mutated foci.Position 142745257 doesn't seem to be mutated. Here are the mutated foci.Position 142748432 doesn't seem to be mutated. Here are the mutated foci.Position 142750616 doesn't seem to be mutated. Here are the mutated foci.Position 142753022 doesn't seem to be mutated. Here are the mutated foci.Position 148806597 doesn't seem to be mutated. Here are the mutated foci.Position 148809711 doesn't seem to be mutated. Here are the mutated foci.Position 148810739 doesn't seem to be mutated. Here are the mutated foci.Position 148812789 doesn't seem to be mutated. Here are the mutated foci.Position 148813038 doesn't seem to be mutated. Here are the mutated foci.Position 148816150 doesn't seem to be mutated. Here are the mutated foci.Position 148816506 doesn't seem to be mutated. Here are the mutated foci.Position 148818198 doesn't seem to be mutated. Here are the mutated foci.Position 148818657 doesn't seem to be mutated. Here are the mutated foci.Position 148819033 doesn't seem to be mutated. Here are the mutated foci.Position 148825198 doesn't seem to be mutated. Here are the mutated foci.Position 148828337 doesn't seem to be mutated. Here are the mutated foci.Position 148831126 doesn't seem to be mutated. Here are the mutated foci.Position 148835033 doesn't seem to be mutated. Here are the mutated foci.Position 148842773 doesn't seem to be mutated. Here are the mutated foci.Position 148844034 doesn't seem to be mutated. Here are the mutated foci.Position 148850832 doesn't seem to be mutated. Here are the mutated foci.Position 148851588 doesn't seem to be mutated. Here are the mutated foci.Position 148851739 doesn't seem to be mutated. Here are the mutated foci.Position 148852247 doesn't seem to be mutated. Here are the mutated foci.Position 148854352 doesn't seem to be mutated. Here are the mutated foci.Position 148861138 doesn't seem to be mutated. Here are the mutated foci.Position 148862532 doesn't seem to be mutated. Here are the mutated foci.Position 148869895 doesn't seem to be mutated. Here are the mutated foci.Position 148870932 doesn't seem to be mutated. Here are the mutated foci.Position 148872132 doesn't seem to be mutated. Here are the mutated foci.Position 148873046 doesn't seem to be mutated. Here are the mutated foci.Position 148877224 doesn't seem to be mutated. Here are the mutated foci.Position 148878377 doesn't seem to be mutated. Here are the mutated foci.Position 148878989 doesn't seem to be mutated. Here are the mutated foci.Position 148881964 doesn't seem to be mutated. Here are the mutated foci.Position 148884176 doesn't seem to be mutated. Here are the mutated foci.Position 148885779 doesn't seem to be mutated. Here are the mutated foci.Position 148887410 doesn't seem to be mutated. Here are the mutated foci.Position 31037663 doesn't seem to be mutated. Here are the mutated foci.Position 31038417 doesn't seem to be mutated. Here are the mutated foci.Position 31039500 doesn't seem to be mutated. Here are the mutated foci.Position 31040762 doesn't seem to be mutated. Here are the mutated foci.Position 31041297 doesn't seem to be mutated. Here are the mutated foci.Position 31044194 doesn't seem to be mutated. Here are the mutated foci.Position 31047406 doesn't seem to be mutated. Here are the mutated foci.Position 31048786 doesn't seem to be mutated. Here are the mutated foci.Position 31052659 doesn't seem to be mutated. Here are the mutated foci.Position 31055557 doesn't seem to be mutated. Here are the mutated foci.Position 31055613 doesn't seem to be mutated. Here are the mutated foci.Position 31059614 doesn't seem to be mutated. Here are the mutated foci.Position 31059924 doesn't seem to be mutated. Here are the mutated foci.Position 31060312 doesn't seem to be mutated. Here are the mutated foci.Position 31065572 doesn't seem to be mutated. Here are the mutated foci.Position 31067831 doesn't seem to be mutated. Here are the mutated foci.Position 31068782 doesn't seem to be mutated. Here are the mutated foci.Position 31071144 doesn't seem to be mutated. Here are the mutated foci.Position 31079192 doesn't seem to be mutated. Here are the mutated foci.Position 31083657 doesn't seem to be mutated. Here are the mutated foci.Position 31086542 doesn't seem to be mutated. Here are the mutated foci.Position 31086889 doesn't seem to be mutated. Here are the mutated foci.Position 31090753 doesn't seem to be mutated. Here are the mutated foci.Position 31092825 doesn't seem to be mutated. Here are the mutated foci.Position 31094868 doesn't seem to be mutated. Here are the mutated foci.Position 31097716 doesn't seem to be mutated. Here are the mutated foci.Position 31102721 doesn't seem to be mutated. Here are the mutated foci.Position 31109851 doesn't seem to be mutated. Here are the mutated foci.Position 31110144 doesn't seem to be mutated. Here are the mutated foci.Position 31115053 doesn't seem to be mutated. Here are the mutated foci.Position 31115700 doesn't seem to be mutated. Here are the mutated foci.Position 31115761 doesn't seem to be mutated. Here are the mutated foci.Position 31116423 doesn't seem to be mutated. Here are the mutated foci.Position 31123031 doesn't seem to be mutated. Here are the mutated foci.Position 31125253 doesn't seem to be mutated. Here are the mutated foci.Position 31127933 doesn't seem to be mutated. Here are the mutated foci.Position 31129734 doesn't seem to be mutated. Here are the mutated foci.Position 31129876 doesn't seem to be mutated. Here are the mutated foci.Position 31133851 doesn't seem to be mutated. Here are the mutated foci.Position 31135381 doesn't seem to be mutated. Here are the mutated foci.Position 31135685 doesn't seem to be mutated. Here are the mutated foci.Position 31141040 doesn't seem to be mutated. Here are the mutated foci.Position 31144151 doesn't seem to be mutated. Here are the mutated foci.Position 31146840 doesn't seem to be mutated. Here are the mutated foci.Position 31147863 doesn't seem to be mutated. Here are the mutated foci.Position 31151737 doesn't seem to be mutated. Here are the mutated foci.Position 31151901 doesn't seem to be mutated. Here are the mutated foci.Position 31152248 doesn't seem to be mutated. Here are the mutated foci.Position 31159658 doesn't seem to be mutated. Here are the mutated foci.Position 31161290 doesn't seem to be mutated. Here are the mutated foci.Position 31167820 doesn't seem to be mutated. Here are the mutated foci.Position 31172778 doesn't seem to be mutated. Here are the mutated foci.Position 31174321 doesn't seem to be mutated. Here are the mutated foci.Position 31177615 doesn't seem to be mutated. Here are the mutated foci.Position 38413554 doesn't seem to be mutated. Here are the mutated foci.Position 38419709 doesn't seem to be mutated. Here are the mutated foci.Position 38419778 doesn't seem to be mutated. Here are the mutated foci.Position 38424395 doesn't seem to be mutated. Here are the mutated foci.Position 38425145 doesn't seem to be mutated. Here are the mutated foci.Position 38449692 doesn't seem to be mutated. Here are the mutated foci.Position 38450439 doesn't seem to be mutated. Here are the mutated foci.Position 38454309 doesn't seem to be mutated. Here are the mutated foci.Position 38458268 doesn't seem to be mutated. Here are the mutated foci.Position 38458549 doesn't seem to be mutated. Here are the mutated foci.Position 38462797 doesn't seem to be mutated. Here are the mutated foci.Position 38465711 doesn't seem to be mutated. Here are the mutated foci.Position 89929942 doesn't seem to be mutated. Here are the mutated foci.Position 89936719 doesn't seem to be mutated. Here are the mutated foci.Position 89939439 doesn't seem to be mutated. Here are the mutated foci.Position 89947338 doesn't seem to be mutated. Here are the mutated foci.Position 89950159 doesn't seem to be mutated. Here are the mutated foci.Position 89950279 doesn't seem to be mutated. Here are the mutated foci.Position 89953501 doesn't seem to be mutated. Here are the mutated foci.Position 89957163 doesn't seem to be mutated. Here are the mutated foci.Position 89958227 doesn't seem to be mutated. Here are the mutated foci.Position 89962584 doesn't seem to be mutated. Here are the mutated foci.Position 89967050 doesn't seem to be mutated. Here are the mutated foci.Position 89969807 doesn't seem to be mutated. Here are the mutated foci.Position 89970212 doesn't seem to be mutated. Here are the mutated foci.Position 89971655 doesn't seem to be mutated. Here are the mutated foci.Position 89974771 doesn't seem to be mutated. Here are the mutated foci.Position 89976344 doesn't seem to be mutated. Here are the mutated foci.Position 89985007 doesn't seem to be mutated. Here are the mutated foci.Position 89991015 doesn't seem to be mutated. Here are the mutated foci.Position 117789909 doesn't seem to be mutated. Here are the mutated foci.Position 117791731 doesn't seem to be mutated. Here are the mutated foci.Position 117792157 doesn't seem to be mutated. Here are the mutated foci.Position 117794812 doesn't seem to be mutated. Here are the mutated foci.Position 117800483 doesn't seem to be mutated. Here are the mutated foci.Position 117810820 doesn't seem to be mutated. Here are the mutated foci.Position 117814577 doesn't seem to be mutated. Here are the mutated foci.Position 117816465 doesn't seem to be mutated. Here are the mutated foci.Position 117822108 doesn't seem to be mutated. Here are the mutated foci.Position 117823471 doesn't seem to be mutated. Here are the mutated foci.Position 117825684 doesn't seem to be mutated. Here are the mutated foci.Position 117827498 doesn't seem to be mutated. Here are the mutated foci.Position 117828506 doesn't seem to be mutated. Here are the mutated foci.Position 117830094 doesn't seem to be mutated. Here are the mutated foci.Position 117831571 doesn't seem to be mutated. Here are the mutated foci.Position 117831988 doesn't seem to be mutated. Here are the mutated foci.Position 117838946 doesn't seem to be mutated. Here are the mutated foci.Position 117844237 doesn't seem to be mutated. Here are the mutated foci.Position 117858354 doesn't seem to be mutated. Here are the mutated foci.Position 117860474 doesn't seem to be mutated. Here are the mutated foci.Position 117865681 doesn't seem to be mutated. Here are the mutated foci.Position 117867156 doesn't seem to be mutated. Here are the mutated foci.Position 117869470 doesn't seem to be mutated. Here are the mutated foci.Position 117877249 doesn't seem to be mutated. Here are the mutated foci.Position 117877377 doesn't seem to be mutated. Here are the mutated foci.Position 117880735 doesn't seem to be mutated. Here are the mutated foci.Position 117883971 doesn't seem to be mutated. Here are the mutated foci.Position 117888025 doesn't seem to be mutated. Here are the mutated foci.Position 117888829 doesn't seem to be mutated. Here are the mutated foci.Position 117898706 doesn't seem to be mutated. Here are the mutated foci.Position 117904992 doesn't seem to be mutated. Here are the mutated foci.Position 117906437 doesn't seem to be mutated. Here are the mutated foci.Position 117907142 doesn't seem to be mutated. Here are the mutated foci.Position 117907760 doesn't seem to be mutated. Here are the mutated foci.Position 117910389 doesn't seem to be mutated. Here are the mutated foci.Position 117912948 doesn't seem to be mutated. Here are the mutated foci.Position 117914530 doesn't seem to be mutated. Here are the mutated foci.Position 117916664 doesn't seem to be mutated. Here are the mutated foci.Position 117920207 doesn't seem to be mutated. Here are the mutated foci.Position 117920928 doesn't seem to be mutated. Here are the mutated foci.Position 117923435 doesn't seem to be mutated. Here are the mutated foci.Position 117923684 doesn't seem to be mutated. Here are the mutated foci.Position 117925753 doesn't seem to be mutated. Here are the mutated foci.Position 117932313 doesn't seem to be mutated. Here are the mutated foci.Position 117934083 doesn't seem to be mutated. Here are the mutated foci.Position 117937412 doesn't seem to be mutated. Here are the mutated foci.Position 117942584 doesn't seem to be mutated. Here are the mutated foci.Position 117942651 doesn't seem to be mutated. Here are the mutated foci.Position 117949064 doesn't seem to be mutated. Here are the mutated foci.Position 117949703 doesn't seem to be mutated. Here are the mutated foci.Position 117950910 doesn't seem to be mutated. Here are the mutated foci.Position 117950939 doesn't seem to be mutated. Here are the mutated foci.Position 117964465 doesn't seem to be mutated. Here are the mutated foci.Position 117966705 doesn't seem to be mutated. Here are the mutated foci.Position 117970304 doesn't seem to be mutated. Here are the mutated foci.Position 117977247 doesn't seem to be mutated. Here are the mutated foci.Position 117977255 doesn't seem to be mutated. Here are the mutated foci.Position 117982187 doesn't seem to be mutated. Here are the mutated foci.Position 117984889 doesn't seem to be mutated. Here are the mutated foci.Position 117989175 doesn't seem to be mutated. Here are the mutated foci.Position 117990505 doesn't seem to be mutated. Here are the mutated foci.Position 117995799 doesn't seem to be mutated. Here are the mutated foci.Position 117999972 doesn't seem to be mutated. Here are the mutated foci.Position 118001492 doesn't seem to be mutated. Here are the mutated foci.Position 118004298 doesn't seem to be mutated. Here are the mutated foci.Position 118006876 doesn't seem to be mutated. Here are the mutated foci.Position 118007649 doesn't seem to be mutated. Here are the mutated foci.Position 118009848 doesn't seem to be mutated. Here are the mutated foci.Position 118014705 doesn't seem to be mutated. Here are the mutated foci.Position 118015649 doesn't seem to be mutated. Here are the mutated foci.Position 118019236 doesn't seem to be mutated. Here are the mutated foci.Position 118019714 doesn't seem to be mutated. Here are the mutated foci.Position 118023362 doesn't seem to be mutated. Here are the mutated foci.Position 118023830 doesn't seem to be mutated. Here are the mutated foci.Position 118024268 doesn't seem to be mutated. Here are the mutated foci.Position 118026180 doesn't seem to be mutated. Here are the mutated foci.Position 118026383 doesn't seem to be mutated. Here are the mutated foci.Position 118027897 doesn't seem to be mutated. Here are the mutated foci.Position 118031352 doesn't seem to be mutated. Here are the mutated foci.Position 118033906 doesn't seem to be mutated. Here are the mutated foci.Position 118034271 doesn't seem to be mutated. Here are the mutated foci.Position 118034712 doesn't seem to be mutated. Here are the mutated foci.Position 118036380 doesn't seem to be mutated. Here are the mutated foci.Position 118038382 doesn't seem to be mutated. Here are the mutated foci.Position 118040603 doesn't seem to be mutated. Here are the mutated foci.Position 118041767 doesn't seem to be mutated. Here are the mutated foci.Position 118042398 doesn't seem to be mutated. Here are the mutated foci.Position 118046945 doesn't seem to be mutated. Here are the mutated foci.Position 118051904 doesn't seem to be mutated. Here are the mutated foci.Position 118053635 doesn't seem to be mutated. Here are the mutated foci.Position 118062462 doesn't seem to be mutated. Here are the mutated foci.Position 118064513 doesn't seem to be mutated. Here are the mutated foci.Position 118066527 doesn't seem to be mutated. Here are the mutated foci.Position 118069529 doesn't seem to be mutated. Here are the mutated foci.Position 118069844 doesn't seem to be mutated. Here are the mutated foci.Position 118078249 doesn't seem to be mutated. Here are the mutated foci.Position 118086330 doesn't seem to be mutated. Here are the mutated foci.Position 118087680 doesn't seem to be mutated. Here are the mutated foci.Position 118091787 doesn't seem to be mutated. Here are the mutated foci.Position 118092388 doesn't seem to be mutated. Here are the mutated foci.Position 118094677 doesn't seem to be mutated. Here are the mutated foci.Position 118097127 doesn't seem to be mutated. Here are the mutated foci.Position 118098306 doesn't seem to be mutated. Here are the mutated foci.Position 118101867 doesn't seem to be mutated. Here are the mutated foci.Position 118102442 doesn't seem to be mutated. Here are the mutated foci.Position 118102829 doesn't seem to be mutated. Here are the mutated foci.Position 118103632 doesn't seem to be mutated. Here are the mutated foci.Position 118108319 doesn't seem to be mutated. Here are the mutated foci.Position 118115871 doesn't seem to be mutated. Here are the mutated foci.Position 118116061 doesn't seem to be mutated. Here are the mutated foci.Position 144512006 doesn't seem to be mutated. Here are the mutated foci.Position 144512316 doesn't seem to be mutated. Here are the mutated foci.Position 224917 doesn't seem to be mutated. Here are the mutated foci.Position 235058 doesn't seem to be mutated. Here are the mutated foci.Position 241108 doesn't seem to be mutated. Here are the mutated foci.Position 243358 doesn't seem to be mutated. Here are the mutated foci.Position 246220 doesn't seem to be mutated. Here are the mutated foci.Position 247503 doesn't seem to be mutated. Here are the mutated foci.Position 249945 doesn't seem to be mutated. Here are the mutated foci.Position 252162 doesn't seem to be mutated. Here are the mutated foci.Position 255478 doesn't seem to be mutated. Here are the mutated foci.Position 257347 doesn't seem to be mutated. Here are the mutated foci.Position 258085 doesn't seem to be mutated. Here are the mutated foci.Position 263904 doesn't seem to be mutated. Here are the mutated foci.Position 264741 doesn't seem to be mutated. Here are the mutated foci.Position 265712 doesn't seem to be mutated. Here are the mutated foci.Position 268741 doesn't seem to be mutated. Here are the mutated foci.Position 270196 doesn't seem to be mutated. Here are the mutated foci.Position 275369 doesn't seem to be mutated. Here are the mutated foci.Position 279555 doesn't seem to be mutated. Here are the mutated foci.Position 287075 doesn't seem to be mutated. Here are the mutated foci.Position 288740 doesn't seem to be mutated. Here are the mutated foci.Position 294638 doesn't seem to be mutated. Here are the mutated foci.Position 295112 doesn't seem to be mutated. Here are the mutated foci.Position 297662 doesn't seem to be mutated. Here are the mutated foci.Position 304348 doesn't seem to be mutated. Here are the mutated foci.Position 306733 doesn't seem to be mutated. Here are the mutated foci.Position 311675 doesn't seem to be mutated. Here are the mutated foci.Position 313390 doesn't seem to be mutated. Here are the mutated foci.Position 314389 doesn't seem to be mutated. Here are the mutated foci.Position 314560 doesn't seem to be mutated. Here are the mutated foci.Position 319803 doesn't seem to be mutated. Here are the mutated foci.Position 325674 doesn't seem to be mutated. Here are the mutated foci.Position 332129 doesn't seem to be mutated. Here are the mutated foci.Position 334254 doesn't seem to be mutated. Here are the mutated foci.Position 334276 doesn't seem to be mutated. Here are the mutated foci.Position 337526 doesn't seem to be mutated. Here are the mutated foci.Position 337881 doesn't seem to be mutated. Here are the mutated foci.Position 338132 doesn't seem to be mutated. Here are the mutated foci.Position 340631 doesn't seem to be mutated. Here are the mutated foci.Position 341051 doesn't seem to be mutated. Here are the mutated foci.Position 349486 doesn't seem to be mutated. Here are the mutated foci.Position 349720 doesn't seem to be mutated. Here are the mutated foci.Position 352205 doesn't seem to be mutated. Here are the mutated foci.Position 352514 doesn't seem to be mutated. Here are the mutated foci.Position 354669 doesn't seem to be mutated. Here are the mutated foci.Position 354789 doesn't seem to be mutated. Here are the mutated foci.Position 358379 doesn't seem to be mutated. Here are the mutated foci.Position 363684 doesn't seem to be mutated. Here are the mutated foci.Position 366322 doesn't seem to be mutated. Here are the mutated foci.Position 369904 doesn't seem to be mutated. Here are the mutated foci.Position 372818 doesn't seem to be mutated. Here are the mutated foci.Position 374179 doesn't seem to be mutated. Here are the mutated foci.Position 381724 doesn't seem to be mutated. Here are the mutated foci.Position 381918 doesn't seem to be mutated. Here are the mutated foci.Position 389273 doesn't seem to be mutated. Here are the mutated foci.Position 398626 doesn't seem to be mutated. Here are the mutated foci.Position 399016 doesn't seem to be mutated. Here are the mutated foci.Position 401312 doesn't seem to be mutated. Here are the mutated foci.Position 402894 doesn't seem to be mutated. Here are the mutated foci.Position 408370 doesn't seem to be mutated. Here are the mutated foci.Position 408808 doesn't seem to be mutated. Here are the mutated foci.Position 409658 doesn't seem to be mutated. Here are the mutated foci.Position 410461 doesn't seem to be mutated. Here are the mutated foci.Position 415405 doesn't seem to be mutated. Here are the mutated foci.Position 416414 doesn't seem to be mutated. Here are the mutated foci.Position 418333 doesn't seem to be mutated. Here are the mutated foci.Position 423023 doesn't seem to be mutated. Here are the mutated foci.Position 425517 doesn't seem to be mutated. Here are the mutated foci.Position 432623 doesn't seem to be mutated. Here are the mutated foci.Position 439552 doesn't seem to be mutated. Here are the mutated foci.Position 440249 doesn't seem to be mutated. Here are the mutated foci.Position 446947 doesn't seem to be mutated. Here are the mutated foci.Position 447130 doesn't seem to be mutated. Here are the mutated foci.Position 447628 doesn't seem to be mutated. Here are the mutated foci.Position 448749 doesn't seem to be mutated. Here are the mutated foci.Position 450260 doesn't seem to be mutated. Here are the mutated foci.Position 453188 doesn't seem to be mutated. Here are the mutated foci.Position 455597 doesn't seem to be mutated. Here are the mutated foci.Position 455850 doesn't seem to be mutated. Here are the mutated foci.Position 457025 doesn't seem to be mutated. Here are the mutated foci.Position 463735 doesn't seem to be mutated. Here are the mutated foci.Position 464936 doesn't seem to be mutated. Here are the mutated foci.Position 468261 doesn't seem to be mutated. Here are the mutated foci.Position 468316 doesn't seem to be mutated. Here are the mutated foci.Position 468894 doesn't seem to be mutated. Here are the mutated foci.Position 1984186 doesn't seem to be mutated. Here are the mutated foci.Position 1996098 doesn't seem to be mutated. Here are the mutated foci.Position 2003425 doesn't seem to be mutated. Here are the mutated foci.Position 2010205 doesn't seem to be mutated. Here are the mutated foci.Position 2015155 doesn't seem to be mutated. Here are the mutated foci.Position 2015737 doesn't seem to be mutated. Here are the mutated foci.Position 2018163 doesn't seem to be mutated. Here are the mutated foci.Position 2022029 doesn't seem to be mutated. Here are the mutated foci.Position 2023637 doesn't seem to be mutated. Here are the mutated foci.Position 2025430 doesn't seem to be mutated. Here are the mutated foci.Position 2026302 doesn't seem to be mutated. Here are the mutated foci.Position 2026429 doesn't seem to be mutated. Here are the mutated foci.Position 2037647 doesn't seem to be mutated. Here are the mutated foci.Position 2039870 doesn't seem to be mutated. Here are the mutated foci.Position 2039948 doesn't seem to be mutated. Here are the mutated foci.Position 2040465 doesn't seem to be mutated. Here are the mutated foci.Position 2041847 doesn't seem to be mutated. Here are the mutated foci.Position 2042263 doesn't seem to be mutated. Here are the mutated foci.Position 2042658 doesn't seem to be mutated. Here are the mutated foci.Position 2046618 doesn't seem to be mutated. Here are the mutated foci.Position 2047490 doesn't seem to be mutated. Here are the mutated foci.Position 2049596 doesn't seem to be mutated. Here are the mutated foci.Position 2050322 doesn't seem to be mutated. Here are the mutated foci.Position 2060990 doesn't seem to be mutated. Here are the mutated foci.Position 2062598 doesn't seem to be mutated. Here are the mutated foci.Position 2066289 doesn't seem to be mutated. Here are the mutated foci.Position 2067431 doesn't seem to be mutated. Here are the mutated foci.Position 2076604 doesn't seem to be mutated. Here are the mutated foci.Position 2079336 doesn't seem to be mutated. Here are the mutated foci.Position 2079937 doesn't seem to be mutated. Here are the mutated foci.Position 2088191 doesn't seem to be mutated. Here are the mutated foci.Position 2099828 doesn't seem to be mutated. Here are the mutated foci.Position 2104935 doesn't seem to be mutated. Here are the mutated foci.Position 2105407 doesn't seem to be mutated. Here are the mutated foci.Position 2110407 doesn't seem to be mutated. Here are the mutated foci.Position 2111959 doesn't seem to be mutated. Here are the mutated foci.Position 2117702 doesn't seem to be mutated. Here are the mutated foci.Position 2121072 doesn't seem to be mutated. Here are the mutated foci.Position 2128348 doesn't seem to be mutated. Here are the mutated foci.Position 2135881 doesn't seem to be mutated. Here are the mutated foci.Position 2137296 doesn't seem to be mutated. Here are the mutated foci.Position 2137531 doesn't seem to be mutated. Here are the mutated foci.Position 2151784 doesn't seem to be mutated. Here are the mutated foci.Position 2152184 doesn't seem to be mutated. Here are the mutated foci.Position 2161921 doesn't seem to be mutated. Here are the mutated foci.Position 2165169 doesn't seem to be mutated. Here are the mutated foci.Position 2166759 doesn't seem to be mutated. Here are the mutated foci.Position 2167091 doesn't seem to be mutated. Here are the mutated foci.Position 2169820 doesn't seem to be mutated. Here are the mutated foci.Position 2172466 doesn't seem to be mutated. Here are the mutated foci.Position 2178246 doesn't seem to be mutated. Here are the mutated foci.Position 2186546 doesn't seem to be mutated. Here are the mutated foci.Position 2195251 doesn't seem to be mutated. Here are the mutated foci.Position 19378472 doesn't seem to be mutated. Here are the mutated foci.Position 19381766 doesn't seem to be mutated. Here are the mutated foci.Position 19383839 doesn't seem to be mutated. Here are the mutated foci.Position 21802583 doesn't seem to be mutated. Here are the mutated foci.Position 21811165 doesn't seem to be mutated. Here are the mutated foci.Position 21811525 doesn't seem to be mutated. Here are the mutated foci.Position 21811726 doesn't seem to be mutated. Here are the mutated foci.Position 21816070 doesn't seem to be mutated. Here are the mutated foci.Position 21816713 doesn't seem to be mutated. Here are the mutated foci.Position 21817669 doesn't seem to be mutated. Here are the mutated foci.Position 21818278 doesn't seem to be mutated. Here are the mutated foci.Position 21821185 doesn't seem to be mutated. Here are the mutated foci.Position 21822087 doesn't seem to be mutated. Here are the mutated foci.Position 21826682 doesn't seem to be mutated. Here are the mutated foci.Position 21827579 doesn't seem to be mutated. Here are the mutated foci.Position 21829817 doesn't seem to be mutated. Here are the mutated foci.Position 21830457 doesn't seem to be mutated. Here are the mutated foci.Position 21831404 doesn't seem to be mutated. Here are the mutated foci.Position 21832214 doesn't seem to be mutated. Here are the mutated foci.Position 21832955 doesn't seem to be mutated. Here are the mutated foci.Position 21833292 doesn't seem to be mutated. Here are the mutated foci.Position 21833407 doesn't seem to be mutated. Here are the mutated foci.Position 21834695 doesn't seem to be mutated. Here are the mutated foci.Position 21835923 doesn't seem to be mutated. Here are the mutated foci.Position 21836333 doesn't seem to be mutated. Here are the mutated foci.Position 21837679 doesn't seem to be mutated. Here are the mutated foci.Position 21839012 doesn't seem to be mutated. Here are the mutated foci.Position 21840112 doesn't seem to be mutated. Here are the mutated foci.Position 21841046 doesn't seem to be mutated. Here are the mutated foci.Position 21844423 doesn't seem to be mutated. Here are the mutated foci.Position 21844875 doesn't seem to be mutated. Here are the mutated foci.Position 21845465 doesn't seem to be mutated. Here are the mutated foci.Position 21851045 doesn't seem to be mutated. Here are the mutated foci.Position 21852482 doesn't seem to be mutated. Here are the mutated foci.Position 21854740 doesn't seem to be mutated. Here are the mutated foci.Position 21855843 doesn't seem to be mutated. Here are the mutated foci.Position 21856157 doesn't seem to be mutated. Here are the mutated foci.Position 21856764 doesn't seem to be mutated. Here are the mutated foci.Position 21861009 doesn't seem to be mutated. Here are the mutated foci.Position 21861054 doesn't seem to be mutated. Here are the mutated foci.Position 21862460 doesn't seem to be mutated. Here are the mutated foci.Position 21862523 doesn't seem to be mutated. Here are the mutated foci.Position 21865781 doesn't seem to be mutated. Here are the mutated foci.Position 21867142 doesn't seem to be mutated. Here are the mutated foci.Position 21871388 doesn't seem to be mutated. Here are the mutated foci.Position 21964862 doesn't seem to be mutated. Here are the mutated foci.Position 21967301 doesn't seem to be mutated. Here are the mutated foci.Position 21967837 doesn't seem to be mutated. Here are the mutated foci.Position 21968734 doesn't seem to be mutated. Here are the mutated foci.Position 21976258 doesn't seem to be mutated. Here are the mutated foci.Position 35081810 doesn't seem to be mutated. Here are the mutated foci.Position 35083047 doesn't seem to be mutated. Here are the mutated foci.Position 35083520 doesn't seem to be mutated. Here are the mutated foci.Position 36829296 doesn't seem to be mutated. Here are the mutated foci.Position 36830391 doesn't seem to be mutated. Here are the mutated foci.Position 36834014 doesn't seem to be mutated. Here are the mutated foci.Position 36834468 doesn't seem to be mutated. Here are the mutated foci.Position 36838879 doesn't seem to be mutated. Here are the mutated foci.Position 36839945 doesn't seem to be mutated. Here are the mutated foci.Position 36858267 doesn't seem to be mutated. Here are the mutated foci.Position 36859890 doesn't seem to be mutated. Here are the mutated foci.Position 36861155 doesn't seem to be mutated. Here are the mutated foci.Position 36865684 doesn't seem to be mutated. Here are the mutated foci.Position 36868418 doesn't seem to be mutated. Here are the mutated foci.Position 36868719 doesn't seem to be mutated. Here are the mutated foci.Position 36870715 doesn't seem to be mutated. Here are the mutated foci.Position 36871461 doesn't seem to be mutated. Here are the mutated foci.Position 36877195 doesn't seem to be mutated. Here are the mutated foci.Position 36881692 doesn't seem to be mutated. Here are the mutated foci.Position 36883586 doesn't seem to be mutated. Here are the mutated foci.Position 36886459 doesn't seem to be mutated. Here are the mutated foci.Position 36895264 doesn't seem to be mutated. Here are the mutated foci.Position 36897165 doesn't seem to be mutated. Here are the mutated foci.Position 36899067 doesn't seem to be mutated. Here are the mutated foci.Position 36903191 doesn't seem to be mutated. Here are the mutated foci.Position 36904176 doesn't seem to be mutated. Here are the mutated foci.Position 36904535 doesn't seem to be mutated. Here are the mutated foci.Position 36905419 doesn't seem to be mutated. Here are the mutated foci.Position 36912081 doesn't seem to be mutated. Here are the mutated foci.Position 36913663 doesn't seem to be mutated. Here are the mutated foci.Position 36919038 doesn't seem to be mutated. Here are the mutated foci.Position 36919756 doesn't seem to be mutated. Here are the mutated foci.Position 36920050 doesn't seem to be mutated. Here are the mutated foci.Position 36921105 doesn't seem to be mutated. Here are the mutated foci.Position 36921155 doesn't seem to be mutated. Here are the mutated foci.Position 36923143 doesn't seem to be mutated. Here are the mutated foci.Position 36929297 doesn't seem to be mutated. Here are the mutated foci.Position 36932251 doesn't seem to be mutated. Here are the mutated foci.Position 36933232 doesn't seem to be mutated. Here are the mutated foci.Position 36940010 doesn't seem to be mutated. Here are the mutated foci.Position 36940366 doesn't seem to be mutated. Here are the mutated foci.Position 36940518 doesn't seem to be mutated. Here are the mutated foci.Position 36956659 doesn't seem to be mutated. Here are the mutated foci.Position 36967087 doesn't seem to be mutated. Here are the mutated foci.Position 36971625 doesn't seem to be mutated. Here are the mutated foci.Position 36973782 doesn't seem to be mutated. Here are the mutated foci.Position 36976110 doesn't seem to be mutated. Here are the mutated foci.Position 36978299 doesn't seem to be mutated. Here are the mutated foci.Position 36987570 doesn't seem to be mutated. Here are the mutated foci.Position 36989964 doesn't seem to be mutated. Here are the mutated foci.Position 36992810 doesn't seem to be mutated. Here are the mutated foci.Position 36994063 doesn't seem to be mutated. Here are the mutated foci.Position 36994661 doesn't seem to be mutated. Here are the mutated foci.Position 37000544 doesn't seem to be mutated. Here are the mutated foci.Position 37000585 doesn't seem to be mutated. Here are the mutated foci.Position 37000965 doesn't seem to be mutated. Here are the mutated foci.Position 37003565 doesn't seem to be mutated. Here are the mutated foci.Position 37014936 doesn't seem to be mutated. Here are the mutated foci.Position 37015640 doesn't seem to be mutated. Here are the mutated foci.Position 37026817 doesn't seem to be mutated. Here are the mutated foci.Position 37028117 doesn't seem to be mutated. Here are the mutated foci.Position 37028642 doesn't seem to be mutated. Here are the mutated foci.Position 37028698 doesn't seem to be mutated. Here are the mutated foci.Position 37029350 doesn't seem to be mutated. Here are the mutated foci.Position 37032315 doesn't seem to be mutated. Here are the mutated foci.Position 95096795 doesn't seem to be mutated. Here are the mutated foci.Position 95099443 doesn't seem to be mutated. Here are the mutated foci.Position 95107187 doesn't seem to be mutated. Here are the mutated foci.Position 95113626 doesn't seem to be mutated. Here are the mutated foci.Position 95113754 doesn't seem to be mutated. Here are the mutated foci.Position 95114586 doesn't seem to be mutated. Here are the mutated foci.Position 95117377 doesn't seem to be mutated. Here are the mutated foci.Position 95126842 doesn't seem to be mutated. Here are the mutated foci.Position 95126881 doesn't seem to be mutated. Here are the mutated foci.Position 95129865 doesn't seem to be mutated. Here are the mutated foci.Position 95131076 doesn't seem to be mutated. Here are the mutated foci.Position 95131188 doesn't seem to be mutated. Here are the mutated foci.Position 95133029 doesn't seem to be mutated. Here are the mutated foci.Position 95134730 doesn't seem to be mutated. Here are the mutated foci.Position 95136236 doesn't seem to be mutated. Here are the mutated foci.Position 95144871 doesn't seem to be mutated. Here are the mutated foci.Position 95146844 doesn't seem to be mutated. Here are the mutated foci.Position 95149581 doesn't seem to be mutated. Here are the mutated foci.Position 95151960 doesn't seem to be mutated. Here are the mutated foci.Position 95155067 doesn't seem to be mutated. Here are the mutated foci.Position 95158174 doesn't seem to be mutated. Here are the mutated foci.Position 95159033 doesn't seem to be mutated. Here are the mutated foci.Position 95162841 doesn't seem to be mutated. Here are the mutated foci.Position 95163582 doesn't seem to be mutated. Here are the mutated foci.Position 95166215 doesn't seem to be mutated. Here are the mutated foci.Position 95169695 doesn't seem to be mutated. Here are the mutated foci.Position 95170470 doesn't seem to be mutated. Here are the mutated foci.Position 95178044 doesn't seem to be mutated. Here are the mutated foci.Position 95180722 doesn't seem to be mutated. Here are the mutated foci.Position 95186826 doesn't seem to be mutated. Here are the mutated foci.Position 95187119 doesn't seem to be mutated. Here are the mutated foci.Position 95189528 doesn't seem to be mutated. Here are the mutated foci.Position 95191992 doesn't seem to be mutated. Here are the mutated foci.Position 95196292 doesn't seem to be mutated. Here are the mutated foci.Position 95201473 doesn't seem to be mutated. Here are the mutated foci.Position 95202270 doesn't seem to be mutated. Here are the mutated foci.Position 95205504 doesn't seem to be mutated. Here are the mutated foci.Position 95219467 doesn't seem to be mutated. Here are the mutated foci.Position 95222929 doesn't seem to be mutated. Here are the mutated foci.Position 95229062 doesn't seem to be mutated. Here are the mutated foci.Position 95231351 doesn't seem to be mutated. Here are the mutated foci.Position 95234391 doesn't seem to be mutated. Here are the mutated foci.Position 95238549 doesn't seem to be mutated. Here are the mutated foci.Position 95240788 doesn't seem to be mutated. Here are the mutated foci.Position 95243780 doesn't seem to be mutated. Here are the mutated foci.Position 95247413 doesn't seem to be mutated. Here are the mutated foci.Position 95253277 doesn't seem to be mutated. Here are the mutated foci.Position 95253523 doesn't seem to be mutated. Here are the mutated foci.Position 95254228 doesn't seem to be mutated. Here are the mutated foci.Position 95256475 doesn't seem to be mutated. Here are the mutated foci.Position 95256765 doesn't seem to be mutated. Here are the mutated foci.Position 95259797 doesn't seem to be mutated. Here are the mutated foci.Position 95261440 doesn't seem to be mutated. Here are the mutated foci.Position 95263041 doesn't seem to be mutated. Here are the mutated foci.Position 95268290 doesn't seem to be mutated. Here are the mutated foci.Position 95268387 doesn't seem to be mutated. Here are the mutated foci.Position 95274433 doesn't seem to be mutated. Here are the mutated foci.Position 95277447 doesn't seem to be mutated. Here are the mutated foci.Position 95279995 doesn't seem to be mutated. Here are the mutated foci.Position 95280571 doesn't seem to be mutated. Here are the mutated foci.Position 95281394 doesn't seem to be mutated. Here are the mutated foci.Position 95284818 doesn't seem to be mutated. Here are the mutated foci.Position 95285674 doesn't seem to be mutated. Here are the mutated foci.Position 95291488 doesn't seem to be mutated. Here are the mutated foci.Position 95297043 doesn't seem to be mutated. Here are the mutated foci.Position 95303870 doesn't seem to be mutated. Here are the mutated foci.Position 95308517 doesn't seem to be mutated. Here are the mutated foci.Position 95311582 doesn't seem to be mutated. Here are the mutated foci.Position 95313368 doesn't seem to be mutated. Here are the mutated foci.Position 95325343 doesn't seem to be mutated. Here are the mutated foci.Position 95331959 doesn't seem to be mutated. Here are the mutated foci.Position 95336367 doesn't seem to be mutated. Here are the mutated foci.Position 95339543 doesn't seem to be mutated. Here are the mutated foci.Position 95339792 doesn't seem to be mutated. Here are the mutated foci.Position 95344419 doesn't seem to be mutated. Here are the mutated foci.Position 95345436 doesn't seem to be mutated. Here are the mutated foci.Position 95350850 doesn't seem to be mutated. Here are the mutated foci.Position 95351696 doesn't seem to be mutated. Here are the mutated foci.Position 95353942 doesn't seem to be mutated. Here are the mutated foci.Position 95354366 doesn't seem to be mutated. Here are the mutated foci.Position 95358345 doesn't seem to be mutated. Here are the mutated foci.Position 95358984 doesn't seem to be mutated. Here are the mutated foci.Position 95359549 doesn't seem to be mutated. Here are the mutated foci.Position 95363068 doesn't seem to be mutated. Here are the mutated foci.Position 95368612 doesn't seem to be mutated. Here are the mutated foci.Position 95371768 doesn't seem to be mutated. Here are the mutated foci.Position 95372035 doesn't seem to be mutated. Here are the mutated foci.Position 95374383 doesn't seem to be mutated. Here are the mutated foci.Position 95375344 doesn't seem to be mutated. Here are the mutated foci.Position 95378270 doesn't seem to be mutated. Here are the mutated foci.Position 95379133 doesn't seem to be mutated. Here are the mutated foci.Position 95386239 doesn't seem to be mutated. Here are the mutated foci.Position 95387204 doesn't seem to be mutated. Here are the mutated foci.Position 95389244 doesn't seem to be mutated. Here are the mutated foci.Position 95391592 doesn't seem to be mutated. Here are the mutated foci.Position 95394186 doesn't seem to be mutated. Here are the mutated foci.Position 95394269 doesn't seem to be mutated. Here are the mutated foci.Position 95394646 doesn't seem to be mutated. Here are the mutated foci.Position 95397341 doesn't seem to be mutated. Here are the mutated foci.Position 95419197 doesn't seem to be mutated. Here are the mutated foci.Position 95420347 doesn't seem to be mutated. Here are the mutated foci.Position 95424426 doesn't seem to be mutated. Here are the mutated foci.Position 95424970 doesn't seem to be mutated. Here are the mutated foci.Position 95425227 doesn't seem to be mutated. Here are the mutated foci.Position 95426043 doesn't seem to be mutated. Here are the mutated foci.Position 95430539 doesn't seem to be mutated. Here are the mutated foci.Position 95431061 doesn't seem to be mutated. Here are the mutated foci.Position 95438161 doesn't seem to be mutated. Here are the mutated foci.Position 95439361 doesn't seem to be mutated. Here are the mutated foci.Position 95440286 doesn't seem to be mutated. Here are the mutated foci.Position 95444023 doesn't seem to be mutated. Here are the mutated foci.Position 95447849 doesn't seem to be mutated. Here are the mutated foci.Position 95448730 doesn't seem to be mutated. Here are the mutated foci.Position 95448749 doesn't seem to be mutated. Here are the mutated foci.Position 95450668 doesn't seem to be mutated. Here are the mutated foci.Position 95451710 doesn't seem to be mutated. Here are the mutated foci.Position 95455306 doesn't seem to be mutated. Here are the mutated foci.Position 95456343 doesn't seem to be mutated. Here are the mutated foci.Position 95457779 doesn't seem to be mutated. Here are the mutated foci.Position 95462492 doesn't seem to be mutated. Here are the mutated foci.Position 95466326 doesn't seem to be mutated. Here are the mutated foci.Position 95468967 doesn't seem to be mutated. Here are the mutated foci.Position 95470857 doesn't seem to be mutated. Here are the mutated foci.Position 95483283 doesn't seem to be mutated. Here are the mutated foci.Position 95492217 doesn't seem to be mutated. Here are the mutated foci.Position 95505498 doesn't seem to be mutated. Here are the mutated foci.Position 95520344 doesn't seem to be mutated. Here are the mutated foci.Position 97675582 doesn't seem to be mutated. Here are the mutated foci.Position 97675674 doesn't seem to be mutated. Here are the mutated foci.Position 97676497 doesn't seem to be mutated. Here are the mutated foci.Position 97686499 doesn't seem to be mutated. Here are the mutated foci.Position 97691269 doesn't seem to be mutated. Here are the mutated foci.Position 97692296 doesn't seem to be mutated. Here are the mutated foci.Position 97692743 doesn't seem to be mutated. Here are the mutated foci.Position 97695038 doesn't seem to be mutated. Here are the mutated foci.Position 97698896 doesn't seem to be mutated. Here are the mutated foci.Position 99102153 doesn't seem to be mutated. Here are the mutated foci.Position 99112841 doesn't seem to be mutated. Here are the mutated foci.Position 99116404 doesn't seem to be mutated. Here are the mutated foci.Position 99122738 doesn't seem to be mutated. Here are the mutated foci.Position 99130362 doesn't seem to be mutated. Here are the mutated foci.Position 99131211 doesn't seem to be mutated. Here are the mutated foci.Position 99140455 doesn't seem to be mutated. Here are the mutated foci.Position 99141301 doesn't seem to be mutated. Here are the mutated foci.Position 99142839 doesn't seem to be mutated. Here are the mutated foci.Position 99151386 doesn't seem to be mutated. Here are the mutated foci.Position 99156661 doesn't seem to be mutated. Here are the mutated foci.Position 99157825 doesn't seem to be mutated. Here are the mutated foci.Position 108876892 doesn't seem to be mutated. Here are the mutated foci.Position 108887481 doesn't seem to be mutated. Here are the mutated foci.Position 108896835 doesn't seem to be mutated. Here are the mutated foci.Position 108897545 doesn't seem to be mutated. Here are the mutated foci.Position 108899142 doesn't seem to be mutated. Here are the mutated foci.Position 108899248 doesn't seem to be mutated. Here are the mutated foci.Position 108900303 doesn't seem to be mutated. Here are the mutated foci.Position 108902333 doesn't seem to be mutated. Here are the mutated foci.Position 108902826 doesn't seem to be mutated. Here are the mutated foci.Position 108903345 doesn't seem to be mutated. Here are the mutated foci.Position 108907296 doesn't seem to be mutated. Here are the mutated foci.Position 108907612 doesn't seem to be mutated. Here are the mutated foci.Position 108914140 doesn't seem to be mutated. Here are the mutated foci.Position 108914212 doesn't seem to be mutated. Here are the mutated foci.Position 108922326 doesn't seem to be mutated. Here are the mutated foci.Position 108927988 doesn't seem to be mutated. Here are the mutated foci.Position 108930453 doesn't seem to be mutated. Here are the mutated foci.Position 108931052 doesn't seem to be mutated. Here are the mutated foci.Position 132890307 doesn't seem to be mutated. Here are the mutated foci.Position 132896005 doesn't seem to be mutated. Here are the mutated foci.Position 132904210 doesn't seem to be mutated. Here are the mutated foci.Position 132904806 doesn't seem to be mutated. Here are the mutated foci.Position 132905464 doesn't seem to be mutated. Here are the mutated foci.Position 132907942 doesn't seem to be mutated. Here are the mutated foci.Position 132909249 doesn't seem to be mutated. Here are the mutated foci.Position 132916378 doesn't seem to be mutated. Here are the mutated foci.Position 132917585 doesn't seem to be mutated. Here are the mutated foci.Position 132922923 doesn't seem to be mutated. Here are the mutated foci.Position 132923460 doesn't seem to be mutated. Here are the mutated foci.Position 132930352 doesn't seem to be mutated. Here are the mutated foci.Position 132937862 doesn't seem to be mutated. Here are the mutated foci.Position 132937995 doesn't seem to be mutated. Here are the mutated foci.Position 132939684 doesn't seem to be mutated. Here are the mutated foci.Position 43072369 doesn't seem to be mutated. Here are the mutated foci.Position 43075197 doesn't seem to be mutated. Here are the mutated foci.Position 43075944 doesn't seem to be mutated. Here are the mutated foci.Position 43076203 doesn't seem to be mutated. Here are the mutated foci.Position 43077557 doesn't seem to be mutated. Here are the mutated foci.Position 43078125 doesn't seem to be mutated. Here are the mutated foci.Position 43079452 doesn't seem to be mutated. Here are the mutated foci.Position 43079566 doesn't seem to be mutated. Here are the mutated foci.Position 43081227 doesn't seem to be mutated. Here are the mutated foci.Position 43084240 doesn't seem to be mutated. Here are the mutated foci.Position 43085490 doesn't seem to be mutated. Here are the mutated foci.Position 43089354 doesn't seem to be mutated. Here are the mutated foci.Position 43090538 doesn't seem to be mutated. Here are the mutated foci.Position 43091853 doesn't seem to be mutated. Here are the mutated foci.Position 43094631 doesn't seem to be mutated. Here are the mutated foci.Position 43095026 doesn't seem to be mutated. Here are the mutated foci.Position 43095151 doesn't seem to be mutated. Here are the mutated foci.Position 43096900 doesn't seem to be mutated. Here are the mutated foci.Position 43098708 doesn't seem to be mutated. Here are the mutated foci.Position 43100032 doesn't seem to be mutated. Here are the mutated foci.Position 43102309 doesn't seem to be mutated. Here are the mutated foci.Position 43102436 doesn't seem to be mutated. Here are the mutated foci.Position 43102973 doesn't seem to be mutated. Here are the mutated foci.Position 43106397 doesn't seem to be mutated. Here are the mutated foci.Position 43106910 doesn't seem to be mutated. Here are the mutated foci.Position 43111111 doesn't seem to be mutated. Here are the mutated foci.Position 43112293 doesn't seem to be mutated. Here are the mutated foci.Position 43113774 doesn't seem to be mutated. Here are the mutated foci.Position 43114068 doesn't seem to be mutated. Here are the mutated foci.Position 43117166 doesn't seem to be mutated. Here are the mutated foci.Position 43117169 doesn't seem to be mutated. Here are the mutated foci.Position 43117870 doesn't seem to be mutated. Here are the mutated foci.Position 43119436 doesn't seem to be mutated. Here are the mutated foci.Position 43120772 doesn't seem to be mutated. Here are the mutated foci.Position 43120899 doesn't seem to be mutated. Here are the mutated foci.Position 43120954 doesn't seem to be mutated. Here are the mutated foci.Position 43121875 doesn't seem to be mutated. Here are the mutated foci.Position 43122668 doesn't seem to be mutated. Here are the mutated foci.Position 43127632 doesn't seem to be mutated. Here are the mutated foci.Position 43133561 doesn't seem to be mutated. Here are the mutated foci.Position 61899021 doesn't seem to be mutated. Here are the mutated foci.Position 61900606 doesn't seem to be mutated. Here are the mutated foci.Position 61906412 doesn't seem to be mutated. Here are the mutated foci.Position 61909395 doesn't seem to be mutated. Here are the mutated foci.Position 61913829 doesn't seem to be mutated. Here are the mutated foci.Position 61916228 doesn't seem to be mutated. Here are the mutated foci.Position 61919847 doesn't seem to be mutated. Here are the mutated foci.Position 61926053 doesn't seem to be mutated. Here are the mutated foci.Position 61927115 doesn't seem to be mutated. Here are the mutated foci.Position 61927943 doesn't seem to be mutated. Here are the mutated foci.Position 61927977 doesn't seem to be mutated. Here are the mutated foci.Position 61928799 doesn't seem to be mutated. Here are the mutated foci.Position 61929811 doesn't seem to be mutated. Here are the mutated foci.Position 61930486 doesn't seem to be mutated. Here are the mutated foci.Position 61931141 doesn't seem to be mutated. Here are the mutated foci.Position 61935382 doesn't seem to be mutated. Here are the mutated foci.Position 61935776 doesn't seem to be mutated. Here are the mutated foci.Position 61937183 doesn't seem to be mutated. Here are the mutated foci.Position 61941494 doesn't seem to be mutated. Here are the mutated foci.Position 61944515 doesn't seem to be mutated. Here are the mutated foci.Position 61946910 doesn't seem to be mutated. Here are the mutated foci.Position 61948763 doesn't seem to be mutated. Here are the mutated foci.Position 61950285 doesn't seem to be mutated. Here are the mutated foci.Position 61953000 doesn't seem to be mutated. Here are the mutated foci.Position 61961423 doesn't seem to be mutated. Here are the mutated foci.Position 61962993 doesn't seem to be mutated. Here are the mutated foci.Position 61964272 doesn't seem to be mutated. Here are the mutated foci.Position 61967401 doesn't seem to be mutated. Here are the mutated foci.Position 61975297 doesn't seem to be mutated. Here are the mutated foci.Position 61977871 doesn't seem to be mutated. Here are the mutated foci.Position 61979258 doesn't seem to be mutated. Here are the mutated foci.Position 61983606 doesn't seem to be mutated. Here are the mutated foci.Position 61984559 doesn't seem to be mutated. Here are the mutated foci.Position 61984719 doesn't seem to be mutated. Here are the mutated foci.Position 61985577 doesn't seem to be mutated. Here are the mutated foci.Position 61992580 doesn't seem to be mutated. Here are the mutated foci.Position 61993764 doesn't seem to be mutated. Here are the mutated foci.Position 61994451 doesn't seem to be mutated. Here are the mutated foci.Position 61998255 doesn't seem to be mutated. Here are the mutated foci.Position 61999805 doesn't seem to be mutated. Here are the mutated foci.Position 62009225 doesn't seem to be mutated. Here are the mutated foci.Position 62010998 doesn't seem to be mutated. Here are the mutated foci.Position 62013073 doesn't seem to be mutated. Here are the mutated foci.Position 62013204 doesn't seem to be mutated. Here are the mutated foci.Position 62014247 doesn't seem to be mutated. Here are the mutated foci.Position 62015536 doesn't seem to be mutated. Here are the mutated foci.Position 62015914 doesn't seem to be mutated. Here are the mutated foci.Position 62017329 doesn't seem to be mutated. Here are the mutated foci.Position 62033038 doesn't seem to be mutated. Here are the mutated foci.Position 62036824 doesn't seem to be mutated. Here are the mutated foci.Position 62042788 doesn't seem to be mutated. Here are the mutated foci.Position 62046685 doesn't seem to be mutated. Here are the mutated foci.Position 62054393 doesn't seem to be mutated. Here are the mutated foci.Position 62055185 doesn't seem to be mutated. Here are the mutated foci.Position 62057619 doesn't seem to be mutated. Here are the mutated foci.Position 62058347 doesn't seem to be mutated. Here are the mutated foci.Position 62065777 doesn't seem to be mutated. Here are the mutated foci.Position 62069179 doesn't seem to be mutated. Here are the mutated foci.Position 62079827 doesn't seem to be mutated. Here are the mutated foci.Position 62091220 doesn't seem to be mutated. Here are the mutated foci.Position 62094523 doesn't seem to be mutated. Here are the mutated foci.Position 70593042 doesn't seem to be mutated. Here are the mutated foci.Position 70593217 doesn't seem to be mutated. Here are the mutated foci.Position 70593483 doesn't seem to be mutated. Here are the mutated foci.Position 70594785 doesn't seem to be mutated. Here are the mutated foci.Position 70595015 doesn't seem to be mutated. Here are the mutated foci.Position 70597809 doesn't seem to be mutated. Here are the mutated foci.Position 70600824 doesn't seem to be mutated. Here are the mutated foci.Position 78032204 doesn't seem to be mutated. Here are the mutated foci.Position 78041093 doesn't seem to be mutated. Here are the mutated foci.Position 78042100 doesn't seem to be mutated. Here are the mutated foci.Position 78042235 doesn't seem to be mutated. Here are the mutated foci.Position 78043596 doesn't seem to be mutated. Here are the mutated foci.Position 78049032 doesn't seem to be mutated. Here are the mutated foci.Position 78058598 doesn't seem to be mutated. Here are the mutated foci.Position 78060988 doesn't seem to be mutated. Here are the mutated foci.Position 86751673 doesn't seem to be mutated. Here are the mutated foci.Position 86751872 doesn't seem to be mutated. Here are the mutated foci.Position 86752262 doesn't seem to be mutated. Here are the mutated foci.Position 86752936 doesn't seem to be mutated. Here are the mutated foci.Position 86753570 doesn't seem to be mutated. Here are the mutated foci.Position 86768160 doesn't seem to be mutated. Here are the mutated foci.Position 86773188 doesn't seem to be mutated. Here are the mutated foci.Position 86778232 doesn't seem to be mutated. Here are the mutated foci.Position 86780952 doesn't seem to be mutated. Here are the mutated foci.Position 86781619 doesn't seem to be mutated. Here are the mutated foci.Position 86782619 doesn't seem to be mutated. Here are the mutated foci.Position 86797887 doesn't seem to be mutated. Here are the mutated foci.Position 86806614 doesn't seem to be mutated. Here are the mutated foci.Position 86807493 doesn't seem to be mutated. Here are the mutated foci.Position 86810273 doesn't seem to be mutated. Here are the mutated foci.Position 86813057 doesn't seem to be mutated. Here are the mutated foci.Position 86814932 doesn't seem to be mutated. Here are the mutated foci.Position 86819542 doesn't seem to be mutated. Here are the mutated foci.Position 86831905 doesn't seem to be mutated. Here are the mutated foci.Position 86835108 doesn't seem to be mutated. Here are the mutated foci.Position 86838184 doesn't seem to be mutated. Here are the mutated foci.Position 86838332 doesn't seem to be mutated. Here are the mutated foci.Position 86839761 doesn't seem to be mutated. Here are the mutated foci.Position 86847614 doesn't seem to be mutated. Here are the mutated foci.Position 86851190 doesn't seem to be mutated. Here are the mutated foci.Position 86853790 doesn't seem to be mutated. Here are the mutated foci.Position 86854533 doesn't seem to be mutated. Here are the mutated foci.Position 86855183 doesn't seem to be mutated. Here are the mutated foci.Position 86857063 doesn't seem to be mutated. Here are the mutated foci.Position 86860496 doesn't seem to be mutated. Here are the mutated foci.Position 86864622 doesn't seem to be mutated. Here are the mutated foci.Position 86869697 doesn't seem to be mutated. Here are the mutated foci.Position 86870780 doesn't seem to be mutated. Here are the mutated foci.Position 86874704 doesn't seem to be mutated. Here are the mutated foci.Position 86879612 doesn't seem to be mutated. Here are the mutated foci.Position 86880428 doesn't seem to be mutated. Here are the mutated foci.Position 86881032 doesn't seem to be mutated. Here are the mutated foci.Position 86883237 doesn't seem to be mutated. Here are the mutated foci.Position 86884066 doesn't seem to be mutated. Here are the mutated foci.Position 86886825 doesn't seem to be mutated. Here are the mutated foci.Position 86888328 doesn't seem to be mutated. Here are the mutated foci.Position 86889803 doesn't seem to be mutated. Here are the mutated foci.Position 86890350 doesn't seem to be mutated. Here are the mutated foci.Position 86893517 doesn't seem to be mutated. Here are the mutated foci.Position 86893632 doesn't seem to be mutated. Here are the mutated foci.Position 86894458 doesn't seem to be mutated. Here are the mutated foci.Position 86894767 doesn't seem to be mutated. Here are the mutated foci.Position 86900958 doesn't seem to be mutated. Here are the mutated foci.Position 86912254 doesn't seem to be mutated. Here are the mutated foci.Position 86919709 doesn't seem to be mutated. Here are the mutated foci.Position 86924222 doesn't seem to be mutated. Here are the mutated foci.Position 86925653 doesn't seem to be mutated. Here are the mutated foci.Position 86926009 doesn't seem to be mutated. Here are the mutated foci.Position 86929903 doesn't seem to be mutated. Here are the mutated foci.Position 87865062 doesn't seem to be mutated. Here are the mutated foci.Position 87876370 doesn't seem to be mutated. Here are the mutated foci.Position 87878027 doesn't seem to be mutated. Here are the mutated foci.Position 87879387 doesn't seem to be mutated. Here are the mutated foci.Position 87892267 doesn't seem to be mutated. Here are the mutated foci.Position 87892766 doesn't seem to be mutated. Here are the mutated foci.Position 87902476 doesn't seem to be mutated. Here are the mutated foci.Position 87903610 doesn't seem to be mutated. Here are the mutated foci.Position 87904141 doesn't seem to be mutated. Here are the mutated foci.Position 87904666 doesn't seem to be mutated. Here are the mutated foci.Position 87909665 doesn't seem to be mutated. Here are the mutated foci.Position 87911084 doesn't seem to be mutated. Here are the mutated foci.Position 87914887 doesn't seem to be mutated. Here are the mutated foci.Position 87918669 doesn't seem to be mutated. Here are the mutated foci.Position 87923302 doesn't seem to be mutated. Here are the mutated foci.Position 87934337 doesn't seem to be mutated. Here are the mutated foci.Position 87937918 doesn't seem to be mutated. Here are the mutated foci.Position 87938686 doesn't seem to be mutated. Here are the mutated foci.Position 87940250 doesn't seem to be mutated. Here are the mutated foci.Position 87942404 doesn't seem to be mutated. Here are the mutated foci.Position 87942808 doesn't seem to be mutated. Here are the mutated foci.Position 87945171 doesn't seem to be mutated. Here are the mutated foci.Position 87949715 doesn't seem to be mutated. Here are the mutated foci.Position 87951192 doesn't seem to be mutated. Here are the mutated foci.Position 87951531 doesn't seem to be mutated. Here are the mutated foci.Position 87953461 doesn't seem to be mutated. Here are the mutated foci.Position 87957291 doesn't seem to be mutated. Here are the mutated foci.Position 87960194 doesn't seem to be mutated. Here are the mutated foci.Position 87960493 doesn't seem to be mutated. Here are the mutated foci.Position 87961096 doesn't seem to be mutated. Here are the mutated foci.Position 87961299 doesn't seem to be mutated. Here are the mutated foci.Position 87965754 doesn't seem to be mutated. Here are the mutated foci.Position 88986723 doesn't seem to be mutated. Here are the mutated foci.Position 88987949 doesn't seem to be mutated. Here are the mutated foci.Position 88994761 doesn't seem to be mutated. Here are the mutated foci.Position 89000672 doesn't seem to be mutated. Here are the mutated foci.Position 89011281 doesn't seem to be mutated. Here are the mutated foci.Position 89013094 doesn't seem to be mutated. Here are the mutated foci.Position 89016077 doesn't seem to be mutated. Here are the mutated foci.Position 89017959 doesn't seem to be mutated. Here are the mutated foci.Position 102515277 doesn't seem to be mutated. Here are the mutated foci.Position 102519826 doesn't seem to be mutated. Here are the mutated foci.Position 102523927 doesn't seem to be mutated. Here are the mutated foci.Position 102524412 doesn't seem to be mutated. Here are the mutated foci.Position 102531809 doesn't seem to be mutated. Here are the mutated foci.Position 102534300 doesn't seem to be mutated. Here are the mutated foci.Position 102540725 doesn't seem to be mutated. Here are the mutated foci.Position 102545116 doesn't seem to be mutated. Here are the mutated foci.Position 102552031 doesn't seem to be mutated. Here are the mutated foci.Position 102553755 doesn't seem to be mutated. Here are the mutated foci.Position 102559022 doesn't seem to be mutated. Here are the mutated foci.Position 102563771 doesn't seem to be mutated. Here are the mutated foci.Position 102566504 doesn't seem to be mutated. Here are the mutated foci.Position 102570180 doesn't seem to be mutated. Here are the mutated foci.Position 102573708 doesn't seem to be mutated. Here are the mutated foci.Position 102581486 doesn't seem to be mutated. Here are the mutated foci.Position 102581653 doesn't seem to be mutated. Here are the mutated foci.Position 102585641 doesn't seem to be mutated. Here are the mutated foci.Position 102585780 doesn't seem to be mutated. Here are the mutated foci.Position 102589603 doesn't seem to be mutated. Here are the mutated foci.Position 102592296 doesn't seem to be mutated. Here are the mutated foci.Position 102593471 doesn't seem to be mutated. Here are the mutated foci.Position 102595447 doesn't seem to be mutated. Here are the mutated foci.Position 102595980 doesn't seem to be mutated. Here are the mutated foci.Position 102598581 doesn't seem to be mutated. Here are the mutated foci.Position 102599784 doesn't seem to be mutated. Here are the mutated foci.Position 102610808 doesn't seem to be mutated. Here are the mutated foci.Position 102613416 doesn't seem to be mutated. Here are the mutated foci.Position 102615824 doesn't seem to be mutated. Here are the mutated foci.Position 102619742 doesn't seem to be mutated. Here are the mutated foci.Position 102635121 doesn't seem to be mutated. Here are the mutated foci.Position 110921867 doesn't seem to be mutated. Here are the mutated foci.Position 110924473 doesn't seem to be mutated. Here are the mutated foci.Position 110926253 doesn't seem to be mutated. Here are the mutated foci.Position 110927358 doesn't seem to be mutated. Here are the mutated foci.Position 110933773 doesn't seem to be mutated. Here are the mutated foci.Position 110937747 doesn't seem to be mutated. Here are the mutated foci.Position 110940521 doesn't seem to be mutated. Here are the mutated foci.Position 110942828 doesn't seem to be mutated. Here are the mutated foci.Position 110945344 doesn't seem to be mutated. Here are the mutated foci.Position 110947403 doesn't seem to be mutated. Here are the mutated foci.Position 110961342 doesn't seem to be mutated. Here are the mutated foci.Position 110965395 doesn't seem to be mutated. Here are the mutated foci.Position 110987705 doesn't seem to be mutated. Here are the mutated foci.Position 110988501 doesn't seem to be mutated. Here are the mutated foci.Position 110990770 doesn't seem to be mutated. Here are the mutated foci.Position 110997532 doesn't seem to be mutated. Here are the mutated foci.Position 110998251 doesn't seem to be mutated. Here are the mutated foci.Position 111003792 doesn't seem to be mutated. Here are the mutated foci.Position 111013984 doesn't seem to be mutated. Here are the mutated foci.Position 111016226 doesn't seem to be mutated. Here are the mutated foci.Position 111017003 doesn't seem to be mutated. Here are the mutated foci.Position 111018501 doesn't seem to be mutated. Here are the mutated foci.Position 113553548 doesn't seem to be mutated. Here are the mutated foci.Position 113558392 doesn't seem to be mutated. Here are the mutated foci.Position 113559559 doesn't seem to be mutated. Here are the mutated foci.Position 113561567 doesn't seem to be mutated. Here are the mutated foci.Position 113562602 doesn't seem to be mutated. Here are the mutated foci.Position 113568251 doesn't seem to be mutated. Here are the mutated foci.Position 113568625 doesn't seem to be mutated. Here are the mutated foci.Position 113569066 doesn't seem to be mutated. Here are the mutated foci.Position 113578579 doesn't seem to be mutated. Here are the mutated foci.Position 113579917 doesn't seem to be mutated. Here are the mutated foci.Position 113580845 doesn't seem to be mutated. Here are the mutated foci.Position 113582201 doesn't seem to be mutated. Here are the mutated foci.Position 113584063 doesn't seem to be mutated. Here are the mutated foci.Position 113586274 doesn't seem to be mutated. Here are the mutated foci.Position 121477520 doesn't seem to be mutated. Here are the mutated foci.Position 121480937 doesn't seem to be mutated. Here are the mutated foci.Position 121484426 doesn't seem to be mutated. Here are the mutated foci.Position 121487421 doesn't seem to be mutated. Here are the mutated foci.Position 121488160 doesn't seem to be mutated. Here are the mutated foci.Position 121488234 doesn't seem to be mutated. Here are the mutated foci.Position 121488412 doesn't seem to be mutated. Here are the mutated foci.Position 121492606 doesn't seem to be mutated. Here are the mutated foci.Position 121494638 doesn't seem to be mutated. Here are the mutated foci.Position 121494924 doesn't seem to be mutated. Here are the mutated foci.Position 121499341 doesn't seem to be mutated. Here are the mutated foci.Position 121503178 doesn't seem to be mutated. Here are the mutated foci.Position 121505494 doesn't seem to be mutated. Here are the mutated foci.Position 121509027 doesn't seem to be mutated. Here are the mutated foci.Position 121514937 doesn't seem to be mutated. Here are the mutated foci.Position 121520099 doesn't seem to be mutated. Here are the mutated foci.Position 121529981 doesn't seem to be mutated. Here are the mutated foci.Position 121530350 doesn't seem to be mutated. Here are the mutated foci.Position 121557542 doesn't seem to be mutated. Here are the mutated foci.Position 121558734 doesn't seem to be mutated. Here are the mutated foci.Position 121560497 doesn't seem to be mutated. Here are the mutated foci.Position 121560686 doesn't seem to be mutated. Here are the mutated foci.Position 121564413 doesn't seem to be mutated. Here are the mutated foci.Position 121565633 doesn't seem to be mutated. Here are the mutated foci.Position 121569517 doesn't seem to be mutated. Here are the mutated foci.Position 121572479 doesn't seem to be mutated. Here are the mutated foci.Position 121572598 doesn't seem to be mutated. Here are the mutated foci.Position 121578244 doesn't seem to be mutated. Here are the mutated foci.Position 121582383 doesn't seem to be mutated. Here are the mutated foci.Position 121586875 doesn't seem to be mutated. Here are the mutated foci.Position 121587383 doesn't seem to be mutated. Here are the mutated foci.Position 121590114 doesn't seem to be mutated. Here are the mutated foci.Position 121591013 doesn't seem to be mutated. Here are the mutated foci.Position 121591346 doesn't seem to be mutated. Here are the mutated foci.Position 121591637 doesn't seem to be mutated. Here are the mutated foci.Position 121593064 doesn't seem to be mutated. Here are the mutated foci.Position 121594278 doesn't seem to be mutated. Here are the mutated foci.Position 121596524 doesn't seem to be mutated. Here are the mutated foci.Position 121598348 doesn't seem to be mutated. Here are the mutated foci.Position 121600587 doesn't seem to be mutated. Here are the mutated foci.Position 121601475 doesn't seem to be mutated. Here are the mutated foci.Position 121602018 doesn't seem to be mutated. Here are the mutated foci.Position 121603032 doesn't seem to be mutated. Here are the mutated foci.Position 527396 doesn't seem to be mutated. Here are the mutated foci.Position 528487 doesn't seem to be mutated. Here are the mutated foci.Position 528873 doesn't seem to be mutated. Here are the mutated foci.Position 529521 doesn't seem to be mutated. Here are the mutated foci.Position 2878888 doesn't seem to be mutated. Here are the mutated foci.Position 2886403 doesn't seem to be mutated. Here are the mutated foci.Position 2887351 doesn't seem to be mutated. Here are the mutated foci.Position 22618762 doesn't seem to be mutated. Here are the mutated foci.Position 22624285 doesn't seem to be mutated. Here are the mutated foci.Position 22626514 doesn't seem to be mutated. Here are the mutated foci.Position 22626944 doesn't seem to be mutated. Here are the mutated foci.Position 22627369 doesn't seem to be mutated. Here are the mutated foci.Position 32385420 doesn't seem to be mutated. Here are the mutated foci.Position 32395194 doesn't seem to be mutated. Here are the mutated foci.Position 32395761 doesn't seem to be mutated. Here are the mutated foci.Position 32407428 doesn't seem to be mutated. Here are the mutated foci.Position 32415210 doesn't seem to be mutated. Here are the mutated foci.Position 32418399 doesn't seem to be mutated. Here are the mutated foci.Position 32418605 doesn't seem to be mutated. Here are the mutated foci.Position 32419371 doesn't seem to be mutated. Here are the mutated foci.Position 32429618 doesn't seem to be mutated. Here are the mutated foci.Position 44101165 doesn't seem to be mutated. Here are the mutated foci.Position 44102194 doesn't seem to be mutated. Here are the mutated foci.Position 44109689 doesn't seem to be mutated. Here are the mutated foci.Position 44111675 doesn't seem to be mutated. Here are the mutated foci.Position 44122291 doesn't seem to be mutated. Here are the mutated foci.Position 44124739 doesn't seem to be mutated. Here are the mutated foci.Position 44130995 doesn't seem to be mutated. Here are the mutated foci.Position 44131928 doesn't seem to be mutated. Here are the mutated foci.Position 44137962 doesn't seem to be mutated. Here are the mutated foci.Position 44148940 doesn't seem to be mutated. Here are the mutated foci.Position 44149499 doesn't seem to be mutated. Here are the mutated foci.Position 44168998 doesn't seem to be mutated. Here are the mutated foci.Position 44173078 doesn't seem to be mutated. Here are the mutated foci.Position 44177410 doesn't seem to be mutated. Here are the mutated foci.Position 44191765 doesn't seem to be mutated. Here are the mutated foci.Position 44194311 doesn't seem to be mutated. Here are the mutated foci.Position 44202612 doesn't seem to be mutated. Here are the mutated foci.Position 44212395 doesn't seem to be mutated. Here are the mutated foci.Position 44217566 doesn't seem to be mutated. Here are the mutated foci.Position 44220845 doesn't seem to be mutated. Here are the mutated foci.Position 44222783 doesn't seem to be mutated. Here are the mutated foci.Position 44239585 doesn't seem to be mutated. Here are the mutated foci.Position 44241250 doesn't seem to be mutated. Here are the mutated foci.Position 44242679 doesn't seem to be mutated. Here are the mutated foci.Position 44243867 doesn't seem to be mutated. Here are the mutated foci.Position 44245684 doesn't seem to be mutated. Here are the mutated foci.Position 44246474 doesn't seem to be mutated. Here are the mutated foci.Position 47211147 doesn't seem to be mutated. Here are the mutated foci.Position 47212754 doesn't seem to be mutated. Here are the mutated foci.Position 47213759 doesn't seem to be mutated. Here are the mutated foci.Position 47219824 doesn't seem to be mutated. Here are the mutated foci.Position 47220805 doesn't seem to be mutated. Here are the mutated foci.Position 47224230 doesn't seem to be mutated. Here are the mutated foci.Position 47226675 doesn't seem to be mutated. Here are the mutated foci.Position 47227969 doesn't seem to be mutated. Here are the mutated foci.Position 47231083 doesn't seem to be mutated. Here are the mutated foci.Position 47234170 doesn't seem to be mutated. Here are the mutated foci.Position 61432756 doesn't seem to be mutated. Here are the mutated foci.Position 61434880 doesn't seem to be mutated. Here are the mutated foci.Position 61435779 doesn't seem to be mutated. Here are the mutated foci.Position 61440516 doesn't seem to be mutated. Here are the mutated foci.Position 64812732 doesn't seem to be mutated. Here are the mutated foci.Position 67478681 doesn't seem to be mutated. Here are the mutated foci.Position 67482339 doesn't seem to be mutated. Here are the mutated foci.Position 67484276 doesn't seem to be mutated. Here are the mutated foci.Position 67484317 doesn't seem to be mutated. Here are the mutated foci.Position 67489664 doesn't seem to be mutated. Here are the mutated foci.Position 108225768 doesn't seem to be mutated. Here are the mutated foci.Position 108226745 doesn't seem to be mutated. Here are the mutated foci.Position 108231617 doesn't seem to be mutated. Here are the mutated foci.Position 108232357 doesn't seem to be mutated. Here are the mutated foci.Position 108232924 doesn't seem to be mutated. Here are the mutated foci.Position 108235501 doesn't seem to be mutated. Here are the mutated foci.Position 108237468 doesn't seem to be mutated. Here are the mutated foci.Position 108241820 doesn't seem to be mutated. Here are the mutated foci.Position 108242135 doesn't seem to be mutated. Here are the mutated foci.Position 108246150 doesn't seem to be mutated. Here are the mutated foci.Position 108247170 doesn't seem to be mutated. Here are the mutated foci.Position 108255335 doesn't seem to be mutated. Here are the mutated foci.Position 108266675 doesn't seem to be mutated. Here are the mutated foci.Position 108266776 doesn't seem to be mutated. Here are the mutated foci.Position 108266855 doesn't seem to be mutated. Here are the mutated foci.Position 108267487 doesn't seem to be mutated. Here are the mutated foci.Position 108270517 doesn't seem to be mutated. Here are the mutated foci.Position 108271958 doesn't seem to be mutated. Here are the mutated foci.Position 108275378 doesn't seem to be mutated. Here are the mutated foci.Position 108277206 doesn't seem to be mutated. Here are the mutated foci.Position 108278509 doesn't seem to be mutated. Here are the mutated foci.Position 108281334 doesn't seem to be mutated. Here are the mutated foci.Position 108283111 doesn't seem to be mutated. Here are the mutated foci.Position 108284140 doesn't seem to be mutated. Here are the mutated foci.Position 108285938 doesn't seem to be mutated. Here are the mutated foci.Position 108288226 doesn't seem to be mutated. Here are the mutated foci.Position 108289239 doesn't seem to be mutated. Here are the mutated foci.Position 108289761 doesn't seem to be mutated. Here are the mutated foci.Position 108303261 doesn't seem to be mutated. Here are the mutated foci.Position 108309963 doesn't seem to be mutated. Here are the mutated foci.Position 108311098 doesn't seem to be mutated. Here are the mutated foci.Position 108316029 doesn't seem to be mutated. Here are the mutated foci.Position 108316794 doesn't seem to be mutated. Here are the mutated foci.Position 108318878 doesn't seem to be mutated. Here are the mutated foci.Position 108324148 doesn't seem to be mutated. Here are the mutated foci.Position 108324776 doesn't seem to be mutated. Here are the mutated foci.Position 108328286 doesn't seem to be mutated. Here are the mutated foci.Position 108332166 doesn't seem to be mutated. Here are the mutated foci.Position 108332198 doesn't seem to be mutated. Here are the mutated foci.Position 108335030 doesn't seem to be mutated. Here are the mutated foci.Position 108336492 doesn't seem to be mutated. Here are the mutated foci.Position 108348981 doesn't seem to be mutated. Here are the mutated foci.Position 108356365 doesn't seem to be mutated. Here are the mutated foci.Position 108357373 doesn't seem to be mutated. Here are the mutated foci.Position 108362480 doesn't seem to be mutated. Here are the mutated foci.Position 108365751 doesn't seem to be mutated. Here are the mutated foci.Position 108366177 doesn't seem to be mutated. Here are the mutated foci.Position 112091099 doesn't seem to be mutated. Here are the mutated foci.Position 112093407 doesn't seem to be mutated. Here are the mutated foci.Position 112098187 doesn't seem to be mutated. Here are the mutated foci.Position 119093039 doesn't seem to be mutated. Here are the mutated foci.Position 119203939 doesn't seem to be mutated. Here are the mutated foci.Position 119211884 doesn't seem to be mutated. Here are the mutated foci.Position 119221506 doesn't seem to be mutated. Here are the mutated foci.Position 119222843 doesn't seem to be mutated. Here are the mutated foci.Position 119223598 doesn't seem to be mutated. Here are the mutated foci.Position 119224651 doesn't seem to be mutated. Here are the mutated foci.Position 119225092 doesn't seem to be mutated. Here are the mutated foci.Position 119225097 doesn't seem to be mutated. Here are the mutated foci.Position 119235656 doesn't seem to be mutated. Here are the mutated foci.Position 119241426 doesn't seem to be mutated. Here are the mutated foci.Position 119243731 doesn't seem to be mutated. Here are the mutated foci.Position 119254790 doesn't seem to be mutated. Here are the mutated foci.Position 119255152 doesn't seem to be mutated. Here are the mutated foci.Position 119262805 doesn't seem to be mutated. Here are the mutated foci.Position 119274082 doesn't seem to be mutated. Here are the mutated foci.Position 119276680 doesn't seem to be mutated. Here are the mutated foci.Position 119281640 doesn't seem to be mutated. Here are the mutated foci.Position 119285335 doesn't seem to be mutated. Here are the mutated foci.Position 119285396 doesn't seem to be mutated. Here are the mutated foci.Position 119290425 doesn't seem to be mutated. Here are the mutated foci.Position 119291645 doesn't seem to be mutated. Here are the mutated foci.Position 119294748 doesn't seem to be mutated. Here are the mutated foci.Position 119300670 doesn't seem to be mutated. Here are the mutated foci.Position 119304630 doesn't seem to be mutated. Here are the mutated foci.Position 11644886 doesn't seem to be mutated. Here are the mutated foci.Position 11654654 doesn't seem to be mutated. Here are the mutated foci.Position 11656252 doesn't seem to be mutated. Here are the mutated foci.Position 11657640 doesn't seem to be mutated. Here are the mutated foci.Position 11661936 doesn't seem to be mutated. Here are the mutated foci.Position 11667148 doesn't seem to be mutated. Here are the mutated foci.Position 11674030 doesn't seem to be mutated. Here are the mutated foci.Position 11674993 doesn't seem to be mutated. Here are the mutated foci.Position 11676528 doesn't seem to be mutated. Here are the mutated foci.Position 11680639 doesn't seem to be mutated. Here are the mutated foci.Position 11691629 doesn't seem to be mutated. Here are the mutated foci.Position 11694584 doesn't seem to be mutated. Here are the mutated foci.Position 11703607 doesn't seem to be mutated. Here are the mutated foci.Position 11707512 doesn't seem to be mutated. Here are the mutated foci.Position 11710982 doesn't seem to be mutated. Here are the mutated foci.Position 11712196 doesn't seem to be mutated. Here are the mutated foci.Position 11712484 doesn't seem to be mutated. Here are the mutated foci.Position 11712806 doesn't seem to be mutated. Here are the mutated foci.Position 11717952 doesn't seem to be mutated. Here are the mutated foci.Position 11725911 doesn't seem to be mutated. Here are the mutated foci.Position 11730696 doesn't seem to be mutated. Here are the mutated foci.Position 11731996 doesn't seem to be mutated. Here are the mutated foci.Position 11735323 doesn't seem to be mutated. Here are the mutated foci.Position 11735670 doesn't seem to be mutated. Here are the mutated foci.Position 11738021 doesn't seem to be mutated. Here are the mutated foci.Position 11742846 doesn't seem to be mutated. Here are the mutated foci.Position 11743640 doesn't seem to be mutated. Here are the mutated foci.Position 11747572 doesn't seem to be mutated. Here are the mutated foci.Position 11753007 doesn't seem to be mutated. Here are the mutated foci.Position 11761508 doesn't seem to be mutated. Here are the mutated foci.Position 11776964 doesn't seem to be mutated. Here are the mutated foci.Position 11780438 doesn't seem to be mutated. Here are the mutated foci.Position 11783844 doesn't seem to be mutated. Here are the mutated foci.Position 11791862 doesn't seem to be mutated. Here are the mutated foci.Position 11792547 doesn't seem to be mutated. Here are the mutated foci.Position 11792555 doesn't seem to be mutated. Here are the mutated foci.Position 11795176 doesn't seem to be mutated. Here are the mutated foci.Position 11798214 doesn't seem to be mutated. Here are the mutated foci.Position 11799409 doesn't seem to be mutated. Here are the mutated foci.Position 11802914 doesn't seem to be mutated. Here are the mutated foci.Position 11805447 doesn't seem to be mutated. Here are the mutated foci.Position 11806224 doesn't seem to be mutated. Here are the mutated foci.Position 11811797 doesn't seem to be mutated. Here are the mutated foci.Position 11813442 doesn't seem to be mutated. Here are the mutated foci.Position 11816028 doesn't seem to be mutated. Here are the mutated foci.Position 11816394 doesn't seem to be mutated. Here are the mutated foci.Position 11818014 doesn't seem to be mutated. Here are the mutated foci.Position 11818338 doesn't seem to be mutated. Here are the mutated foci.Position 11842060 doesn't seem to be mutated. Here are the mutated foci.Position 11843073 doesn't seem to be mutated. Here are the mutated foci.Position 11849861 doesn't seem to be mutated. Here are the mutated foci.Position 11855162 doesn't seem to be mutated. Here are the mutated foci.Position 11856817 doesn't seem to be mutated. Here are the mutated foci.Position 11859092 doesn't seem to be mutated. Here are the mutated foci.Position 11861119 doesn't seem to be mutated. Here are the mutated foci.Position 11863170 doesn't seem to be mutated. Here are the mutated foci.Position 11865237 doesn't seem to be mutated. Here are the mutated foci.Position 11865316 doesn't seem to be mutated. Here are the mutated foci.Position 11873035 doesn't seem to be mutated. Here are the mutated foci.Position 11878979 doesn't seem to be mutated. Here are the mutated foci.Position 11883536 doesn't seem to be mutated. Here are the mutated foci.Position 11886306 doesn't seem to be mutated. Here are the mutated foci.Position 11895289 doesn't seem to be mutated. Here are the mutated foci.Position 11897067 doesn't seem to be mutated. Here are the mutated foci.Position 12712159 doesn't seem to be mutated. Here are the mutated foci.Position 12713056 doesn't seem to be mutated. Here are the mutated foci.Position 12713619 doesn't seem to be mutated. Here are the mutated foci.Position 12715123 doesn't seem to be mutated. Here are the mutated foci.Position 12720193 doesn't seem to be mutated. Here are the mutated foci.Position 25209622 doesn't seem to be mutated. Here are the mutated foci.Position 25210288 doesn't seem to be mutated. Here are the mutated foci.Position 25211581 doesn't seem to be mutated. Here are the mutated foci.Position 25212582 doesn't seem to be mutated. Here are the mutated foci.Position 25214599 doesn't seem to be mutated. Here are the mutated foci.Position 25226741 doesn't seem to be mutated. Here are the mutated foci.Position 25227037 doesn't seem to be mutated. Here are the mutated foci.Position 25230286 doesn't seem to be mutated. Here are the mutated foci.Position 25232184 doesn't seem to be mutated. Here are the mutated foci.Position 25232984 doesn't seem to be mutated. Here are the mutated foci.Position 25233560 doesn't seem to be mutated. Here are the mutated foci.Position 25236755 doesn't seem to be mutated. Here are the mutated foci.Position 25240242 doesn't seem to be mutated. Here are the mutated foci.Position 25240365 doesn't seem to be mutated. Here are the mutated foci.Position 25241605 doesn't seem to be mutated. Here are the mutated foci.Position 25242166 doesn't seem to be mutated. Here are the mutated foci.Position 25246418 doesn't seem to be mutated. Here are the mutated foci.Position 25247470 doesn't seem to be mutated. Here are the mutated foci.Position 25252012 doesn't seem to be mutated. Here are the mutated foci.Position 25252635 doesn't seem to be mutated. Here are the mutated foci.Position 25254632 doesn't seem to be mutated. Here are the mutated foci.Position 25255200 doesn't seem to be mutated. Here are the mutated foci.Position 57754038 doesn't seem to be mutated. Here are the mutated foci.Position 111401370 doesn't seem to be mutated. Here are the mutated foci.Position 111401724 doesn't seem to be mutated. Here are the mutated foci.Position 111407131 doesn't seem to be mutated. Here are the mutated foci.Position 111407739 doesn't seem to be mutated. Here are the mutated foci.Position 111408103 doesn't seem to be mutated. Here are the mutated foci.Position 111410320 doesn't seem to be mutated. Here are the mutated foci.Position 111413400 doesn't seem to be mutated. Here are the mutated foci.Position 111417600 doesn't seem to be mutated. Here are the mutated foci.Position 111418353 doesn't seem to be mutated. Here are the mutated foci.Position 111418670 doesn't seem to be mutated. Here are the mutated foci.Position 111419324 doesn't seem to be mutated. Here are the mutated foci.Position 111419507 doesn't seem to be mutated. Here are the mutated foci.Position 111419636 doesn't seem to be mutated. Here are the mutated foci.Position 111420860 doesn't seem to be mutated. Here are the mutated foci.Position 111420918 doesn't seem to be mutated. Here are the mutated foci.Position 111422016 doesn't seem to be mutated. Here are the mutated foci.Position 111424083 doesn't seem to be mutated. Here are the mutated foci.Position 111429093 doesn't seem to be mutated. Here are the mutated foci.Position 111429297 doesn't seem to be mutated. Here are the mutated foci.Position 111429903 doesn't seem to be mutated. Here are the mutated foci.Position 111433206 doesn't seem to be mutated. Here are the mutated foci.Position 111443279 doesn't seem to be mutated. Here are the mutated foci.Position 111443327 doesn't seem to be mutated. Here are the mutated foci.Position 111443581 doesn't seem to be mutated. Here are the mutated foci.Position 111448636 doesn't seem to be mutated. Here are the mutated foci.Position 111449516 doesn't seem to be mutated. Here are the mutated foci.Position 112416716 doesn't seem to be mutated. Here are the mutated foci.Position 112417350 doesn't seem to be mutated. Here are the mutated foci.Position 112421925 doesn't seem to be mutated. Here are the mutated foci.Position 112431528 doesn't seem to be mutated. Here are the mutated foci.Position 112432813 doesn't seem to be mutated. Here are the mutated foci.Position 112432963 doesn't seem to be mutated. Here are the mutated foci.Position 112433957 doesn't seem to be mutated. Here are the mutated foci.Position 112435086 doesn't seem to be mutated. Here are the mutated foci.Position 112440393 doesn't seem to be mutated. Here are the mutated foci.Position 112440626 doesn't seem to be mutated. Here are the mutated foci.Position 112444923 doesn't seem to be mutated. Here are the mutated foci.Position 112445984 doesn't seem to be mutated. Here are the mutated foci.Position 112455067 doesn't seem to be mutated. Here are the mutated foci.Position 112456920 doesn't seem to be mutated. Here are the mutated foci.Position 112459035 doesn't seem to be mutated. Here are the mutated foci.Position 112459908 doesn't seem to be mutated. Here are the mutated foci.Position 112464386 doesn't seem to be mutated. Here are the mutated foci.Position 112466542 doesn't seem to be mutated. Here are the mutated foci.Position 112470773 doesn't seem to be mutated. Here are the mutated foci.Position 112473567 doesn't seem to be mutated. Here are the mutated foci.Position 112475344 doesn't seem to be mutated. Here are the mutated foci.Position 112481960 doesn't seem to be mutated. Here are the mutated foci.Position 112482154 doesn't seem to be mutated. Here are the mutated foci.Position 112482743 doesn't seem to be mutated. Here are the mutated foci.Position 112485431 doesn't seem to be mutated. Here are the mutated foci.Position 112485702 doesn't seem to be mutated. Here are the mutated foci.Position 112494122 doesn't seem to be mutated. Here are the mutated foci.Position 112501876 doesn't seem to be mutated. Here are the mutated foci.Position 112504357 doesn't seem to be mutated. Here are the mutated foci.Position 112505961 doesn't seem to be mutated. Here are the mutated foci.Position 112506946 doesn't seem to be mutated. Here are the mutated foci.Position 112509735 doesn't seem to be mutated. Here are the mutated foci.Position 112512990 doesn't seem to be mutated. Here are the mutated foci.Position 112514156 doesn't seem to be mutated. Here are the mutated foci.Position 132623169 doesn't seem to be mutated. Here are the mutated foci.Position 132623357 doesn't seem to be mutated. Here are the mutated foci.Position 132625865 doesn't seem to be mutated. Here are the mutated foci.Position 132625902 doesn't seem to be mutated. Here are the mutated foci.Position 132626332 doesn't seem to be mutated. Here are the mutated foci.Position 132628585 doesn't seem to be mutated. Here are the mutated foci.Position 132628598 doesn't seem to be mutated. Here are the mutated foci.Position 132629531 doesn't seem to be mutated. Here are the mutated foci.Position 132629903 doesn't seem to be mutated. Here are the mutated foci.Position 132630023 doesn't seem to be mutated. Here are the mutated foci.Position 132631117 doesn't seem to be mutated. Here are the mutated foci.Position 132633626 doesn't seem to be mutated. Here are the mutated foci.Position 132634768 doesn't seem to be mutated. Here are the mutated foci.Position 132646124 doesn't seem to be mutated. Here are the mutated foci.Position 132646651 doesn't seem to be mutated. Here are the mutated foci.Position 132648423 doesn't seem to be mutated. Here are the mutated foci.Position 132650444 doesn't seem to be mutated. Here are the mutated foci.Position 132650445 doesn't seem to be mutated. Here are the mutated foci.Position 132653380 doesn't seem to be mutated. Here are the mutated foci.Position 132653928 doesn't seem to be mutated. Here are the mutated foci.Position 132655809 doesn't seem to be mutated. Here are the mutated foci.Position 132656648 doesn't seem to be mutated. Here are the mutated foci.Position 132660287 doesn't seem to be mutated. Here are the mutated foci.Position 132660787 doesn't seem to be mutated. Here are the mutated foci.Position 132663254 doesn't seem to be mutated. Here are the mutated foci.Position 132666726 doesn't seem to be mutated. Here are the mutated foci.Position 132668480 doesn't seem to be mutated. Here are the mutated foci.Position 132670496 doesn't seem to be mutated. Here are the mutated foci.Position 132672231 doesn't seem to be mutated. Here are the mutated foci.Position 132673244 doesn't seem to be mutated. Here are the mutated foci.Position 132674748 doesn't seem to be mutated. Here are the mutated foci.Position 132675403 doesn't seem to be mutated. Here are the mutated foci.Position 132675740 doesn't seem to be mutated. Here are the mutated foci.Position 132681270 doesn't seem to be mutated. Here are the mutated foci.Position 132683584 doesn't seem to be mutated. Here are the mutated foci.Position 20184261 doesn't seem to be mutated. Here are the mutated foci.Position 20187156 doesn't seem to be mutated. Here are the mutated foci.Position 20188189 doesn't seem to be mutated. Here are the mutated foci.Position 20192032 doesn't seem to be mutated. Here are the mutated foci.Position 32316861 doesn't seem to be mutated. Here are the mutated foci.Position 32318953 doesn't seem to be mutated. Here are the mutated foci.Position 32319815 doesn't seem to be mutated. Here are the mutated foci.Position 32323319 doesn't seem to be mutated. Here are the mutated foci.Position 32333439 doesn't seem to be mutated. Here are the mutated foci.Position 32335770 doesn't seem to be mutated. Here are the mutated foci.Position 32341370 doesn't seem to be mutated. Here are the mutated foci.Position 32343550 doesn't seem to be mutated. Here are the mutated foci.Position 32349095 doesn't seem to be mutated. Here are the mutated foci.Position 32349322 doesn't seem to be mutated. Here are the mutated foci.Position 32351121 doesn't seem to be mutated. Here are the mutated foci.Position 32353653 doesn't seem to be mutated. Here are the mutated foci.Position 32355836 doesn't seem to be mutated. Here are the mutated foci.Position 32356216 doesn't seem to be mutated. Here are the mutated foci.Position 32359782 doesn't seem to be mutated. Here are the mutated foci.Position 32365146 doesn't seem to be mutated. Here are the mutated foci.Position 32367384 doesn't seem to be mutated. Here are the mutated foci.Position 32375719 doesn't seem to be mutated. Here are the mutated foci.Position 32375884 doesn't seem to be mutated. Here are the mutated foci.Position 32378444 doesn't seem to be mutated. Here are the mutated foci.Position 32387955 doesn't seem to be mutated. Here are the mutated foci.Position 32391679 doesn't seem to be mutated. Here are the mutated foci.Position 48304873 doesn't seem to be mutated. Here are the mutated foci.Position 48305518 doesn't seem to be mutated. Here are the mutated foci.Position 48305652 doesn't seem to be mutated. Here are the mutated foci.Position 48305762 doesn't seem to be mutated. Here are the mutated foci.Position 48306043 doesn't seem to be mutated. Here are the mutated foci.Position 48306825 doesn't seem to be mutated. Here are the mutated foci.Position 48310089 doesn't seem to be mutated. Here are the mutated foci.Position 48310644 doesn't seem to be mutated. Here are the mutated foci.Position 48314232 doesn't seem to be mutated. Here are the mutated foci.Position 48315044 doesn't seem to be mutated. Here are the mutated foci.Position 48316456 doesn't seem to be mutated. Here are the mutated foci.Position 48316880 doesn't seem to be mutated. Here are the mutated foci.Position 48319394 doesn't seem to be mutated. Here are the mutated foci.Position 48331006 doesn't seem to be mutated. Here are the mutated foci.Position 48332588 doesn't seem to be mutated. Here are the mutated foci.Position 48334765 doesn't seem to be mutated. Here are the mutated foci.Position 48336029 doesn't seem to be mutated. Here are the mutated foci.Position 48338525 doesn't seem to be mutated. Here are the mutated foci.Position 48338822 doesn't seem to be mutated. Here are the mutated foci.Position 48339294 doesn't seem to be mutated. Here are the mutated foci.Position 48339526 doesn't seem to be mutated. Here are the mutated foci.Position 48339762 doesn't seem to be mutated. Here are the mutated foci.Position 48340267 doesn't seem to be mutated. Here are the mutated foci.Position 48341183 doesn't seem to be mutated. Here are the mutated foci.Position 48343689 doesn't seem to be mutated. Here are the mutated foci.Position 48346956 doesn't seem to be mutated. Here are the mutated foci.Position 48347416 doesn't seem to be mutated. Here are the mutated foci.Position 48349246 doesn't seem to be mutated. Here are the mutated foci.Position 48350978 doesn't seem to be mutated. Here are the mutated foci.Position 48352797 doesn't seem to be mutated. Here are the mutated foci.Position 48354048 doesn't seem to be mutated. Here are the mutated foci.Position 48354465 doesn't seem to be mutated. Here are the mutated foci.Position 48355780 doesn't seem to be mutated. Here are the mutated foci.Position 48360911 doesn't seem to be mutated. Here are the mutated foci.Position 48361527 doesn't seem to be mutated. Here are the mutated foci.Position 48362626 doesn't seem to be mutated. Here are the mutated foci.Position 48364567 doesn't seem to be mutated. Here are the mutated foci.Position 48366556 doesn't seem to be mutated. Here are the mutated foci.Position 48369006 doesn't seem to be mutated. Here are the mutated foci.Position 48370533 doesn't seem to be mutated. Here are the mutated foci.Position 48373625 doesn't seem to be mutated. Here are the mutated foci.Position 48376934 doesn't seem to be mutated. Here are the mutated foci.Position 48379406 doesn't seem to be mutated. Here are the mutated foci.Position 48380147 doesn't seem to be mutated. Here are the mutated foci.Position 48380210 doesn't seem to be mutated. Here are the mutated foci.Position 48392408 doesn't seem to be mutated. Here are the mutated foci.Position 48401936 doesn't seem to be mutated. Here are the mutated foci.Position 48405549 doesn't seem to be mutated. Here are the mutated foci.Position 48416282 doesn't seem to be mutated. Here are the mutated foci.Position 48418556 doesn't seem to be mutated. Here are the mutated foci.Position 48420613 doesn't seem to be mutated. Here are the mutated foci.Position 48425693 doesn't seem to be mutated. Here are the mutated foci.Position 48439049 doesn't seem to be mutated. Here are the mutated foci.Position 48442345 doesn't seem to be mutated. Here are the mutated foci.Position 48443179 doesn't seem to be mutated. Here are the mutated foci.Position 48445458 doesn't seem to be mutated. Here are the mutated foci.Position 48453870 doesn't seem to be mutated. Here are the mutated foci.Position 48461562 doesn't seem to be mutated. Here are the mutated foci.Position 48461659 doesn't seem to be mutated. Here are the mutated foci.Position 48462570 doesn't seem to be mutated. Here are the mutated foci.Position 48463690 doesn't seem to be mutated. Here are the mutated foci.Position 48464568 doesn't seem to be mutated. Here are the mutated foci.Position 48476319 doesn't seem to be mutated. Here are the mutated foci.Position 48482687 doesn't seem to be mutated. Here are the mutated foci.Position 48486630 doesn't seem to be mutated. Here are the mutated foci.Position 48540040 doesn't seem to be mutated. Here are the mutated foci.Position 48542067 doesn't seem to be mutated. Here are the mutated foci.Position 48548009 doesn't seem to be mutated. Here are the mutated foci.Position 48552843 doesn't seem to be mutated. Here are the mutated foci.Position 48555250 doesn't seem to be mutated. Here are the mutated foci.Position 48556593 doesn't seem to be mutated. Here are the mutated foci.Position 48556632 doesn't seem to be mutated. Here are the mutated foci.Position 48559131 doesn't seem to be mutated. Here are the mutated foci.Position 48560964 doesn't seem to be mutated. Here are the mutated foci.Position 48562519 doesn't seem to be mutated. Here are the mutated foci.Position 48562846 doesn't seem to be mutated. Here are the mutated foci.Position 48584353 doesn't seem to be mutated. Here are the mutated foci.Position 48584768 doesn't seem to be mutated. Here are the mutated foci.Position 48587195 doesn't seem to be mutated. Here are the mutated foci.Position 48588514 doesn't seem to be mutated. Here are the mutated foci.Position 48588538 doesn't seem to be mutated. Here are the mutated foci.Position 48588783 doesn't seem to be mutated. Here are the mutated foci.Position 48588880 doesn't seem to be mutated. Here are the mutated foci.Position 48590425 doesn't seem to be mutated. Here are the mutated foci.Position 48590641 doesn't seem to be mutated. Here are the mutated foci.Position 77892678 doesn't seem to be mutated. Here are the mutated foci.Position 77897197 doesn't seem to be mutated. Here are the mutated foci.Position 77897591 doesn't seem to be mutated. Here are the mutated foci.Position 77898859 doesn't seem to be mutated. Here are the mutated foci.Position 77905118 doesn't seem to be mutated. Here are the mutated foci.Position 77909726 doesn't seem to be mutated. Here are the mutated foci.Position 77911448 doesn't seem to be mutated. Here are the mutated foci.Position 77918082 doesn't seem to be mutated. Here are the mutated foci.Position 77918341 doesn't seem to be mutated. Here are the mutated foci.Position 77920804 doesn't seem to be mutated. Here are the mutated foci.Position 77921791 doesn't seem to be mutated. Here are the mutated foci.Position 102843185 doesn't seem to be mutated. Here are the mutated foci.Position 102850060 doesn't seem to be mutated. Here are the mutated foci.Position 102855073 doesn't seem to be mutated. Here are the mutated foci.Position 102866192 doesn't seem to be mutated. Here are the mutated foci.Position 102868751 doesn't seem to be mutated. Here are the mutated foci.Position 102870927 doesn't seem to be mutated. Here are the mutated foci.Position 102873421 doesn't seem to be mutated. Here are the mutated foci.Position 102874667 doesn't seem to be mutated. Here are the mutated foci.Position 102880631 doesn't seem to be mutated. Here are the mutated foci.Position 23113068 doesn't seem to be mutated. Here are the mutated foci.Position 23115607 doesn't seem to be mutated. Here are the mutated foci.Position 23120057 doesn't seem to be mutated. Here are the mutated foci.Position 24241651 doesn't seem to be mutated. Here are the mutated foci.Position 24243558 doesn't seem to be mutated. Here are the mutated foci.Position 36516582 doesn't seem to be mutated. Here are the mutated foci.Position 36518097 doesn't seem to be mutated. Here are the mutated foci.Position 36519430 doesn't seem to be mutated. Here are the mutated foci.Position 36523525 doesn't seem to be mutated. Here are the mutated foci.Position 36524326 doesn't seem to be mutated. Here are the mutated foci.Position 45139845 doesn't seem to be mutated. Here are the mutated foci.Position 45139989 doesn't seem to be mutated. Here are the mutated foci.Position 45140000 doesn't seem to be mutated. Here are the mutated foci.Position 45143171 doesn't seem to be mutated. Here are the mutated foci.Position 45146072 doesn't seem to be mutated. Here are the mutated foci.Position 45147316 doesn't seem to be mutated. Here are the mutated foci.Position 45152656 doesn't seem to be mutated. Here are the mutated foci.Position 45156481 doesn't seem to be mutated. Here are the mutated foci.Position 45158593 doesn't seem to be mutated. Here are the mutated foci.Position 45160287 doesn't seem to be mutated. Here are the mutated foci.Position 45160699 doesn't seem to be mutated. Here are the mutated foci.Position 45162864 doesn't seem to be mutated. Here are the mutated foci.Position 45166841 doesn't seem to be mutated. Here are the mutated foci.Position 45174548 doesn't seem to be mutated. Here are the mutated foci.Position 45176264 doesn't seem to be mutated. Here are the mutated foci.Position 45176751 doesn't seem to be mutated. Here are the mutated foci.Position 45181298 doesn't seem to be mutated. Here are the mutated foci.Position 45184387 doesn't seem to be mutated. Here are the mutated foci.Position 45187339 doesn't seem to be mutated. Here are the mutated foci.Position 45195582 doesn't seem to be mutated. Here are the mutated foci.Position 45195963 doesn't seem to be mutated. Here are the mutated foci.Position 45201536 doesn't seem to be mutated. Here are the mutated foci.Position 45203172 doesn't seem to be mutated. Here are the mutated foci.Position 50117397 doesn't seem to be mutated. Here are the mutated foci.Position 50121217 doesn't seem to be mutated. Here are the mutated foci.Position 50127648 doesn't seem to be mutated. Here are the mutated foci.Position 50128029 doesn't seem to be mutated. Here are the mutated foci.Position 50129876 doesn't seem to be mutated. Here are the mutated foci.Position 50130509 doesn't seem to be mutated. Here are the mutated foci.Position 50131292 doesn't seem to be mutated. Here are the mutated foci.Position 50132381 doesn't seem to be mutated. Here are the mutated foci.Position 50132692 doesn't seem to be mutated. Here are the mutated foci.Position 50133235 doesn't seem to be mutated. Here are the mutated foci.Position 50138088 doesn't seem to be mutated. Here are the mutated foci.Position 50138323 doesn't seem to be mutated. Here are the mutated foci.Position 50138408 doesn't seem to be mutated. Here are the mutated foci.Position 50140705 doesn't seem to be mutated. Here are the mutated foci.Position 50147066 doesn't seem to be mutated. Here are the mutated foci.Position 50148379 doesn't seem to be mutated. Here are the mutated foci.Position 50159678 doesn't seem to be mutated. Here are the mutated foci.Position 50161031 doesn't seem to be mutated. Here are the mutated foci.Position 50165465 doesn't seem to be mutated. Here are the mutated foci.Position 50172327 doesn't seem to be mutated. Here are the mutated foci.Position 50177180 doesn't seem to be mutated. Here are the mutated foci.Position 50178470 doesn't seem to be mutated. Here are the mutated foci.Position 50181517 doesn't seem to be mutated. Here are the mutated foci.Position 50192512 doesn't seem to be mutated. Here are the mutated foci.Position 50193273 doesn't seem to be mutated. Here are the mutated foci.Position 50193521 doesn't seem to be mutated. Here are the mutated foci.Position 50200720 doesn't seem to be mutated. Here are the mutated foci.Position 50204742 doesn't seem to be mutated. Here are the mutated foci.Position 50209977 doesn't seem to be mutated. Here are the mutated foci.Position 50211550 doesn't seem to be mutated. Here are the mutated foci.Position 50218910 doesn't seem to be mutated. Here are the mutated foci.Position 50222597 doesn't seem to be mutated. Here are the mutated foci.Position 50233782 doesn't seem to be mutated. Here are the mutated foci.Position 65067666 doesn't seem to be mutated. Here are the mutated foci.Position 65071120 doesn't seem to be mutated. Here are the mutated foci.Position 65078359 doesn't seem to be mutated. Here are the mutated foci.Position 65080181 doesn't seem to be mutated. Here are the mutated foci.Position 65090679 doesn't seem to be mutated. Here are the mutated foci.Position 65093502 doesn't seem to be mutated. Here are the mutated foci.Position 65100381 doesn't seem to be mutated. Here are the mutated foci.Position 65105929 doesn't seem to be mutated. Here are the mutated foci.Position 65107053 doesn't seem to be mutated. Here are the mutated foci.Position 94371907 doesn't seem to be mutated. Here are the mutated foci.Position 94377703 doesn't seem to be mutated. Here are the mutated foci.Position 94383814 doesn't seem to be mutated. Here are the mutated foci.Position 94384046 doesn't seem to be mutated. Here are the mutated foci.Position 94390518 doesn't seem to be mutated. Here are the mutated foci.Position 94394897 doesn't seem to be mutated. Here are the mutated foci.Position 95081248 doesn't seem to be mutated. Here are the mutated foci.Position 95085429 doesn't seem to be mutated. Here are the mutated foci.Position 95088210 doesn't seem to be mutated. Here are the mutated foci.Position 95104363 doesn't seem to be mutated. Here are the mutated foci.Position 95108289 doesn't seem to be mutated. Here are the mutated foci.Position 95111802 doesn't seem to be mutated. Here are the mutated foci.Position 95112737 doesn't seem to be mutated. Here are the mutated foci.Position 95119674 doesn't seem to be mutated. Here are the mutated foci.Position 95120666 doesn't seem to be mutated. Here are the mutated foci.Position 95123305 doesn't seem to be mutated. Here are the mutated foci.Position 95124527 doesn't seem to be mutated. Here are the mutated foci.Position 95127597 doesn't seem to be mutated. Here are the mutated foci.Position 95135481 doesn't seem to be mutated. Here are the mutated foci.Position 95138201 doesn't seem to be mutated. Here are the mutated foci.Position 95143336 doesn't seem to be mutated. Here are the mutated foci.Position 95160423 doesn't seem to be mutated. Here are the mutated foci.Position 103698079 doesn't seem to be mutated. Here are the mutated foci.Position 103698648 doesn't seem to be mutated. Here are the mutated foci.Position 103710770 doesn't seem to be mutated. Here are the mutated foci.Position 104767984 doesn't seem to be mutated. Here are the mutated foci.Position 104770287 doesn't seem to be mutated. Here are the mutated foci.Position 104772204 doesn't seem to be mutated. Here are the mutated foci.Position 104776101 doesn't seem to be mutated. Here are the mutated foci.Position 104776187 doesn't seem to be mutated. Here are the mutated foci.Position 104777449 doesn't seem to be mutated. Here are the mutated foci.Position 104780730 doesn't seem to be mutated. Here are the mutated foci.Position 104784717 doesn't seem to be mutated. Here are the mutated foci.Position 104785804 doesn't seem to be mutated. Here are the mutated foci.Position 104786412 doesn't seem to be mutated. Here are the mutated foci.Position 104793016 doesn't seem to be mutated. Here are the mutated foci.Position 104793915 doesn't seem to be mutated. Here are the mutated foci.Position 32714611 doesn't seem to be mutated. Here are the mutated foci.Position 32714932 doesn't seem to be mutated. Here are the mutated foci.Position 32716736 doesn't seem to be mutated. Here are the mutated foci.Position 32718840 doesn't seem to be mutated. Here are the mutated foci.Position 32724287 doesn't seem to be mutated. Here are the mutated foci.Position 32729006 doesn't seem to be mutated. Here are the mutated foci.Position 32729306 doesn't seem to be mutated. Here are the mutated foci.Position 32737885 doesn't seem to be mutated. Here are the mutated foci.Position 32738772 doesn't seem to be mutated. Here are the mutated foci.Position 32749858 doesn't seem to be mutated. Here are the mutated foci.Position 34338539 doesn't seem to be mutated. Here are the mutated foci.Position 34340175 doesn't seem to be mutated. Here are the mutated foci.Position 38251754 doesn't seem to be mutated. Here are the mutated foci.Position 38259374 doesn't seem to be mutated. Here are the mutated foci.Position 38262935 doesn't seem to be mutated. Here are the mutated foci.Position 38264106 doesn't seem to be mutated. Here are the mutated foci.Position 38270569 doesn't seem to be mutated. Here are the mutated foci.Position 38274131 doesn't seem to be mutated. Here are the mutated foci.Position 38275894 doesn't seem to be mutated. Here are the mutated foci.Position 38276923 doesn't seem to be mutated. Here are the mutated foci.Position 38277955 doesn't seem to be mutated. Here are the mutated foci.Position 38280667 doesn't seem to be mutated. Here are the mutated foci.Position 38288288 doesn't seem to be mutated. Here are the mutated foci.Position 38289979 doesn't seem to be mutated. Here are the mutated foci.Position 38304535 doesn't seem to be mutated. Here are the mutated foci.Position 38314036 doesn't seem to be mutated. Here are the mutated foci.Position 38325450 doesn't seem to be mutated. Here are the mutated foci.Position 38326208 doesn't seem to be mutated. Here are the mutated foci.Position 38326599 doesn't seem to be mutated. Here are the mutated foci.Position 38333904 doesn't seem to be mutated. Here are the mutated foci.Position 38340541 doesn't seem to be mutated. Here are the mutated foci.Position 38341415 doesn't seem to be mutated. Here are the mutated foci.Position 38350673 doesn't seem to be mutated. Here are the mutated foci.Position 38353038 doesn't seem to be mutated. Here are the mutated foci.Position 38353895 doesn't seem to be mutated. Here are the mutated foci.Position 38355401 doesn't seem to be mutated. Here are the mutated foci.Position 38355928 doesn't seem to be mutated. Here are the mutated foci.Position 38357112 doesn't seem to be mutated. Here are the mutated foci.Position 40180415 doesn't seem to be mutated. Here are the mutated foci.Position 40190160 doesn't seem to be mutated. Here are the mutated foci.Position 40193098 doesn't seem to be mutated. Here are the mutated foci.Position 40194001 doesn't seem to be mutated. Here are the mutated foci.Position 40194643 doesn't seem to be mutated. Here are the mutated foci.Position 40201829 doesn't seem to be mutated. Here are the mutated foci.Position 40207378 doesn't seem to be mutated. Here are the mutated foci.Position 40213680 doesn't seem to be mutated. Here are the mutated foci.Position 40216536 doesn't seem to be mutated. Here are the mutated foci.Position 40219061 doesn't seem to be mutated. Here are the mutated foci.Position 40690484 doesn't seem to be mutated. Here are the mutated foci.Position 40693550 doesn't seem to be mutated. Here are the mutated foci.Position 40693982 doesn't seem to be mutated. Here are the mutated foci.Position 40699435 doesn't seem to be mutated. Here are the mutated foci.Position 40702118 doesn't seem to be mutated. Here are the mutated foci.Position 40703211 doesn't seem to be mutated. Here are the mutated foci.Position 40711360 doesn't seem to be mutated. Here are the mutated foci.Position 40713135 doesn't seem to be mutated. Here are the mutated foci.Position 40726001 doesn't seem to be mutated. Here are the mutated foci.Position 40728455 doesn't seem to be mutated. Here are the mutated foci.Position 40731465 doesn't seem to be mutated. Here are the mutated foci.Position 40732063 doesn't seem to be mutated. Here are the mutated foci.Position 66382941 doesn't seem to be mutated. Here are the mutated foci.Position 66383412 doesn't seem to be mutated. Here are the mutated foci.Position 66384289 doesn't seem to be mutated. Here are the mutated foci.Position 66392510 doesn't seem to be mutated. Here are the mutated foci.Position 66392640 doesn't seem to be mutated. Here are the mutated foci.Position 66396172 doesn't seem to be mutated. Here are the mutated foci.Position 66396388 doesn't seem to be mutated. Here are the mutated foci.Position 66399898 doesn't seem to be mutated. Here are the mutated foci.Position 66401722 doesn't seem to be mutated. Here are the mutated foci.Position 66404009 doesn't seem to be mutated. Here are the mutated foci.Position 66406673 doesn't seem to be mutated. Here are the mutated foci.Position 66407145 doesn't seem to be mutated. Here are the mutated foci.Position 66434723 doesn't seem to be mutated. Here are the mutated foci.Position 66438371 doesn't seem to be mutated. Here are the mutated foci.Position 66443173 doesn't seem to be mutated. Here are the mutated foci.Position 66454612 doesn't seem to be mutated. Here are the mutated foci.Position 66458194 doesn't seem to be mutated. Here are the mutated foci.Position 66459446 doesn't seem to be mutated. Here are the mutated foci.Position 66475544 doesn't seem to be mutated. Here are the mutated foci.Position 66482677 doesn't seem to be mutated. Here are the mutated foci.Position 66484139 doesn't seem to be mutated. Here are the mutated foci.Position 66485190 doesn't seem to be mutated. Here are the mutated foci.Position 80151552 doesn't seem to be mutated. Here are the mutated foci.Position 80152148 doesn't seem to be mutated. Here are the mutated foci.Position 80167192 doesn't seem to be mutated. Here are the mutated foci.Position 80167634 doesn't seem to be mutated. Here are the mutated foci.Position 80169518 doesn't seem to be mutated. Here are the mutated foci.Position 80169620 doesn't seem to be mutated. Here are the mutated foci.Position 80174550 doesn't seem to be mutated. Here are the mutated foci.Position 80175530 doesn't seem to be mutated. Here are the mutated foci.Position 80175709 doesn't seem to be mutated. Here are the mutated foci.Position 80183718 doesn't seem to be mutated. Here are the mutated foci.Position 80184574 doesn't seem to be mutated. Here are the mutated foci.Position 82533036 doesn't seem to be mutated. Here are the mutated foci.Position 82537081 doesn't seem to be mutated. Here are the mutated foci.Position 82537238 doesn't seem to be mutated. Here are the mutated foci.Position 89239363 doesn't seem to be mutated. Here are the mutated foci.Position 89244803 doesn't seem to be mutated. Here are the mutated foci.Position 89245177 doesn't seem to be mutated. Here are the mutated foci.Position 89245732 doesn't seem to be mutated. Here are the mutated foci.Position 89261140 doesn't seem to be mutated. Here are the mutated foci.Position 89261545 doesn't seem to be mutated. Here are the mutated foci.Position 89272600 doesn't seem to be mutated. Here are the mutated foci.Position 89274778 doesn't seem to be mutated. Here are the mutated foci.Position 89286043 doesn't seem to be mutated. Here are the mutated foci.Position 89288043 doesn't seem to be mutated. Here are the mutated foci.Position 89289608 doesn't seem to be mutated. Here are the mutated foci.Position 89295774 doesn't seem to be mutated. Here are the mutated foci.Position 89296415 doesn't seem to be mutated. Here are the mutated foci.Position 89298088 doesn't seem to be mutated. Here are the mutated foci.Position 89308565 doesn't seem to be mutated. Here are the mutated foci.Position 89314197 doesn't seem to be mutated. Here are the mutated foci.Position 89314309 doesn't seem to be mutated. Here are the mutated foci.Position 90712699 doesn't seem to be mutated. Here are the mutated foci.Position 90715171 doesn't seem to be mutated. Here are the mutated foci.Position 90720003 doesn't seem to be mutated. Here are the mutated foci.Position 90722581 doesn't seem to be mutated. Here are the mutated foci.Position 90725204 doesn't seem to be mutated. Here are the mutated foci.Position 90725668 doesn't seem to be mutated. Here are the mutated foci.Position 90728661 doesn't seem to be mutated. Here are the mutated foci.Position 90731169 doesn't seem to be mutated. Here are the mutated foci.Position 90732953 doesn't seem to be mutated. Here are the mutated foci.Position 90734749 doesn't seem to be mutated. Here are the mutated foci.Position 90736273 doesn't seem to be mutated. Here are the mutated foci.Position 90741240 doesn't seem to be mutated. Here are the mutated foci.Position 90747965 doesn't seem to be mutated. Here are the mutated foci.Position 90748681 doesn't seem to be mutated. Here are the mutated foci.Position 90753354 doesn't seem to be mutated. Here are the mutated foci.Position 90754430 doesn't seem to be mutated. Here are the mutated foci.Position 90757624 doesn't seem to be mutated. Here are the mutated foci.Position 90761601 doesn't seem to be mutated. Here are the mutated foci.Position 90763494 doesn't seem to be mutated. Here are the mutated foci.Position 90763786 doesn't seem to be mutated. Here are the mutated foci.Position 90766291 doesn't seem to be mutated. Here are the mutated foci.Position 90766419 doesn't seem to be mutated. Here are the mutated foci.Position 90766778 doesn't seem to be mutated. Here are the mutated foci.Position 90769675 doesn't seem to be mutated. Here are the mutated foci.Position 90773292 doesn't seem to be mutated. Here are the mutated foci.Position 90774599 doesn't seem to be mutated. Here are the mutated foci.Position 90776684 doesn't seem to be mutated. Here are the mutated foci.Position 90779397 doesn't seem to be mutated. Here are the mutated foci.Position 90786182 doesn't seem to be mutated. Here are the mutated foci.Position 90788481 doesn't seem to be mutated. Here are the mutated foci.Position 90788793 doesn't seem to be mutated. Here are the mutated foci.Position 90793035 doesn't seem to be mutated. Here are the mutated foci.Position 90795467 doesn't seem to be mutated. Here are the mutated foci.Position 90795796 doesn't seem to be mutated. Here are the mutated foci.Position 90800680 doesn't seem to be mutated. Here are the mutated foci.Position 90807548 doesn't seem to be mutated. Here are the mutated foci.Position 90809308 doesn't seem to be mutated. Here are the mutated foci.Position 90810920 doesn't seem to be mutated. Here are the mutated foci.Position 90819540 doesn't seem to be mutated. Here are the mutated foci.Position 90820778 doesn't seem to be mutated. Here are the mutated foci.Position 2044965 doesn't seem to be mutated. Here are the mutated foci.Position 2049392 doesn't seem to be mutated. Here are the mutated foci.Position 2049719 doesn't seem to be mutated. Here are the mutated foci.Position 2050042 doesn't seem to be mutated. Here are the mutated foci.Position 2050641 doesn't seem to be mutated. Here are the mutated foci.Position 2053354 doesn't seem to be mutated. Here are the mutated foci.Position 2053759 doesn't seem to be mutated. Here are the mutated foci.Position 2056550 doesn't seem to be mutated. Here are the mutated foci.Position 2057382 doesn't seem to be mutated. Here are the mutated foci.Position 2057703 doesn't seem to be mutated. Here are the mutated foci.Position 2058554 doesn't seem to be mutated. Here are the mutated foci.Position 2058880 doesn't seem to be mutated. Here are the mutated foci.Position 2060236 doesn't seem to be mutated. Here are the mutated foci.Position 2062776 doesn't seem to be mutated. Here are the mutated foci.Position 2064178 doesn't seem to be mutated. Here are the mutated foci.Position 2065286 doesn't seem to be mutated. Here are the mutated foci.Position 2065391 doesn't seem to be mutated. Here are the mutated foci.Position 2069325 doesn't seem to be mutated. Here are the mutated foci.Position 2074813 doesn't seem to be mutated. Here are the mutated foci.Position 2076102 doesn't seem to be mutated. Here are the mutated foci.Position 2077693 doesn't seem to be mutated. Here are the mutated foci.Position 2077707 doesn't seem to be mutated. Here are the mutated foci.Position 2079788 doesn't seem to be mutated. Here are the mutated foci.Position 2080169 doesn't seem to be mutated. Here are the mutated foci.Position 2080818 doesn't seem to be mutated. Here are the mutated foci.Position 2085195 doesn't seem to be mutated. Here are the mutated foci.Position 2085660 doesn't seem to be mutated. Here are the mutated foci.Position 2086618 doesn't seem to be mutated. Here are the mutated foci.Position 2086746 doesn't seem to be mutated. Here are the mutated foci.Position 3579146 doesn't seem to be mutated. Here are the mutated foci.Position 3580249 doesn't seem to be mutated. Here are the mutated foci.Position 3582291 doesn't seem to be mutated. Here are the mutated foci.Position 3582350 doesn't seem to be mutated. Here are the mutated foci.Position 3583298 doesn't seem to be mutated. Here are the mutated foci.Position 3583381 doesn't seem to be mutated. Here are the mutated foci.Position 3583741 doesn't seem to be mutated. Here are the mutated foci.Position 3584422 doesn't seem to be mutated. Here are the mutated foci.Position 3585564 doesn't seem to be mutated. Here are the mutated foci.Position 3587262 doesn't seem to be mutated. Here are the mutated foci.Position 3587351 doesn't seem to be mutated. Here are the mutated foci.Position 3587786 doesn't seem to be mutated. Here are the mutated foci.Position 3587867 doesn't seem to be mutated. Here are the mutated foci.Position 3589047 doesn't seem to be mutated. Here are the mutated foci.Position 3589505 doesn't seem to be mutated. Here are the mutated foci.Position 3591358 doesn't seem to be mutated. Here are the mutated foci.Position 3593484 doesn't seem to be mutated. Here are the mutated foci.Position 3594345 doesn't seem to be mutated. Here are the mutated foci.Position 3595414 doesn't seem to be mutated. Here are the mutated foci.Position 3595524 doesn't seem to be mutated. Here are the mutated foci.Position 3595626 doesn't seem to be mutated. Here are the mutated foci.Position 3597043 doesn't seem to be mutated. Here are the mutated foci.Position 3597388 doesn't seem to be mutated. Here are the mutated foci.Position 3598047 doesn't seem to be mutated. Here are the mutated foci.Position 3598103 doesn't seem to be mutated. Here are the mutated foci.Position 3599195 doesn't seem to be mutated. Here are the mutated foci.Position 3604776 doesn't seem to be mutated. Here are the mutated foci.Position 3608267 doesn't seem to be mutated. Here are the mutated foci.Position 3610369 doesn't seem to be mutated. Here are the mutated foci.Position 3723962 doesn't seem to be mutated. Here are the mutated foci.Position 3725553 doesn't seem to be mutated. Here are the mutated foci.Position 3727745 doesn't seem to be mutated. Here are the mutated foci.Position 3729380 doesn't seem to be mutated. Here are the mutated foci.Position 3729954 doesn't seem to be mutated. Here are the mutated foci.Position 3732158 doesn't seem to be mutated. Here are the mutated foci.Position 3733222 doesn't seem to be mutated. Here are the mutated foci.Position 3734722 doesn't seem to be mutated. Here are the mutated foci.Position 3734904 doesn't seem to be mutated. Here are the mutated foci.Position 3735122 doesn't seem to be mutated. Here are the mutated foci.Position 3735285 doesn't seem to be mutated. Here are the mutated foci.Position 3735544 doesn't seem to be mutated. Here are the mutated foci.Position 3736008 doesn't seem to be mutated. Here are the mutated foci.Position 3738039 doesn't seem to be mutated. Here are the mutated foci.Position 3742821 doesn't seem to be mutated. Here are the mutated foci.Position 3743944 doesn't seem to be mutated. Here are the mutated foci.Position 3744952 doesn't seem to be mutated. Here are the mutated foci.Position 3746378 doesn't seem to be mutated. Here are the mutated foci.Position 3747714 doesn't seem to be mutated. Here are the mutated foci.Position 3748096 doesn't seem to be mutated. Here are the mutated foci.Position 3748282 doesn't seem to be mutated. Here are the mutated foci.Position 3751404 doesn't seem to be mutated. Here are the mutated foci.Position 3752731 doesn't seem to be mutated. Here are the mutated foci.Position 3760560 doesn't seem to be mutated. Here are the mutated foci.Position 3760611 doesn't seem to be mutated. Here are the mutated foci.Position 3763989 doesn't seem to be mutated. Here are the mutated foci.Position 3765347 doesn't seem to be mutated. Here are the mutated foci.Position 3766416 doesn't seem to be mutated. Here are the mutated foci.Position 3766670 doesn't seem to be mutated. Here are the mutated foci.Position 3767764 doesn't seem to be mutated. Here are the mutated foci.Position 3769135 doesn't seem to be mutated. Here are the mutated foci.Position 3769140 doesn't seem to be mutated. Here are the mutated foci.Position 3769259 doesn't seem to be mutated. Here are the mutated foci.Position 3771955 doesn't seem to be mutated. Here are the mutated foci.Position 3774100 doesn't seem to be mutated. Here are the mutated foci.Position 3777544 doesn't seem to be mutated. Here are the mutated foci.Position 3777806 doesn't seem to be mutated. Here are the mutated foci.Position 3777952 doesn't seem to be mutated. Here are the mutated foci.Position 3783807 doesn't seem to be mutated. Here are the mutated foci.Position 3787630 doesn't seem to be mutated. Here are the mutated foci.Position 3794477 doesn't seem to be mutated. Here are the mutated foci.Position 3796489 doesn't seem to be mutated. Here are the mutated foci.Position 3800746 doesn't seem to be mutated. Here are the mutated foci.Position 3801607 doesn't seem to be mutated. Here are the mutated foci.Position 3813008 doesn't seem to be mutated. Here are the mutated foci.Position 3817158 doesn't seem to be mutated. Here are the mutated foci.Position 3828087 doesn't seem to be mutated. Here are the mutated foci.Position 3838230 doesn't seem to be mutated. Here are the mutated foci.Position 3839228 doesn't seem to be mutated. Here are the mutated foci.Position 3843491 doesn't seem to be mutated. Here are the mutated foci.Position 3844225 doesn't seem to be mutated. Here are the mutated foci.Position 3851554 doesn't seem to be mutated. Here are the mutated foci.Position 3853757 doesn't seem to be mutated. Here are the mutated foci.Position 3856107 doesn't seem to be mutated. Here are the mutated foci.Position 3863317 doesn't seem to be mutated. Here are the mutated foci.Position 3864860 doesn't seem to be mutated. Here are the mutated foci.Position 3865357 doesn't seem to be mutated. Here are the mutated foci.Position 3874378 doesn't seem to be mutated. Here are the mutated foci.Position 3882168 doesn't seem to be mutated. Here are the mutated foci.Position 13917028 doesn't seem to be mutated. Here are the mutated foci.Position 13917973 doesn't seem to be mutated. Here are the mutated foci.Position 13919304 doesn't seem to be mutated. Here are the mutated foci.Position 13921618 doesn't seem to be mutated. Here are the mutated foci.Position 13925421 doesn't seem to be mutated. Here are the mutated foci.Position 13931377 doesn't seem to be mutated. Here are the mutated foci.Position 13936246 doesn't seem to be mutated. Here are the mutated foci.Position 13940255 doesn't seem to be mutated. Here are the mutated foci.Position 13942536 doesn't seem to be mutated. Here are the mutated foci.Position 13943283 doesn't seem to be mutated. Here are the mutated foci.Position 13950192 doesn't seem to be mutated. Here are the mutated foci.Position 13952952 doesn't seem to be mutated. Here are the mutated foci.Position 13953154 doesn't seem to be mutated. Here are the mutated foci.Position 13956970 doesn't seem to be mutated. Here are the mutated foci.Position 23601782 doesn't seem to be mutated. Here are the mutated foci.Position 23602074 doesn't seem to be mutated. Here are the mutated foci.Position 23602310 doesn't seem to be mutated. Here are the mutated foci.Position 23602555 doesn't seem to be mutated. Here are the mutated foci.Position 23602809 doesn't seem to be mutated. Here are the mutated foci.Position 23605985 doesn't seem to be mutated. Here are the mutated foci.Position 23609976 doesn't seem to be mutated. Here are the mutated foci.Position 23611737 doesn't seem to be mutated. Here are the mutated foci.Position 23612764 doesn't seem to be mutated. Here are the mutated foci.Position 23618761 doesn't seem to be mutated. Here are the mutated foci.Position 23622588 doesn't seem to be mutated. Here are the mutated foci.Position 23630760 doesn't seem to be mutated. Here are the mutated foci.Position 23638204 doesn't seem to be mutated. Here are the mutated foci.Position 23638873 doesn't seem to be mutated. Here are the mutated foci.Position 23639216 doesn't seem to be mutated. Here are the mutated foci.Position 23639449 doesn't seem to be mutated. Here are the mutated foci.Position 50738803 doesn't seem to be mutated. Here are the mutated foci.Position 50752188 doesn't seem to be mutated. Here are the mutated foci.Position 50757694 doesn't seem to be mutated. Here are the mutated foci.Position 50764223 doesn't seem to be mutated. Here are the mutated foci.Position 50768124 doesn't seem to be mutated. Here are the mutated foci.Position 50769560 doesn't seem to be mutated. Here are the mutated foci.Position 50769787 doesn't seem to be mutated. Here are the mutated foci.Position 50771401 doesn't seem to be mutated. Here are the mutated foci.Position 50772088 doesn't seem to be mutated. Here are the mutated foci.Position 50774863 doesn't seem to be mutated. Here are the mutated foci.Position 50781722 doesn't seem to be mutated. Here are the mutated foci.Position 50792451 doesn't seem to be mutated. Here are the mutated foci.Position 50799970 doesn't seem to be mutated. Here are the mutated foci.Position 50800716 doesn't seem to be mutated. Here are the mutated foci.Position 68735431 doesn't seem to be mutated. Here are the mutated foci.Position 68745397 doesn't seem to be mutated. Here are the mutated foci.Position 68750902 doesn't seem to be mutated. Here are the mutated foci.Position 68753817 doesn't seem to be mutated. Here are the mutated foci.Position 68766979 doesn't seem to be mutated. Here are the mutated foci.Position 68768252 doesn't seem to be mutated. Here are the mutated foci.Position 68768577 doesn't seem to be mutated. Here are the mutated foci.Position 68768855 doesn't seem to be mutated. Here are the mutated foci.Position 68769836 doesn't seem to be mutated. Here are the mutated foci.Position 68770533 doesn't seem to be mutated. Here are the mutated foci.Position 68777466 doesn't seem to be mutated. Here are the mutated foci.Position 68779343 doesn't seem to be mutated. Here are the mutated foci.Position 68781635 doesn't seem to be mutated. Here are the mutated foci.Position 68789547 doesn't seem to be mutated. Here are the mutated foci.Position 68791981 doesn't seem to be mutated. Here are the mutated foci.Position 68809778 doesn't seem to be mutated. Here are the mutated foci.Position 68812860 doesn't seem to be mutated. Here are the mutated foci.Position 68823306 doesn't seem to be mutated. Here are the mutated foci.Position 68823520 doesn't seem to be mutated. Here are the mutated foci.Position 89737584 doesn't seem to be mutated. Here are the mutated foci.Position 89742137 doesn't seem to be mutated. Here are the mutated foci.Position 89744955 doesn't seem to be mutated. Here are the mutated foci.Position 89747162 doesn't seem to be mutated. Here are the mutated foci.Position 89748478 doesn't seem to be mutated. Here are the mutated foci.Position 89748609 doesn't seem to be mutated. Here are the mutated foci.Position 89751932 doesn't seem to be mutated. Here are the mutated foci.Position 89754725 doesn't seem to be mutated. Here are the mutated foci.Position 89757783 doesn't seem to be mutated. Here are the mutated foci.Position 89764213 doesn't seem to be mutated. Here are the mutated foci.Position 89766693 doesn't seem to be mutated. Here are the mutated foci.Position 89773936 doesn't seem to be mutated. Here are the mutated foci.Position 89776704 doesn't seem to be mutated. Here are the mutated foci.Position 89777554 doesn't seem to be mutated. Here are the mutated foci.Position 89778326 doesn't seem to be mutated. Here are the mutated foci.Position 89781654 doesn't seem to be mutated. Here are the mutated foci.Position 89782282 doesn't seem to be mutated. Here are the mutated foci.Position 89787249 doesn't seem to be mutated. Here are the mutated foci.Position 89787841 doesn't seem to be mutated. Here are the mutated foci.Position 89790753 doesn't seem to be mutated. Here are the mutated foci.Position 89791274 doesn't seem to be mutated. Here are the mutated foci.Position 89798553 doesn't seem to be mutated. Here are the mutated foci.Position 89802801 doesn't seem to be mutated. Here are the mutated foci.Position 89804378 doesn't seem to be mutated. Here are the mutated foci.Position 89811791 doesn't seem to be mutated. Here are the mutated foci.Position 89813028 doesn't seem to be mutated. Here are the mutated foci.Position 89813276 doesn't seem to be mutated. Here are the mutated foci.Position 89813686 doesn't seem to be mutated. Here are the mutated foci.Position 89815505 doesn't seem to be mutated. Here are the mutated foci.Position 89817179 doesn't seem to be mutated. Here are the mutated foci.Position 89818939 doesn't seem to be mutated. Here are the mutated foci.Position 89819210 doesn't seem to be mutated. Here are the mutated foci.Position 89819967 doesn't seem to be mutated. Here are the mutated foci.Position 7668877 doesn't seem to be mutated. Here are the mutated foci.Position 7673704 doesn't seem to be mutated. Here are the mutated foci.Position 7673803 doesn't seem to be mutated. Here are the mutated foci.Position 7674398 doesn't seem to be mutated. Here are the mutated foci.Position 7678522 doesn't seem to be mutated. Here are the mutated foci.Position 7679075 doesn't seem to be mutated. Here are the mutated foci.Position 7679337 doesn't seem to be mutated. Here are the mutated foci.Position 7680961 doesn't seem to be mutated. Here are the mutated foci.Position 7681039 doesn't seem to be mutated. Here are the mutated foci.Position 7681341 doesn't seem to be mutated. Here are the mutated foci.Position 7681895 doesn't seem to be mutated. Here are the mutated foci.Position 7684277 doesn't seem to be mutated. Here are the mutated foci.Position 7690067 doesn't seem to be mutated. Here are the mutated foci.Position 7690712 doesn't seem to be mutated. Here are the mutated foci.Position 7690785 doesn't seem to be mutated. Here are the mutated foci.Position 7700729 doesn't seem to be mutated. Here are the mutated foci.Position 17216241 doesn't seem to be mutated. Here are the mutated foci.Position 17216409 doesn't seem to be mutated. Here are the mutated foci.Position 17217720 doesn't seem to be mutated. Here are the mutated foci.Position 17234203 doesn't seem to be mutated. Here are the mutated foci.Position 17234337 doesn't seem to be mutated. Here are the mutated foci.Position 17241043 doesn't seem to be mutated. Here are the mutated foci.Position 31093424 doesn't seem to be mutated. Here are the mutated foci.Position 31093709 doesn't seem to be mutated. Here are the mutated foci.Position 31094428 doesn't seem to be mutated. Here are the mutated foci.Position 31095417 doesn't seem to be mutated. Here are the mutated foci.Position 31096698 doesn't seem to be mutated. Here are the mutated foci.Position 31103813 doesn't seem to be mutated. Here are the mutated foci.Position 31124519 doesn't seem to be mutated. Here are the mutated foci.Position 31125893 doesn't seem to be mutated. Here are the mutated foci.Position 31130462 doesn't seem to be mutated. Here are the mutated foci.Position 31131100 doesn't seem to be mutated. Here are the mutated foci.Position 31133667 doesn't seem to be mutated. Here are the mutated foci.Position 31153085 doesn't seem to be mutated. Here are the mutated foci.Position 31154310 doesn't seem to be mutated. Here are the mutated foci.Position 31156092 doesn't seem to be mutated. Here are the mutated foci.Position 31159455 doesn't seem to be mutated. Here are the mutated foci.Position 31163774 doesn't seem to be mutated. Here are the mutated foci.Position 31168629 doesn't seem to be mutated. Here are the mutated foci.Position 31181459 doesn't seem to be mutated. Here are the mutated foci.Position 31183653 doesn't seem to be mutated. Here are the mutated foci.Position 31184401 doesn't seem to be mutated. Here are the mutated foci.Position 31184628 doesn't seem to be mutated. Here are the mutated foci.Position 31186593 doesn't seem to be mutated. Here are the mutated foci.Position 31186760 doesn't seem to be mutated. Here are the mutated foci.Position 31191887 doesn't seem to be mutated. Here are the mutated foci.Position 31195061 doesn't seem to be mutated. Here are the mutated foci.Position 31196074 doesn't seem to be mutated. Here are the mutated foci.Position 31200008 doesn't seem to be mutated. Here are the mutated foci.Position 31207649 doesn't seem to be mutated. Here are the mutated foci.Position 31213704 doesn't seem to be mutated. Here are the mutated foci.Position 31226459 doesn't seem to be mutated. Here are the mutated foci.Position 31226989 doesn't seem to be mutated. Here are the mutated foci.Position 31228498 doesn't seem to be mutated. Here are the mutated foci.Position 31233232 doesn't seem to be mutated. Here are the mutated foci.Position 31243385 doesn't seem to be mutated. Here are the mutated foci.Position 31244444 doesn't seem to be mutated. Here are the mutated foci.Position 31245021 doesn't seem to be mutated. Here are the mutated foci.Position 31248880 doesn't seem to be mutated. Here are the mutated foci.Position 31251942 doesn't seem to be mutated. Here are the mutated foci.Position 31254535 doesn't seem to be mutated. Here are the mutated foci.Position 31257913 doesn't seem to be mutated. Here are the mutated foci.Position 31264250 doesn't seem to be mutated. Here are the mutated foci.Position 31274526 doesn't seem to be mutated. Here are the mutated foci.Position 31274653 doesn't seem to be mutated. Here are the mutated foci.Position 31276888 doesn't seem to be mutated. Here are the mutated foci.Position 31278661 doesn't seem to be mutated. Here are the mutated foci.Position 31279982 doesn't seem to be mutated. Here are the mutated foci.Position 31282751 doesn't seem to be mutated. Here are the mutated foci.Position 31299343 doesn't seem to be mutated. Here are the mutated foci.Position 31300340 doesn't seem to be mutated. Here are the mutated foci.Position 31302973 doesn't seem to be mutated. Here are the mutated foci.Position 31327258 doesn't seem to be mutated. Here are the mutated foci.Position 31331788 doesn't seem to be mutated. Here are the mutated foci.Position 31333323 doesn't seem to be mutated. Here are the mutated foci.Position 31340985 doesn't seem to be mutated. Here are the mutated foci.Position 31348797 doesn't seem to be mutated. Here are the mutated foci.Position 31354617 doesn't seem to be mutated. Here are the mutated foci.Position 31359114 doesn't seem to be mutated. Here are the mutated foci.Position 31361802 doesn't seem to be mutated. Here are the mutated foci.Position 31366238 doesn't seem to be mutated. Here are the mutated foci.Position 31370278 doesn't seem to be mutated. Here are the mutated foci.Position 35098906 doesn't seem to be mutated. Here are the mutated foci.Position 35100244 doesn't seem to be mutated. Here are the mutated foci.Position 35102498 doesn't seem to be mutated. Here are the mutated foci.Position 35106475 doesn't seem to be mutated. Here are the mutated foci.Position 35108591 doesn't seem to be mutated. Here are the mutated foci.Position 35110644 doesn't seem to be mutated. Here are the mutated foci.Position 35111223 doesn't seem to be mutated. Here are the mutated foci.Position 35111812 doesn't seem to be mutated. Here are the mutated foci.Position 35112842 doesn't seem to be mutated. Here are the mutated foci.Position 35114417 doesn't seem to be mutated. Here are the mutated foci.Position 35115427 doesn't seem to be mutated. Here are the mutated foci.Position 35118313 doesn't seem to be mutated. Here are the mutated foci.Position 35120696 doesn't seem to be mutated. Here are the mutated foci.Position 39197705 doesn't seem to be mutated. Here are the mutated foci.Position 39201718 doesn't seem to be mutated. Here are the mutated foci.Position 39205923 doesn't seem to be mutated. Here are the mutated foci.Position 39207772 doesn't seem to be mutated. Here are the mutated foci.Position 39208027 doesn't seem to be mutated. Here are the mutated foci.Position 40626222 doesn't seem to be mutated. Here are the mutated foci.Position 40627880 doesn't seem to be mutated. Here are the mutated foci.Position 40629750 doesn't seem to be mutated. Here are the mutated foci.Position 40630306 doesn't seem to be mutated. Here are the mutated foci.Position 40630456 doesn't seem to be mutated. Here are the mutated foci.Position 40631167 doesn't seem to be mutated. Here are the mutated foci.Position 40635002 doesn't seem to be mutated. Here are the mutated foci.Position 40640287 doesn't seem to be mutated. Here are the mutated foci.Position 42312660 doesn't seem to be mutated. Here are the mutated foci.Position 42312929 doesn't seem to be mutated. Here are the mutated foci.Position 42316275 doesn't seem to be mutated. Here are the mutated foci.Position 42318183 doesn't seem to be mutated. Here are the mutated foci.Position 42319758 doesn't seem to be mutated. Here are the mutated foci.Position 42320550 doesn't seem to be mutated. Here are the mutated foci.Position 42321878 doesn't seem to be mutated. Here are the mutated foci.Position 42326896 doesn't seem to be mutated. Here are the mutated foci.Position 42330578 doesn't seem to be mutated. Here are the mutated foci.Position 42331796 doesn't seem to be mutated. Here are the mutated foci.Position 42336684 doesn't seem to be mutated. Here are the mutated foci.Position 42340085 doesn't seem to be mutated. Here are the mutated foci.Position 42352338 doesn't seem to be mutated. Here are the mutated foci.Position 42359214 doesn't seem to be mutated. Here are the mutated foci.Position 42359941 doesn't seem to be mutated. Here are the mutated foci.Position 42360905 doesn't seem to be mutated. Here are the mutated foci.Position 42363184 doesn't seem to be mutated. Here are the mutated foci.Position 42365640 doesn't seem to be mutated. Here are the mutated foci.Position 42369642 doesn't seem to be mutated. Here are the mutated foci.Position 42369804 doesn't seem to be mutated. Here are the mutated foci.Position 42372934 doesn't seem to be mutated. Here are the mutated foci.Position 42373210 doesn't seem to be mutated. Here are the mutated foci.Position 42373740 doesn't seem to be mutated. Here are the mutated foci.Position 42375287 doesn't seem to be mutated. Here are the mutated foci.Position 42376701 doesn't seem to be mutated. Here are the mutated foci.Position 42376907 doesn't seem to be mutated. Here are the mutated foci.Position 42380348 doesn't seem to be mutated. Here are the mutated foci.Position 42380574 doesn't seem to be mutated. Here are the mutated foci.Position 42384382 doesn't seem to be mutated. Here are the mutated foci.Position 42385229 doesn't seem to be mutated. Here are the mutated foci.Position 42386149 doesn't seem to be mutated. Here are the mutated foci.Position 42391407 doesn't seem to be mutated. Here are the mutated foci.Position 43048360 doesn't seem to be mutated. Here are the mutated foci.Position 43050069 doesn't seem to be mutated. Here are the mutated foci.Position 43050444 doesn't seem to be mutated. Here are the mutated foci.Position 43050619 doesn't seem to be mutated. Here are the mutated foci.Position 43053829 doesn't seem to be mutated. Here are the mutated foci.Position 43057634 doesn't seem to be mutated. Here are the mutated foci.Position 43057822 doesn't seem to be mutated. Here are the mutated foci.Position 43060072 doesn't seem to be mutated. Here are the mutated foci.Position 43062742 doesn't seem to be mutated. Here are the mutated foci.Position 43065066 doesn't seem to be mutated. Here are the mutated foci.Position 43067421 doesn't seem to be mutated. Here are the mutated foci.Position 43068233 doesn't seem to be mutated. Here are the mutated foci.Position 43070186 doesn't seem to be mutated. Here are the mutated foci.Position 43071437 doesn't seem to be mutated. Here are the mutated foci.Position 43072324 doesn't seem to be mutated. Here are the mutated foci.Position 43073044 doesn't seem to be mutated. Here are the mutated foci.Position 43078186 doesn't seem to be mutated. Here are the mutated foci.Position 43084180 doesn't seem to be mutated. Here are the mutated foci.Position 43089946 doesn't seem to be mutated. Here are the mutated foci.Position 43092934 doesn't seem to be mutated. Here are the mutated foci.Position 43097609 doesn't seem to be mutated. Here are the mutated foci.Position 43099474 doesn't seem to be mutated. Here are the mutated foci.Position 43101328 doesn't seem to be mutated. Here are the mutated foci.Position 43101480 doesn't seem to be mutated. Here are the mutated foci.Position 43103453 doesn't seem to be mutated. Here are the mutated foci.Position 43105031 doesn't seem to be mutated. Here are the mutated foci.Position 43113093 doesn't seem to be mutated. Here are the mutated foci.Position 43113576 doesn't seem to be mutated. Here are the mutated foci.Position 43113656 doesn't seem to be mutated. Here are the mutated foci.Position 43117717 doesn't seem to be mutated. Here are the mutated foci.Position 43126871 doesn't seem to be mutated. Here are the mutated foci.Position 43129477 doesn't seem to be mutated. Here are the mutated foci.Position 43150731 doesn't seem to be mutated. Here are the mutated foci.Position 43150958 doesn't seem to be mutated. Here are the mutated foci.Position 43152811 doesn't seem to be mutated. Here are the mutated foci.Position 44068986 doesn't seem to be mutated. Here are the mutated foci.Position 44074413 doesn't seem to be mutated. Here are the mutated foci.Position 44075354 doesn't seem to be mutated. Here are the mutated foci.Position 48727049 doesn't seem to be mutated. Here are the mutated foci.Position 48728913 doesn't seem to be mutated. Here are the mutated foci.Position 48730847 doesn't seem to be mutated. Here are the mutated foci.Position 48732942 doesn't seem to be mutated. Here are the mutated foci.Position 48733336 doesn't seem to be mutated. Here are the mutated foci.Position 48733960 doesn't seem to be mutated. Here are the mutated foci.Position 58695657 doesn't seem to be mutated. Here are the mutated foci.Position 58698009 doesn't seem to be mutated. Here are the mutated foci.Position 58698636 doesn't seem to be mutated. Here are the mutated foci.Position 58704761 doesn't seem to be mutated. Here are the mutated foci.Position 58704777 doesn't seem to be mutated. Here are the mutated foci.Position 58708860 doesn't seem to be mutated. Here are the mutated foci.Position 58711852 doesn't seem to be mutated. Here are the mutated foci.Position 58713949 doesn't seem to be mutated. Here are the mutated foci.Position 58716053 doesn't seem to be mutated. Here are the mutated foci.Position 58725005 doesn't seem to be mutated. Here are the mutated foci.Position 58726387 doesn't seem to be mutated. Here are the mutated foci.Position 58726643 doesn't seem to be mutated. Here are the mutated foci.Position 58727414 doesn't seem to be mutated. Here are the mutated foci.Position 58727614 doesn't seem to be mutated. Here are the mutated foci.Position 58731421 doesn't seem to be mutated. Here are the mutated foci.Position 58994123 doesn't seem to be mutated. Here are the mutated foci.Position 59000959 doesn't seem to be mutated. Here are the mutated foci.Position 59001876 doesn't seem to be mutated. Here are the mutated foci.Position 59003872 doesn't seem to be mutated. Here are the mutated foci.Position 59011399 doesn't seem to be mutated. Here are the mutated foci.Position 59011759 doesn't seem to be mutated. Here are the mutated foci.Position 59012656 doesn't seem to be mutated. Here are the mutated foci.Position 59015176 doesn't seem to be mutated. Here are the mutated foci.Position 59021480 doesn't seem to be mutated. Here are the mutated foci.Position 59022246 doesn't seem to be mutated. Here are the mutated foci.Position 59029335 doesn't seem to be mutated. Here are the mutated foci.Position 59029635 doesn't seem to be mutated. Here are the mutated foci.Position 59030965 doesn't seem to be mutated. Here are the mutated foci.Position 59032481 doesn't seem to be mutated. Here are the mutated foci.Position 59037431 doesn't seem to be mutated. Here are the mutated foci.Position 59039056 doesn't seem to be mutated. Here are the mutated foci.Position 59044422 doesn't seem to be mutated. Here are the mutated foci.Position 59045260 doesn't seem to be mutated. Here are the mutated foci.Position 59045570 doesn't seem to be mutated. Here are the mutated foci.Position 59053565 doesn't seem to be mutated. Here are the mutated foci.Position 59055271 doesn't seem to be mutated. Here are the mutated foci.Position 59055765 doesn't seem to be mutated. Here are the mutated foci.Position 59060591 doesn't seem to be mutated. Here are the mutated foci.Position 59064408 doesn't seem to be mutated. Here are the mutated foci.Position 59064966 doesn't seem to be mutated. Here are the mutated foci.Position 59069066 doesn't seem to be mutated. Here are the mutated foci.Position 59071163 doesn't seem to be mutated. Here are the mutated foci.Position 59085225 doesn't seem to be mutated. Here are the mutated foci.Position 59094172 doesn't seem to be mutated. Here are the mutated foci.Position 59096273 doesn't seem to be mutated. Here are the mutated foci.Position 59102376 doesn't seem to be mutated. Here are the mutated foci.Position 59104990 doesn't seem to be mutated. Here are the mutated foci.Position 59108202 doesn't seem to be mutated. Here are the mutated foci.Position 61678023 doesn't seem to be mutated. Here are the mutated foci.Position 61679150 doesn't seem to be mutated. Here are the mutated foci.Position 61681407 doesn't seem to be mutated. Here are the mutated foci.Position 61683414 doesn't seem to be mutated. Here are the mutated foci.Position 61687235 doesn't seem to be mutated. Here are the mutated foci.Position 61691611 doesn't seem to be mutated. Here are the mutated foci.Position 61691867 doesn't seem to be mutated. Here are the mutated foci.Position 61692000 doesn't seem to be mutated. Here are the mutated foci.Position 61696711 doesn't seem to be mutated. Here are the mutated foci.Position 61696853 doesn't seem to be mutated. Here are the mutated foci.Position 61698426 doesn't seem to be mutated. Here are the mutated foci.Position 61699042 doesn't seem to be mutated. Here are the mutated foci.Position 61705232 doesn't seem to be mutated. Here are the mutated foci.Position 61706443 doesn't seem to be mutated. Here are the mutated foci.Position 61707961 doesn't seem to be mutated. Here are the mutated foci.Position 61721096 doesn't seem to be mutated. Here are the mutated foci.Position 61727197 doesn't seem to be mutated. Here are the mutated foci.Position 61736306 doesn't seem to be mutated. Here are the mutated foci.Position 61737707 doesn't seem to be mutated. Here are the mutated foci.Position 61740554 doesn't seem to be mutated. Here are the mutated foci.Position 61741010 doesn't seem to be mutated. Here are the mutated foci.Position 61741850 doesn't seem to be mutated. Here are the mutated foci.Position 61741958 doesn't seem to be mutated. Here are the mutated foci.Position 61745406 doesn't seem to be mutated. Here are the mutated foci.Position 61747790 doesn't seem to be mutated. Here are the mutated foci.Position 61748086 doesn't seem to be mutated. Here are the mutated foci.Position 61748606 doesn't seem to be mutated. Here are the mutated foci.Position 61751855 doesn't seem to be mutated. Here are the mutated foci.Position 61766887 doesn't seem to be mutated. Here are the mutated foci.Position 61770812 doesn't seem to be mutated. Here are the mutated foci.Position 61771961 doesn't seem to be mutated. Here are the mutated foci.Position 61772194 doesn't seem to be mutated. Here are the mutated foci.Position 61784437 doesn't seem to be mutated. Here are the mutated foci.Position 61785326 doesn't seem to be mutated. Here are the mutated foci.Position 61787923 doesn't seem to be mutated. Here are the mutated foci.Position 61789122 doesn't seem to be mutated. Here are the mutated foci.Position 61790552 doesn't seem to be mutated. Here are the mutated foci.Position 61799315 doesn't seem to be mutated. Here are the mutated foci.Position 61811130 doesn't seem to be mutated. Here are the mutated foci.Position 61811417 doesn't seem to be mutated. Here are the mutated foci.Position 61811820 doesn't seem to be mutated. Here are the mutated foci.Position 61814707 doesn't seem to be mutated. Here are the mutated foci.Position 61821343 doesn't seem to be mutated. Here are the mutated foci.Position 61824000 doesn't seem to be mutated. Here are the mutated foci.Position 61826923 doesn't seem to be mutated. Here are the mutated foci.Position 61828562 doesn't seem to be mutated. Here are the mutated foci.Position 61833963 doesn't seem to be mutated. Here are the mutated foci.Position 61840597 doesn't seem to be mutated. Here are the mutated foci.Position 61842555 doesn't seem to be mutated. Here are the mutated foci.Position 61846169 doesn't seem to be mutated. Here are the mutated foci.Position 61846392 doesn't seem to be mutated. Here are the mutated foci.Position 61851083 doesn't seem to be mutated. Here are the mutated foci.Position 61852528 doesn't seem to be mutated. Here are the mutated foci.Position 61855221 doesn't seem to be mutated. Here are the mutated foci.Position 61860520 doesn't seem to be mutated. Here are the mutated foci.Position 65529033 doesn't seem to be mutated. Here are the mutated foci.Position 65532605 doesn't seem to be mutated. Here are the mutated foci.Position 65535530 doesn't seem to be mutated. Here are the mutated foci.Position 65535806 doesn't seem to be mutated. Here are the mutated foci.Position 65541568 doesn't seem to be mutated. Here are the mutated foci.Position 65541664 doesn't seem to be mutated. Here are the mutated foci.Position 65562319 doesn't seem to be mutated. Here are the mutated foci.Position 68510108 doesn't seem to be mutated. Here are the mutated foci.Position 68510228 doesn't seem to be mutated. Here are the mutated foci.Position 68511290 doesn't seem to be mutated. Here are the mutated foci.Position 68514630 doesn't seem to be mutated. Here are the mutated foci.Position 68514979 doesn't seem to be mutated. Here are the mutated foci.Position 68516258 doesn't seem to be mutated. Here are the mutated foci.Position 68518781 doesn't seem to be mutated. Here are the mutated foci.Position 68523659 doesn't seem to be mutated. Here are the mutated foci.Position 68529328 doesn't seem to be mutated. Here are the mutated foci.Position 68532203 doesn't seem to be mutated. Here are the mutated foci.Position 68532696 doesn't seem to be mutated. Here are the mutated foci.Position 68532895 doesn't seem to be mutated. Here are the mutated foci.Position 68534302 doesn't seem to be mutated. Here are the mutated foci.Position 76471442 doesn't seem to be mutated. Here are the mutated foci.Position 76479777 doesn't seem to be mutated. Here are the mutated foci.Position 76481577 doesn't seem to be mutated. Here are the mutated foci.Position 76483294 doesn't seem to be mutated. Here are the mutated foci.Position 76490194 doesn't seem to be mutated. Here are the mutated foci.Position 76495691 doesn't seem to be mutated. Here are the mutated foci.Position 76495815 doesn't seem to be mutated. Here are the mutated foci.Position 76499167 doesn't seem to be mutated. Here are the mutated foci.Position 76500570 doesn't seem to be mutated. Here are the mutated foci.Position 76502540 doesn't seem to be mutated. Here are the mutated foci.Position 76504617 doesn't seem to be mutated. Here are the mutated foci.Position 51025521 doesn't seem to be mutated. Here are the mutated foci.Position 51026893 doesn't seem to be mutated. Here are the mutated foci.Position 51031454 doesn't seem to be mutated. Here are the mutated foci.Position 51032275 doesn't seem to be mutated. Here are the mutated foci.Position 51033387 doesn't seem to be mutated. Here are the mutated foci.Position 51036241 doesn't seem to be mutated. Here are the mutated foci.Position 51044303 doesn't seem to be mutated. Here are the mutated foci.Position 51046063 doesn't seem to be mutated. Here are the mutated foci.Position 51051806 doesn't seem to be mutated. Here are the mutated foci.Position 51052692 doesn't seem to be mutated. Here are the mutated foci.Position 51057576 doesn't seem to be mutated. Here are the mutated foci.Position 51059179 doesn't seem to be mutated. Here are the mutated foci.Position 51061534 doesn't seem to be mutated. Here are the mutated foci.Position 51066651 doesn't seem to be mutated. Here are the mutated foci.Position 51069406 doesn't seem to be mutated. Here are the mutated foci.Position 51076206 doesn't seem to be mutated. Here are the mutated foci.Position 51077668 doesn't seem to be mutated. Here are the mutated foci.Position 51078298 doesn't seem to be mutated. Here are the mutated foci.Position 51080402 doesn't seem to be mutated. Here are the mutated foci.Position 857374 doesn't seem to be mutated. Here are the mutated foci.Position 1187607 doesn't seem to be mutated. Here are the mutated foci.Position 1188208 doesn't seem to be mutated. Here are the mutated foci.Position 1192627 doesn't seem to be mutated. Here are the mutated foci.Position 1194160 doesn't seem to be mutated. Here are the mutated foci.Position 1203076 doesn't seem to be mutated. Here are the mutated foci.Position 1212890 doesn't seem to be mutated. Here are the mutated foci.Position 1213028 doesn't seem to be mutated. Here are the mutated foci.Position 1217940 doesn't seem to be mutated. Here are the mutated foci.Position 1227997 doesn't seem to be mutated. Here are the mutated foci.Position 4088634 doesn't seem to be mutated. Here are the mutated foci.Position 4090394 doesn't seem to be mutated. Here are the mutated foci.Position 4091643 doesn't seem to be mutated. Here are the mutated foci.Position 4092684 doesn't seem to be mutated. Here are the mutated foci.Position 4093019 doesn't seem to be mutated. Here are the mutated foci.Position 4093069 doesn't seem to be mutated. Here are the mutated foci.Position 4094982 doesn't seem to be mutated. Here are the mutated foci.Position 4096547 doesn't seem to be mutated. Here are the mutated foci.Position 4097629 doesn't seem to be mutated. Here are the mutated foci.Position 4100361 doesn't seem to be mutated. Here are the mutated foci.Position 4100377 doesn't seem to be mutated. Here are the mutated foci.Position 4101269 doesn't seem to be mutated. Here are the mutated foci.Position 4101678 doesn't seem to be mutated. Here are the mutated foci.Position 4101849 doesn't seem to be mutated. Here are the mutated foci.Position 4102667 doesn't seem to be mutated. Here are the mutated foci.Position 4103541 doesn't seem to be mutated. Here are the mutated foci.Position 4106995 doesn't seem to be mutated. Here are the mutated foci.Position 4109039 doesn't seem to be mutated. Here are the mutated foci.Position 4111023 doesn't seem to be mutated. Here are the mutated foci.Position 4112073 doesn't seem to be mutated. Here are the mutated foci.Position 4112251 doesn't seem to be mutated. Here are the mutated foci.Position 4115531 doesn't seem to be mutated. Here are the mutated foci.Position 4116738 doesn't seem to be mutated. Here are the mutated foci.Position 4116924 doesn't seem to be mutated. Here are the mutated foci.Position 4117526 doesn't seem to be mutated. Here are the mutated foci.Position 4117927 doesn't seem to be mutated. Here are the mutated foci.Position 4118600 doesn't seem to be mutated. Here are the mutated foci.Position 4125251 doesn't seem to be mutated. Here are the mutated foci.Position 4125811 doesn't seem to be mutated. Here are the mutated foci.Position 4125823 doesn't seem to be mutated. Here are the mutated foci.Position 10963767 doesn't seem to be mutated. Here are the mutated foci.Position 10968499 doesn't seem to be mutated. Here are the mutated foci.Position 10971987 doesn't seem to be mutated. Here are the mutated foci.Position 10977312 doesn't seem to be mutated. Here are the mutated foci.Position 10982668 doesn't seem to be mutated. Here are the mutated foci.Position 10983631 doesn't seem to be mutated. Here are the mutated foci.Position 10986566 doesn't seem to be mutated. Here are the mutated foci.Position 10989333 doesn't seem to be mutated. Here are the mutated foci.Position 10991247 doesn't seem to be mutated. Here are the mutated foci.Position 10995897 doesn't seem to be mutated. Here are the mutated foci.Position 11000490 doesn't seem to be mutated. Here are the mutated foci.Position 11003266 doesn't seem to be mutated. Here are the mutated foci.Position 11004298 doesn't seem to be mutated. Here are the mutated foci.Position 11007170 doesn't seem to be mutated. Here are the mutated foci.Position 11009850 doesn't seem to be mutated. Here are the mutated foci.Position 11012195 doesn't seem to be mutated. Here are the mutated foci.Position 11013936 doesn't seem to be mutated. Here are the mutated foci.Position 11014987 doesn't seem to be mutated. Here are the mutated foci.Position 11015385 doesn't seem to be mutated. Here are the mutated foci.Position 11015487 doesn't seem to be mutated. Here are the mutated foci.Position 11017895 doesn't seem to be mutated. Here are the mutated foci.Position 11019818 doesn't seem to be mutated. Here are the mutated foci.Position 11024674 doesn't seem to be mutated. Here are the mutated foci.Position 11025655 doesn't seem to be mutated. Here are the mutated foci.Position 11025833 doesn't seem to be mutated. Here are the mutated foci.Position 11028191 doesn't seem to be mutated. Here are the mutated foci.Position 11028510 doesn't seem to be mutated. Here are the mutated foci.Position 11030316 doesn't seem to be mutated. Here are the mutated foci.Position 11033955 doesn't seem to be mutated. Here are the mutated foci.Position 11035077 doesn't seem to be mutated. Here are the mutated foci.Position 11035511 doesn't seem to be mutated. Here are the mutated foci.Position 11036422 doesn't seem to be mutated. Here are the mutated foci.Position 11039052 doesn't seem to be mutated. Here are the mutated foci.Position 11041201 doesn't seem to be mutated. Here are the mutated foci.Position 11044912 doesn't seem to be mutated. Here are the mutated foci.Position 11045999 doesn't seem to be mutated. Here are the mutated foci.Position 11052716 doesn't seem to be mutated. Here are the mutated foci.Position 11052744 doesn't seem to be mutated. Here are the mutated foci.Position 11055689 doesn't seem to be mutated. Here are the mutated foci.Position 11056235 doesn't seem to be mutated. Here are the mutated foci.Position 11056522 doesn't seem to be mutated. Here are the mutated foci.Position 11058813 doesn't seem to be mutated. Here are the mutated foci.Position 11062746 doesn't seem to be mutated. Here are the mutated foci.Position 11064013 doesn't seem to be mutated. Here are the mutated foci.Position 11064269 doesn't seem to be mutated. Here are the mutated foci.Position 11065087 doesn't seem to be mutated. Here are the mutated foci.Position 11066819 doesn't seem to be mutated. Here are the mutated foci.Position 11069348 doesn't seem to be mutated. Here are the mutated foci.Position 11069636 doesn't seem to be mutated. Here are the mutated foci.Position 11071392 doesn't seem to be mutated. Here are the mutated foci.Position 11073456 doesn't seem to be mutated. Here are the mutated foci.Position 11080921 doesn't seem to be mutated. Here are the mutated foci.Position 11082485 doesn't seem to be mutated. Here are the mutated foci.Position 33298343 doesn't seem to be mutated. Here are the mutated foci.Position 33302537 doesn't seem to be mutated. Here are the mutated foci.Position 33303420 doesn't seem to be mutated. Here are the mutated foci.Position 41857559 doesn't seem to be mutated. Here are the mutated foci.Position 41865817 doesn't seem to be mutated. Here are the mutated foci.Position 41866024 doesn't seem to be mutated. Here are the mutated foci.Position 41869371 doesn't seem to be mutated. Here are the mutated foci.Position 41871129 doesn't seem to be mutated. Here are the mutated foci.Position 45350277 doesn't seem to be mutated. Here are the mutated foci.Position 45354564 doesn't seem to be mutated. Here are the mutated foci.Position 45354683 doesn't seem to be mutated. Here are the mutated foci.Position 45354747 doesn't seem to be mutated. Here are the mutated foci.Position 45367148 doesn't seem to be mutated. Here are the mutated foci.Position 45368048 doesn't seem to be mutated. Here are the mutated foci.Position 45374005 doesn't seem to be mutated. Here are the mutated foci.Position 45413083 doesn't seem to be mutated. Here are the mutated foci.Position 45413583 doesn't seem to be mutated. Here are the mutated foci.Position 45413670 doesn't seem to be mutated. Here are the mutated foci.Position 45421318 doesn't seem to be mutated. Here are the mutated foci.Position 45422119 doesn't seem to be mutated. Here are the mutated foci.Position 45427455 doesn't seem to be mutated. Here are the mutated foci.Position 45428057 doesn't seem to be mutated. Here are the mutated foci.Position 45429930 doesn't seem to be mutated. Here are the mutated foci.Position 45430109 doesn't seem to be mutated. Here are the mutated foci.Position 45441827 doesn't seem to be mutated. Here are the mutated foci.Position 45444333 doesn't seem to be mutated. Here are the mutated foci.Position 45448163 doesn't seem to be mutated. Here are the mutated foci.Position 45449152 doesn't seem to be mutated. Here are the mutated foci.Position 45449642 doesn't seem to be mutated. Here are the mutated foci.Position 45455181 doesn't seem to be mutated. Here are the mutated foci.Position 45455503 doesn't seem to be mutated. Here are the mutated foci.Position 45461651 doesn't seem to be mutated. Here are the mutated foci.Position 50386040 doesn't seem to be mutated. Here are the mutated foci.Position 50386466 doesn't seem to be mutated. Here are the mutated foci.Position 50387696 doesn't seem to be mutated. Here are the mutated foci.Position 50387952 doesn't seem to be mutated. Here are the mutated foci.Position 50390071 doesn't seem to be mutated. Here are the mutated foci.Position 50391156 doesn't seem to be mutated. Here are the mutated foci.Position 50391516 doesn't seem to be mutated. Here are the mutated foci.Position 50396816 doesn't seem to be mutated. Here are the mutated foci.Position 50400987 doesn't seem to be mutated. Here are the mutated foci.Position 50403109 doesn't seem to be mutated. Here are the mutated foci.Position 50404408 doesn't seem to be mutated. Here are the mutated foci.Position 50404452 doesn't seem to be mutated. Here are the mutated foci.Position 50405640 doesn't seem to be mutated. Here are the mutated foci.Position 50409896 doesn't seem to be mutated. Here are the mutated foci.Position 50410683 doesn't seem to be mutated. Here are the mutated foci.Position 50410715 doesn't seem to be mutated. Here are the mutated foci.Position 50410746 doesn't seem to be mutated. Here are the mutated foci.Position 50413734 doesn't seem to be mutated. Here are the mutated foci.Position 50415763 doesn't seem to be mutated. Here are the mutated foci.Position 50416883 doesn't seem to be mutated. Here are the mutated foci.Position 50417336 doesn't seem to be mutated. Here are the mutated foci.Position 50417879 doesn't seem to be mutated. Here are the mutated foci.Position 32357586 doesn't seem to be mutated. Here are the mutated foci.Position 32362504 doesn't seem to be mutated. Here are the mutated foci.Position 32363602 doesn't seem to be mutated. Here are the mutated foci.Position 32365260 doesn't seem to be mutated. Here are the mutated foci.Position 32366491 doesn't seem to be mutated. Here are the mutated foci.Position 32369463 doesn't seem to be mutated. Here are the mutated foci.Position 32370582 doesn't seem to be mutated. Here are the mutated foci.Position 32378382 doesn't seem to be mutated. Here are the mutated foci.Position 32378822 doesn't seem to be mutated. Here are the mutated foci.Position 32379406 doesn't seem to be mutated. Here are the mutated foci.Position 32381371 doesn't seem to be mutated. Here are the mutated foci.Position 32396300 doesn't seem to be mutated. Here are the mutated foci.Position 32400242 doesn't seem to be mutated. Here are the mutated foci.Position 32402529 doesn't seem to be mutated. Here are the mutated foci.Position 32404385 doesn't seem to be mutated. Here are the mutated foci.Position 32405368 doesn't seem to be mutated. Here are the mutated foci.Position 32408835 doesn't seem to be mutated. Here are the mutated foci.Position 32409004 doesn't seem to be mutated. Here are the mutated foci.Position 32409942 doesn't seem to be mutated. Here are the mutated foci.Position 32428351 doesn't seem to be mutated. Here are the mutated foci.Position 32428394 doesn't seem to be mutated. Here are the mutated foci.Position 32429889 doesn't seem to be mutated. Here are the mutated foci.Position 32435801 doesn't seem to be mutated. Here are the mutated foci.Position 58851210 doesn't seem to be mutated. Here are the mutated foci.Position 58851526 doesn't seem to be mutated. Here are the mutated foci.Position 58854930 doesn't seem to be mutated. Here are the mutated foci.Position 58855211 doesn't seem to be mutated. Here are the mutated foci.Position 58855345 doesn't seem to be mutated. Here are the mutated foci.Position 58855679 doesn't seem to be mutated. Here are the mutated foci.Position 58857209 doesn't seem to be mutated. Here are the mutated foci.Position 58861746 doesn't seem to be mutated. Here are the mutated foci.Position 58865544 doesn't seem to be mutated. Here are the mutated foci.Position 58866048 doesn't seem to be mutated. Here are the mutated foci.Position 58866323 doesn't seem to be mutated. Here are the mutated foci.Position 58875686 doesn't seem to be mutated. Here are the mutated foci.Position 58875980 doesn't seem to be mutated. Here are the mutated foci.Position 58888388 doesn't seem to be mutated. Here are the mutated foci.Position 58889390 doesn't seem to be mutated. Here are the mutated foci.Position 58890544 doesn't seem to be mutated. Here are the mutated foci.Position 58892464 doesn't seem to be mutated. Here are the mutated foci.Position 58893907 doesn't seem to be mutated. Here are the mutated foci.Position 58893913 doesn't seem to be mutated. Here are the mutated foci.Position 58894625 doesn't seem to be mutated. Here are the mutated foci.Position 58901870 doesn't seem to be mutated. Here are the mutated foci.Position 58902664 doesn't seem to be mutated. Here are the mutated foci.Position 58909178 doesn't seem to be mutated. Here are the mutated foci.Position 58912493 doesn't seem to be mutated. Here are the mutated foci.Position 58914104 doesn't seem to be mutated. Here are the mutated foci.Position 34783099 doesn't seem to be mutated. Here are the mutated foci.Position 34784942 doesn't seem to be mutated. Here are the mutated foci.Position 34794173 doesn't seem to be mutated. Here are the mutated foci.Position 34797150 doesn't seem to be mutated. Here are the mutated foci.Position 34798204 doesn't seem to be mutated. Here are the mutated foci.Position 34806399 doesn't seem to be mutated. Here are the mutated foci.Position 34816131 doesn't seem to be mutated. Here are the mutated foci.Position 34819485 doesn't seem to be mutated. Here are the mutated foci.Position 34822057 doesn't seem to be mutated. Here are the mutated foci.Position 34823818 doesn't seem to be mutated. Here are the mutated foci.Position 34824282 doesn't seem to be mutated. Here are the mutated foci.Position 34824760 doesn't seem to be mutated. Here are the mutated foci.Position 34833796 doesn't seem to be mutated. Here are the mutated foci.Position 34834493 doesn't seem to be mutated. Here are the mutated foci.Position 34835019 doesn't seem to be mutated. Here are the mutated foci.Position 34838592 doesn't seem to be mutated. Here are the mutated foci.Position 34839036 doesn't seem to be mutated. Here are the mutated foci.Position 34840352 doesn't seem to be mutated. Here are the mutated foci.Position 34846731 doesn't seem to be mutated. Here are the mutated foci.Position 34849081 doesn't seem to be mutated. Here are the mutated foci.Position 34857390 doesn't seem to be mutated. Here are the mutated foci.Position 34860788 doesn't seem to be mutated. Here are the mutated foci.Position 34863126 doesn't seem to be mutated. Here are the mutated foci.Position 34865735 doesn't seem to be mutated. Here are the mutated foci.Position 34867370 doesn't seem to be mutated. Here are the mutated foci.Position 34870693 doesn't seem to be mutated. Here are the mutated foci.Position 34883343 doesn't seem to be mutated. Here are the mutated foci.Position 34888903 doesn't seem to be mutated. Here are the mutated foci.Position 34890314 doesn't seem to be mutated. Here are the mutated foci.Position 34896109 doesn't seem to be mutated. Here are the mutated foci.Position 34896308 doesn't seem to be mutated. Here are the mutated foci.Position 34897093 doesn't seem to be mutated. Here are the mutated foci.Position 34901378 doesn't seem to be mutated. Here are the mutated foci.Position 34917818 doesn't seem to be mutated. Here are the mutated foci.Position 34919378 doesn't seem to be mutated. Here are the mutated foci.Position 34921005 doesn't seem to be mutated. Here are the mutated foci.Position 34921267 doesn't seem to be mutated. Here are the mutated foci.Position 34926420 doesn't seem to be mutated. Here are the mutated foci.Position 34927921 doesn't seem to be mutated. Here are the mutated foci.Position 34928658 doesn't seem to be mutated. Here are the mutated foci.Position 34931013 doesn't seem to be mutated. Here are the mutated foci.Position 34932644 doesn't seem to be mutated. Here are the mutated foci.Position 34934223 doesn't seem to be mutated. Here are the mutated foci.Position 34936452 doesn't seem to be mutated. Here are the mutated foci.Position 34940750 doesn't seem to be mutated. Here are the mutated foci.Position 34945101 doesn't seem to be mutated. Here are the mutated foci.Position 34946539 doesn't seem to be mutated. Here are the mutated foci.Position 34947776 doesn't seem to be mutated. Here are the mutated foci.Position 34950047 doesn't seem to be mutated. Here are the mutated foci.Position 34952508 doesn't seem to be mutated. Here are the mutated foci.Position 34956795 doesn't seem to be mutated. Here are the mutated foci.Position 34958114 doesn't seem to be mutated. Here are the mutated foci.Position 34958526 doesn't seem to be mutated. Here are the mutated foci.Position 34959557 doesn't seem to be mutated. Here are the mutated foci.Position 34960903 doesn't seem to be mutated. Here are the mutated foci.Position 34961664 doesn't seem to be mutated. Here are the mutated foci.Position 34965288 doesn't seem to be mutated. Here are the mutated foci.Position 34967079 doesn't seem to be mutated. Here are the mutated foci.Position 34967426 doesn't seem to be mutated. Here are the mutated foci.Position 34969951 doesn't seem to be mutated. Here are the mutated foci.Position 34972208 doesn't seem to be mutated. Here are the mutated foci.Position 34972357 doesn't seem to be mutated. Here are the mutated foci.Position 34983266 doesn't seem to be mutated. Here are the mutated foci.Position 34985563 doesn't seem to be mutated. Here are the mutated foci.Position 34990002 doesn't seem to be mutated. Here are the mutated foci.Position 34992688 doesn't seem to be mutated. Here are the mutated foci.Position 34994060 doesn't seem to be mutated. Here are the mutated foci.Position 34997586 doesn't seem to be mutated. Here are the mutated foci.Position 34999993 doesn't seem to be mutated. Here are the mutated foci.Position 34999998 doesn't seem to be mutated. Here are the mutated foci.Position 35001200 doesn't seem to be mutated. Here are the mutated foci.Position 35001261 doesn't seem to be mutated. Here are the mutated foci.Position 35003215 doesn't seem to be mutated. Here are the mutated foci.Position 35003519 doesn't seem to be mutated. Here are the mutated foci.Position 35003530 doesn't seem to be mutated. Here are the mutated foci.Position 35005719 doesn't seem to be mutated. Here are the mutated foci.Position 35009960 doesn't seem to be mutated. Here are the mutated foci.Position 35017468 doesn't seem to be mutated. Here are the mutated foci.Position 35029161 doesn't seem to be mutated. Here are the mutated foci.Position 35038501 doesn't seem to be mutated. Here are the mutated foci.Position 35042738 doesn't seem to be mutated. Here are the mutated foci.Position 35044603 doesn't seem to be mutated. Here are the mutated foci.Position 35046145 doesn't seem to be mutated. Here are the mutated foci.Position 35046470 doesn't seem to be mutated. Here are the mutated foci.Position 35048598 doesn't seem to be mutated. Here are the mutated foci.Position 35063976 doesn't seem to be mutated. Here are the mutated foci.Position 35064062 doesn't seem to be mutated. Here are the mutated foci.Position 35070423 doesn't seem to be mutated. Here are the mutated foci.Position 35071365 doesn't seem to be mutated. Here are the mutated foci.Position 35073796 doesn't seem to be mutated. Here are the mutated foci.Position 35079025 doesn't seem to be mutated. Here are the mutated foci.Position 35081216 doesn't seem to be mutated. Here are the mutated foci.Position 35084530 doesn't seem to be mutated. Here are the mutated foci.Position 35092273 doesn't seem to be mutated. Here are the mutated foci.Position 35095889 doesn't seem to be mutated. Here are the mutated foci.Position 35097602 doesn't seem to be mutated. Here are the mutated foci.Position 35097758 doesn't seem to be mutated. Here are the mutated foci.Position 35101381 doesn't seem to be mutated. Here are the mutated foci.Position 35106586 doesn't seem to be mutated. Here are the mutated foci.Position 35113313 doesn't seem to be mutated. Here are the mutated foci.Position 35116652 doesn't seem to be mutated. Here are the mutated foci.Position 35121407 doesn't seem to be mutated. Here are the mutated foci.Position 35126699 doesn't seem to be mutated. Here are the mutated foci.Position 35127207 doesn't seem to be mutated. Here are the mutated foci.Position 35128144 doesn't seem to be mutated. Here are the mutated foci.Position 35129177 doesn't seem to be mutated. Here are the mutated foci.Position 35130571 doesn't seem to be mutated. Here are the mutated foci.Position 35144472 doesn't seem to be mutated. Here are the mutated foci.Position 35145165 doesn't seem to be mutated. Here are the mutated foci.Position 35153058 doesn't seem to be mutated. Here are the mutated foci.Position 35158969 doesn't seem to be mutated. Here are the mutated foci.Position 35159605 doesn't seem to be mutated. Here are the mutated foci.Position 35162354 doesn't seem to be mutated. Here are the mutated foci.Position 35169998 doesn't seem to be mutated. Here are the mutated foci.Position 35170676 doesn't seem to be mutated. Here are the mutated foci.Position 35171184 doesn't seem to be mutated. Here are the mutated foci.Position 35175187 doesn't seem to be mutated. Here are the mutated foci.Position 35176229 doesn't seem to be mutated. Here are the mutated foci.Position 35180271 doesn't seem to be mutated. Here are the mutated foci.Position 35184497 doesn't seem to be mutated. Here are the mutated foci.Position 35187568 doesn't seem to be mutated. Here are the mutated foci.Position 35190921 doesn't seem to be mutated. Here are the mutated foci.Position 35194000 doesn't seem to be mutated. Here are the mutated foci.Position 35199441 doesn't seem to be mutated. Here are the mutated foci.Position 35206663 doesn't seem to be mutated. Here are the mutated foci.Position 35213190 doesn't seem to be mutated. Here are the mutated foci.Position 35216691 doesn't seem to be mutated. Here are the mutated foci.Position 35230932 doesn't seem to be mutated. Here are the mutated foci.Position 35232018 doesn't seem to be mutated. Here are the mutated foci.Position 35232698 doesn't seem to be mutated. Here are the mutated foci.Position 35233116 doesn't seem to be mutated. Here are the mutated foci.Position 35237673 doesn't seem to be mutated. Here are the mutated foci.Position 35249412 doesn't seem to be mutated. Here are the mutated foci.Position 35254464 doesn't seem to be mutated. Here are the mutated foci.Position 35256597 doesn't seem to be mutated. Here are the mutated foci.Position 35257001 doesn't seem to be mutated. Here are the mutated foci.Position 35257805 doesn't seem to be mutated. Here are the mutated foci.Position 35272148 doesn't seem to be mutated. Here are the mutated foci.Position 35272861 doesn't seem to be mutated. Here are the mutated foci.Position 35276411 doesn't seem to be mutated. Here are the mutated foci.Position 35276589 doesn't seem to be mutated. Here are the mutated foci.Position 35278651 doesn't seem to be mutated. Here are the mutated foci.Position 35279405 doesn't seem to be mutated. Here are the mutated foci.Position 35281026 doesn't seem to be mutated. Here are the mutated foci.Position 35281148 doesn't seem to be mutated. Here are the mutated foci.Position 35282248 doesn't seem to be mutated. Here are the mutated foci.Position 35284110 doesn't seem to be mutated. Here are the mutated foci.Position 35286275 doesn't seem to be mutated. Here are the mutated foci.Position 35286522 doesn't seem to be mutated. Here are the mutated foci.Position 35288315 doesn't seem to be mutated. Here are the mutated foci.Position 35288801 doesn't seem to be mutated. Here are the mutated foci.Position 35290834 doesn't seem to be mutated. Here are the mutated foci.Position 35291457 doesn't seem to be mutated. Here are the mutated foci.Position 35296940 doesn't seem to be mutated. Here are the mutated foci.Position 35297083 doesn't seem to be mutated. Here are the mutated foci.Position 35301230 doesn't seem to be mutated. Here are the mutated foci.Position 35305488 doesn't seem to be mutated. Here are the mutated foci.Position 35308944 doesn't seem to be mutated. Here are the mutated foci.Position 35309301 doesn't seem to be mutated. Here are the mutated foci.Position 35310986 doesn't seem to be mutated. Here are the mutated foci.Position 35311469 doesn't seem to be mutated. Here are the mutated foci.Position 35317136 doesn't seem to be mutated. Here are the mutated foci.Position 35318988 doesn't seem to be mutated. Here are the mutated foci.Position 35325953 doesn't seem to be mutated. Here are the mutated foci.Position 35329266 doesn't seem to be mutated. Here are the mutated foci.Position 35330520 doesn't seem to be mutated. Here are the mutated foci.Position 35339203 doesn't seem to be mutated. Here are the mutated foci.Position 35352535 doesn't seem to be mutated. Here are the mutated foci.Position 35354285 doesn't seem to be mutated. Here are the mutated foci.Position 35355373 doesn't seem to be mutated. Here are the mutated foci.Position 35355621 doesn't seem to be mutated. Here are the mutated foci.Position 35360716 doesn't seem to be mutated. Here are the mutated foci.Position 35368500 doesn't seem to be mutated. Here are the mutated foci.Position 35378718 doesn't seem to be mutated. Here are the mutated foci.Position 35379860 doesn't seem to be mutated. Here are the mutated foci.Position 35383267 doesn't seem to be mutated. Here are the mutated foci.Position 35385863 doesn't seem to be mutated. Here are the mutated foci.Position 35386079 doesn't seem to be mutated. Here are the mutated foci.Position 35399614 doesn't seem to be mutated. Here are the mutated foci.Position 35400239 doesn't seem to be mutated. Here are the mutated foci.Position 35407019 doesn't seem to be mutated. Here are the mutated foci.Position 35409513 doesn't seem to be mutated. Here are the mutated foci.Position 35409845 doesn't seem to be mutated. Here are the mutated foci.Position 35412072 doesn't seem to be mutated. Here are the mutated foci.Position 35413280 doesn't seem to be mutated. Here are the mutated foci.Position 35415511 doesn't seem to be mutated. Here are the mutated foci.Position 35422448 doesn't seem to be mutated. Here are the mutated foci.Position 35424341 doesn't seem to be mutated. Here are the mutated foci.Position 35431168 doesn't seem to be mutated. Here are the mutated foci.Position 35433491 doesn't seem to be mutated. Here are the mutated foci.Position 35433512 doesn't seem to be mutated. Here are the mutated foci.Position 35433847 doesn't seem to be mutated. Here are the mutated foci.Position 35435350 doesn't seem to be mutated. Here are the mutated foci.Position 35437773 doesn't seem to be mutated. Here are the mutated foci.Position 35442140 doesn't seem to be mutated. Here are the mutated foci.Position 35444930 doesn't seem to be mutated. Here are the mutated foci.Position 35456078 doesn't seem to be mutated. Here are the mutated foci.Position 35463307 doesn't seem to be mutated. Here are the mutated foci.Position 35463919 doesn't seem to be mutated. Here are the mutated foci.Position 35485931 doesn't seem to be mutated. Here are the mutated foci.Position 35486676 doesn't seem to be mutated. Here are the mutated foci.Position 35486907 doesn't seem to be mutated. Here are the mutated foci.Position 35488376 doesn't seem to be mutated. Here are the mutated foci.Position 35488817 doesn't seem to be mutated. Here are the mutated foci.Position 35489420 doesn't seem to be mutated. Here are the mutated foci.Position 35494567 doesn't seem to be mutated. Here are the mutated foci.Position 35499265 doesn't seem to be mutated. Here are the mutated foci.Position 35499771 doesn't seem to be mutated. Here are the mutated foci.Position 35509757 doesn't seem to be mutated. Here are the mutated foci.Position 35513117 doesn't seem to be mutated. Here are the mutated foci.Position 35519962 doesn't seem to be mutated. Here are the mutated foci.Position 35528877 doesn't seem to be mutated. Here are the mutated foci.Position 35534484 doesn't seem to be mutated. Here are the mutated foci.Position 35536990 doesn't seem to be mutated. Here are the mutated foci.Position 35537292 doesn't seem to be mutated. Here are the mutated foci.Position 35543833 doesn't seem to be mutated. Here are the mutated foci.Position 35549558 doesn't seem to be mutated. Here are the mutated foci.Position 35564999 doesn't seem to be mutated. Here are the mutated foci.Position 35565360 doesn't seem to be mutated. Here are the mutated foci.Position 35567907 doesn't seem to be mutated. Here are the mutated foci.Position 35574761 doesn't seem to be mutated. Here are the mutated foci.Position 35575431 doesn't seem to be mutated. Here are the mutated foci.Position 35577728 doesn't seem to be mutated. Here are the mutated foci.Position 35577764 doesn't seem to be mutated. Here are the mutated foci.Position 35581516 doesn't seem to be mutated. Here are the mutated foci.Position 35585367 doesn't seem to be mutated. Here are the mutated foci.Position 35607391 doesn't seem to be mutated. Here are the mutated foci.Position 35611243 doesn't seem to be mutated. Here are the mutated foci.Position 35611309 doesn't seem to be mutated. Here are the mutated foci.Position 35616273 doesn't seem to be mutated. Here are the mutated foci.Position 35621539 doesn't seem to be mutated. Here are the mutated foci.Position 35622485 doesn't seem to be mutated. Here are the mutated foci.Position 35627436 doesn't seem to be mutated. Here are the mutated foci.Position 35634116 doesn't seem to be mutated. Here are the mutated foci.Position 35635553 doesn't seem to be mutated. Here are the mutated foci.Position 35637987 doesn't seem to be mutated. Here are the mutated foci.Position 35638833 doesn't seem to be mutated. Here are the mutated foci.Position 35644078 doesn't seem to be mutated. Here are the mutated foci.Position 35647949 doesn't seem to be mutated. Here are the mutated foci.Position 35651481 doesn't seem to be mutated. Here are the mutated foci.Position 35654852 doesn't seem to be mutated. Here are the mutated foci.Position 35654869 doesn't seem to be mutated. Here are the mutated foci.Position 35655275 doesn't seem to be mutated. Here are the mutated foci.Position 35657895 doesn't seem to be mutated. Here are the mutated foci.Position 35658517 doesn't seem to be mutated. Here are the mutated foci.Position 35659784 doesn't seem to be mutated. Here are the mutated foci.Position 35665700 doesn't seem to be mutated. Here are the mutated foci.Position 35665984 doesn't seem to be mutated. Here are the mutated foci.Position 35666304 doesn't seem to be mutated. Here are the mutated foci.Position 35667700 doesn't seem to be mutated. Here are the mutated foci.Position 35676152 doesn't seem to be mutated. Here are the mutated foci.Position 35681075 doesn't seem to be mutated. Here are the mutated foci.Position 35683658 doesn't seem to be mutated. Here are the mutated foci.Position 35683867 doesn't seem to be mutated. Here are the mutated foci.Position 35684488 doesn't seem to be mutated. Here are the mutated foci.Position 35685254 doesn't seem to be mutated. Here are the mutated foci.Position 35694995 doesn't seem to be mutated. Here are the mutated foci.Position 35696237 doesn't seem to be mutated. Here are the mutated foci.Position 35699469 doesn't seem to be mutated. Here are the mutated foci.Position 35707959 doesn't seem to be mutated. Here are the mutated foci.Position 35748189 doesn't seem to be mutated. Here are the mutated foci.Position 35749181 doesn't seem to be mutated. Here are the mutated foci.Position 35749708 doesn't seem to be mutated. Here are the mutated foci.Position 35749834 doesn't seem to be mutated. Here are the mutated foci.Position 35752041 doesn't seem to be mutated. Here are the mutated foci.Position 35753330 doesn't seem to be mutated. Here are the mutated foci.Position 35753929 doesn't seem to be mutated. Here are the mutated foci.Position 35755611 doesn't seem to be mutated. Here are the mutated foci.Position 35755786 doesn't seem to be mutated. Here are the mutated foci.Position 35757637 doesn't seem to be mutated. Here are the mutated foci.Position 35757924 doesn't seem to be mutated. Here are the mutated foci.Position 35770265 doesn't seem to be mutated. Here are the mutated foci.Position 35771468 doesn't seem to be mutated. Here are the mutated foci.Position 35771686 doesn't seem to be mutated. Here are the mutated foci.Position 35774196 doesn't seem to be mutated. Here are the mutated foci.Position 35779179 doesn't seem to be mutated. Here are the mutated foci.Position 35780533 doesn't seem to be mutated. Here are the mutated foci.Position 35784177 doesn't seem to be mutated. Here are the mutated foci.Position 35789484 doesn't seem to be mutated. Here are the mutated foci.Position 35790910 doesn't seem to be mutated. Here are the mutated foci.Position 35794675 doesn't seem to be mutated. Here are the mutated foci.Position 35797195 doesn't seem to be mutated. Here are the mutated foci.Position 35805038 doesn't seem to be mutated. Here are the mutated foci.Position 35806640 doesn't seem to be mutated. Here are the mutated foci.Position 35808559 doesn't seem to be mutated. Here are the mutated foci.Position 35811908 doesn't seem to be mutated. Here are the mutated foci.Position 35813876 doesn't seem to be mutated. Here are the mutated foci.Position 35820477 doesn't seem to be mutated. Here are the mutated foci.Position 35821957 doesn't seem to be mutated. Here are the mutated foci.Position 35822357 doesn't seem to be mutated. Here are the mutated foci.Position 35824981 doesn't seem to be mutated. Here are the mutated foci.Position 35825531 doesn't seem to be mutated. Here are the mutated foci.Position 35826589 doesn't seem to be mutated. Here are the mutated foci.Position 35827704 doesn't seem to be mutated. Here are the mutated foci.Position 35828206 doesn't seem to be mutated. Here are the mutated foci.Position 35836536 doesn't seem to be mutated. Here are the mutated foci.Position 35839038 doesn't seem to be mutated. Here are the mutated foci.Position 35846022 doesn't seem to be mutated. Here are the mutated foci.Position 35847867 doesn't seem to be mutated. Here are the mutated foci.Position 35848912 doesn't seem to be mutated. Here are the mutated foci.Position 35849269 doesn't seem to be mutated. Here are the mutated foci.Position 35855376 doesn't seem to be mutated. Here are the mutated foci.Position 35862168 doesn't seem to be mutated. Here are the mutated foci.Position 35873171 doesn't seem to be mutated. Here are the mutated foci.Position 35873299 doesn't seem to be mutated. Here are the mutated foci.Position 35876291 doesn't seem to be mutated. Here are the mutated foci.Position 35893701 doesn't seem to be mutated. Here are the mutated foci.Position 35898036 doesn't seem to be mutated. Here are the mutated foci.Position 35898370 doesn't seem to be mutated. Here are the mutated foci.Position 35904738 doesn't seem to be mutated. Here are the mutated foci.Position 35911830 doesn't seem to be mutated. Here are the mutated foci.Position 35912789 doesn't seem to be mutated. Here are the mutated foci.Position 35915039 doesn't seem to be mutated. Here are the mutated foci.Position 35918453 doesn't seem to be mutated. Here are the mutated foci.Position 35918514 doesn't seem to be mutated. Here are the mutated foci.Position 35920732 doesn't seem to be mutated. Here are the mutated foci.Position 35925295 doesn't seem to be mutated. Here are the mutated foci.Position 35926827 doesn't seem to be mutated. Here are the mutated foci.Position 35930506 doesn't seem to be mutated. Here are the mutated foci.Position 35935592 doesn't seem to be mutated. Here are the mutated foci.Position 35936617 doesn't seem to be mutated. Here are the mutated foci.Position 35941186 doesn't seem to be mutated. Here are the mutated foci.Position 35942964 doesn't seem to be mutated. Here are the mutated foci.Position 35952413 doesn't seem to be mutated. Here are the mutated foci.Position 35954489 doesn't seem to be mutated. Here are the mutated foci.Position 35959711 doesn't seem to be mutated. Here are the mutated foci.Position 35961209 doesn't seem to be mutated. Here are the mutated foci.Position 35965023 doesn't seem to be mutated. Here are the mutated foci.Position 35970794 doesn't seem to be mutated. Here are the mutated foci.Position 35983249 doesn't seem to be mutated. Here are the mutated foci.Position 35983828 doesn't seem to be mutated. Here are the mutated foci.Position 35988339 doesn't seem to be mutated. Here are the mutated foci.Position 36000326 doesn't seem to be mutated. Here are the mutated foci.Position 20996920 doesn't seem to be mutated. Here are the mutated foci.Position 20996998 doesn't seem to be mutated. Here are the mutated foci.Position 20997425 doesn't seem to be mutated. Here are the mutated foci.Position 23790802 doesn't seem to be mutated. Here are the mutated foci.Position 23794345 doesn't seem to be mutated. Here are the mutated foci.Position 23795377 doesn't seem to be mutated. Here are the mutated foci.Position 23796638 doesn't seem to be mutated. Here are the mutated foci.Position 23797144 doesn't seem to be mutated. Here are the mutated foci.Position 23799072 doesn't seem to be mutated. Here are the mutated foci.Position 23799935 doesn't seem to be mutated. Here are the mutated foci.Position 23804583 doesn't seem to be mutated. Here are the mutated foci.Position 23805654 doesn't seem to be mutated. Here are the mutated foci.Position 23805712 doesn't seem to be mutated. Here are the mutated foci.Position 23806441 doesn't seem to be mutated. Here are the mutated foci.Position 23806787 doesn't seem to be mutated. Here are the mutated foci.Position 23807580 doesn't seem to be mutated. Here are the mutated foci.Position 23809606 doesn't seem to be mutated. Here are the mutated foci.Position 23814665 doesn't seem to be mutated. Here are the mutated foci.Position 23818592 doesn't seem to be mutated. Here are the mutated foci.Position 23821829 doesn't seem to be mutated. Here are the mutated foci.Position 23825490 doesn't seem to be mutated. Here are the mutated foci.Position 23827306 doesn't seem to be mutated. Here are the mutated foci.Position 23829040 doesn't seem to be mutated. Here are the mutated foci.Position 23830282 doesn't seem to be mutated. Here are the mutated foci.Position 28686565 doesn't seem to be mutated. Here are the mutated foci.Position 28690403 doesn't seem to be mutated. Here are the mutated foci.Position 28691058 doesn't seem to be mutated. Here are the mutated foci.Position 28693095 doesn't seem to be mutated. Here are the mutated foci.Position 28693858 doesn't seem to be mutated. Here are the mutated foci.Position 28697259 doesn't seem to be mutated. Here are the mutated foci.Position 28703544 doesn't seem to be mutated. Here are the mutated foci.Position 28706418 doesn't seem to be mutated. Here are the mutated foci.Position 28709823 doesn't seem to be mutated. Here are the mutated foci.Position 28723442 doesn't seem to be mutated. Here are the mutated foci.Position 28723546 doesn't seem to be mutated. Here are the mutated foci.Position 28726884 doesn't seem to be mutated. Here are the mutated foci.Position 28729414 doesn't seem to be mutated. Here are the mutated foci.Position 28735261 doesn't seem to be mutated. Here are the mutated foci.Position 28739275 doesn't seem to be mutated. Here are the mutated foci.Position 29598803 doesn't seem to be mutated. Here are the mutated foci.Position 29600656 doesn't seem to be mutated. Here are the mutated foci.Position 29600722 doesn't seem to be mutated. Here are the mutated foci.Position 29600788 doesn't seem to be mutated. Here are the mutated foci.Position 29602218 doesn't seem to be mutated. Here are the mutated foci.Position 29602337 doesn't seem to be mutated. Here are the mutated foci.Position 29602509 doesn't seem to be mutated. Here are the mutated foci.Position 29602625 doesn't seem to be mutated. Here are the mutated foci.Position 29603408 doesn't seem to be mutated. Here are the mutated foci.Position 29605309 doesn't seem to be mutated. Here are the mutated foci.Position 29607937 doesn't seem to be mutated. Here are the mutated foci.Position 29609171 doesn't seem to be mutated. Here are the mutated foci.Position 29613025 doesn't seem to be mutated. Here are the mutated foci.Position 29622800 doesn't seem to be mutated. Here are the mutated foci.Position 29623846 doesn't seem to be mutated. Here are the mutated foci.Position 29626404 doesn't seem to be mutated. Here are the mutated foci.Position 29626923 doesn't seem to be mutated. Here are the mutated foci.Position 29628403 doesn't seem to be mutated. Here are the mutated foci.Position 29631265 doesn't seem to be mutated. Here are the mutated foci.Position 29639711 doesn't seem to be mutated. Here are the mutated foci.Position 29644129 doesn't seem to be mutated. Here are the mutated foci.Position 29644739 doesn't seem to be mutated. Here are the mutated foci.Position 29650277 doesn't seem to be mutated. Here are the mutated foci.Position 29653401 doesn't seem to be mutated. Here are the mutated foci.Position 29655339 doesn't seem to be mutated. Here are the mutated foci.Position 29655613 doesn't seem to be mutated. Here are the mutated foci.Position 29661266 doesn't seem to be mutated. Here are the mutated foci.Position 29664083 doesn't seem to be mutated. Here are the mutated foci.Position 29665756 doesn't seem to be mutated. Here are the mutated foci.Position 29666567 doesn't seem to be mutated. Here are the mutated foci.Position 29670759 doesn't seem to be mutated. Here are the mutated foci.Position 29674287 doesn't seem to be mutated. Here are the mutated foci.Position 29681659 doesn't seem to be mutated. Here are the mutated foci.Position 29687090 doesn't seem to be mutated. Here are the mutated foci.Position 29687349 doesn't seem to be mutated. Here are the mutated foci.Position 29687679 doesn't seem to be mutated. Here are the mutated foci.Position 29690355 doesn't seem to be mutated. Here are the mutated foci.Position 29690854 doesn't seem to be mutated. Here are the mutated foci.Position 29702274 doesn't seem to be mutated. Here are the mutated foci.Position 37979020 doesn't seem to be mutated. Here are the mutated foci.Position 37979427 doesn't seem to be mutated. Here are the mutated foci.Position 41089991 doesn't seem to be mutated. Here are the mutated foci.Position 41097793 doesn't seem to be mutated. Here are the mutated foci.Position 41099285 doesn't seem to be mutated. Here are the mutated foci.Position 41099492 doesn't seem to be mutated. Here are the mutated foci.Position 41100247 doesn't seem to be mutated. Here are the mutated foci.Position 41104886 doesn't seem to be mutated. Here are the mutated foci.Position 41108309 doesn't seem to be mutated. Here are the mutated foci.Position 41108997 doesn't seem to be mutated. Here are the mutated foci.Position 41109232 doesn't seem to be mutated. Here are the mutated foci.Position 41112221 doesn't seem to be mutated. Here are the mutated foci.Position 41115432 doesn't seem to be mutated. Here are the mutated foci.Position 41115835 doesn't seem to be mutated. Here are the mutated foci.Position 41119802 doesn't seem to be mutated. Here are the mutated foci.Position 41122621 doesn't seem to be mutated. Here are the mutated foci.Position 41130553 doesn't seem to be mutated. Here are the mutated foci.Position 41136593 doesn't seem to be mutated. Here are the mutated foci.Position 41140754 doesn't seem to be mutated. Here are the mutated foci.Position 41150183 doesn't seem to be mutated. Here are the mutated foci.Position 41155227 doesn't seem to be mutated. Here are the mutated foci.Position 41158444 doesn't seem to be mutated. Here are the mutated foci.Position 41159491 doesn't seem to be mutated. Here are the mutated foci.Position 41170930 doesn't seem to be mutated. Here are the mutated foci.Position 41175920 doesn't seem to be mutated. Here are the mutated foci.Position 41176998 doesn't seem to be mutated. Here are the mutated foci.Position 41180498 doesn't seem to be mutated. Here are the mutated foci.Position 41181073 doesn't seem to be mutated. Here are the mutated foci.Position 41184548 doesn't seem to be mutated. Here are the mutated foci.Position 41184613 doesn't seem to be mutated. Here are the mutated foci.Position 14839085 doesn't seem to be mutated. Here are the mutated foci.Position 14841734 doesn't seem to be mutated. Here are the mutated foci.Position 14844205 doesn't seem to be mutated. Here are the mutated foci.Position 14850960 doesn't seem to be mutated. Here are the mutated foci.Position 14853055 doesn't seem to be mutated. Here are the mutated foci.Position 14853563 doesn't seem to be mutated. Here are the mutated foci.Position 14854231 doesn't seem to be mutated. Here are the mutated foci.Position 14864135 doesn't seem to be mutated. Here are the mutated foci.Position 14866207 doesn't seem to be mutated. Here are the mutated foci.Position 14867414 doesn't seem to be mutated. Here are the mutated foci.Position 14872931 doesn't seem to be mutated. Here are the mutated foci.Position 48675980 doesn't seem to be mutated. Here are the mutated foci.Position 48676415 doesn't seem to be mutated. Here are the mutated foci.Position 48676525 doesn't seem to be mutated. Here are the mutated foci.Position 48687717 doesn't seem to be mutated. Here are the mutated foci.Position 48688395 doesn't seem to be mutated. Here are the mutated foci.Position 48688513 doesn't seem to be mutated. Here are the mutated foci.Position 77500757 doesn't seem to be mutated. Here are the mutated foci.Position 77505670 doesn't seem to be mutated. Here are the mutated foci.Position 77508988 doesn't seem to be mutated. Here are the mutated foci.Position 77510847 doesn't seem to be mutated. Here are the mutated foci.Position 77511252 doesn't seem to be mutated. Here are the mutated foci.Position 77513415 doesn't seem to be mutated. Here are the mutated foci.Position 77515424 doesn't seem to be mutated. Here are the mutated foci.Position 77517245 doesn't seem to be mutated. Here are the mutated foci.Position 77520876 doesn't seem to be mutated. Here are the mutated foci.Position 77524859 doesn't seem to be mutated. Here are the mutated foci.Position 77527703 doesn't seem to be mutated. Here are the mutated foci.Position 77532445 doesn't seem to be mutated. Here are the mutated foci.Position 77533784 doesn't seem to be mutated. Here are the mutated foci.Position 77535725 doesn't seem to be mutated. Here are the mutated foci.Position 77538795 doesn't seem to be mutated. Here are the mutated foci.Position 77542607 doesn't seem to be mutated. Here are the mutated foci.Position 77547321 doesn't seem to be mutated. Here are the mutated foci.Position 77549865 doesn't seem to be mutated. Here are the mutated foci.Position 77553395 doesn't seem to be mutated. Here are the mutated foci.Position 77554326 doesn't seem to be mutated. Here are the mutated foci.Position 77554458 doesn't seem to be mutated. Here are the mutated foci.Position 77564180 doesn't seem to be mutated. Here are the mutated foci.Position 77567222 doesn't seem to be mutated. Here are the mutated foci.Position 77569136 doesn't seem to be mutated. Here are the mutated foci.Position 77575995 doesn't seem to be mutated. Here are the mutated foci.Position 77576221 doesn't seem to be mutated. Here are the mutated foci.Position 77577287 doesn't seem to be mutated. Here are the mutated foci.Position 77577939 doesn't seem to be mutated. Here are the mutated foci.Position 77578007 doesn't seem to be mutated. Here are the mutated foci.Position 77579290 doesn't seem to be mutated. Here are the mutated foci.Position 77583149 doesn't seem to be mutated. Here are the mutated foci.Position 77583823 doesn't seem to be mutated. Here are the mutated foci.Position 77585556 doesn't seem to be mutated. Here are the mutated foci.Position 77586731 doesn't seem to be mutated. Here are the mutated foci.Position 77587311 doesn't seem to be mutated. Here are the mutated foci.Position 77587686 doesn't seem to be mutated. Here are the mutated foci.Position 77588830 doesn't seem to be mutated. Here are the mutated foci.Position 77590649 doesn't seem to be mutated. Here are the mutated foci.Position 77605300 doesn't seem to be mutated. Here are the mutated foci.Position 77605491 doesn't seem to be mutated. Here are the mutated foci.Position 77610216 doesn't seem to be mutated. Here are the mutated foci.Position 77612219 doesn't seem to be mutated. Here are the mutated foci.Position 77613260 doesn't seem to be mutated. Here are the mutated foci.Position 77617944 doesn't seem to be mutated. Here are the mutated foci.Position 77621559 doesn't seem to be mutated. Here are the mutated foci.Position 77622773 doesn't seem to be mutated. Here are the mutated foci.Position 77634849 doesn't seem to be mutated. Here are the mutated foci.Position 77638039 doesn't seem to be mutated. Here are the mutated foci.Position 77643017 doesn't seem to be mutated. Here are the mutated foci.Position 77643299 doesn't seem to be mutated. Here are the mutated foci.Position 77645728 doesn't seem to be mutated. Here are the mutated foci.Position 77651534 doesn't seem to be mutated. Here are the mutated foci.Position 77652323 doesn't seem to be mutated. Here are the mutated foci.Position 77652457 doesn't seem to be mutated. Here are the mutated foci.Position 77652738 doesn't seem to be mutated. Here are the mutated foci.Position 77652755 doesn't seem to be mutated. Here are the mutated foci.Position 77654862 doesn't seem to be mutated. Here are the mutated foci.Position 77658766 doesn't seem to be mutated. Here are the mutated foci.Position 77659063 doesn't seem to be mutated. Here are the mutated foci.Position 77660225 doesn't seem to be mutated. Here are the mutated foci.Position 77660545 doesn't seem to be mutated. Here are the mutated foci.Position 77660697 doesn't seem to be mutated. Here are the mutated foci.Position 77662943 doesn't seem to be mutated. Here are the mutated foci.Position 77664245 doesn't seem to be mutated. Here are the mutated foci.Position 77671294 doesn't seem to be mutated. Here are the mutated foci.Position 77678972 doesn't seem to be mutated. Here are the mutated foci.Position 77681129 doesn't seem to be mutated. Here are the mutated foci.Position 77681939 doesn't seem to be mutated. Here are the mutated foci.Position 77683587 doesn't seem to be mutated. Here are the mutated foci.Position 77684166 doesn't seem to be mutated. Here are the mutated foci.Position 77685901 doesn't seem to be mutated. Here are the mutated foci.Position 77686286 doesn't seem to be mutated. Here are the mutated foci.Position 77688422 doesn't seem to be mutated. Here are the mutated foci.Position 77688629 doesn't seem to be mutated. Here are the mutated foci.Position 77689553 doesn't seem to be mutated. Here are the mutated foci.Position 77690080 doesn't seem to be mutated. Here are the mutated foci.Position 77693124 doesn't seem to be mutated. Here are the mutated foci.Position 77694110 doesn't seem to be mutated. Here are the mutated foci.Position 77697006 doesn't seem to be mutated. Here are the mutated foci.Position 77700797 doesn't seem to be mutated. Here are the mutated foci.Position 77705981 doesn't seem to be mutated. Here are the mutated foci.Position 77705993 doesn't seem to be mutated. Here are the mutated foci.Position 77706603 doesn't seem to be mutated. Here are the mutated foci.Position 77706741 doesn't seem to be mutated. Here are the mutated foci.Position 77709380 doesn't seem to be mutated. Here are the mutated foci.Position 77712454 doesn't seem to be mutated. Here are the mutated foci.Position 77717076 doesn't seem to be mutated. Here are the mutated foci.Position 77719098 doesn't seem to be mutated. Here are the mutated foci.Position 77723022 doesn't seem to be mutated. Here are the mutated foci.Position 77723615 doesn't seem to be mutated. Here are the mutated foci.Position 77724156 doesn't seem to be mutated. Here are the mutated foci.Position 77724397 doesn't seem to be mutated. Here are the mutated foci.Position 77725814 doesn't seem to be mutated. Here are the mutated foci.Position 77726242 doesn't seem to be mutated. Here are the mutated foci.Position 77726330 doesn't seem to be mutated. Here are the mutated foci.Position 77727534 doesn't seem to be mutated. Here are the mutated foci.Position 77727731 doesn't seem to be mutated. Here are the mutated foci.Position 77729787 doesn't seem to be mutated. Here are the mutated foci.Position 77739525 doesn't seem to be mutated. Here are the mutated foci.Position 77743097 doesn't seem to be mutated. Here are the mutated foci.Position 77743247 doesn't seem to be mutated. Here are the mutated foci.Position 77744693 doesn't seem to be mutated. Here are the mutated foci.Position 77746958 doesn't seem to be mutated. Here are the mutated foci.Position 77749240 doesn't seem to be mutated. Here are the mutated foci.Position 77749276 doesn't seem to be mutated. Here are the mutated foci.Position 77751875 doesn't seem to be mutated. Here are the mutated foci.Position 77761308 doesn't seem to be mutated. Here are the mutated foci.Position 77763473 doesn't seem to be mutated. Here are the mutated foci.Position 77764250 doesn't seem to be mutated. Here are the mutated foci.Position 77765671 doesn't seem to be mutated. Here are the mutated foci.Position 77766469 doesn't seem to be mutated. Here are the mutated foci.Position 77766935 doesn't seem to be mutated. Here are the mutated foci.Position 77768297 doesn't seem to be mutated. Here are the mutated foci.Position 77768889 doesn't seem to be mutated. Here are the mutated foci.Position 77770529 doesn't seem to be mutated. Here are the mutated foci.Position 77772487 doesn't seem to be mutated. Here are the mutated foci.Position 77776965 doesn't seem to be mutated. Here are the mutated foci.Position 77777241 doesn't seem to be mutated. Here are the mutated foci.Position 77777354 doesn't seem to be mutated. Here are the mutated foci.Position 77780492 doesn't seem to be mutated. Here are the mutated foci.Position 77780537 doesn't seem to be mutated. Here are the mutated foci.Position 77780938 doesn't seem to be mutated. Here are the mutated foci.Position 77787465 doesn't seem to be mutated. Here are the mutated foci.Position 77788802 doesn't seem to be mutated. Here are the mutated foci.Position 77789148 doesn't seem to be mutated. Here are the mutated foci.Position 77789801 doesn't seem to be mutated. Here are the mutated foci.Position 124246262 doesn't seem to be mutated. Here are the mutated foci.Position 124342754 doesn't seem to be mutated. Here are the mutated foci.Position 124343999 doesn't seem to be mutated. Here are the mutated foci.Position 124347523 doesn't seem to be mutated. Here are the mutated foci.Position 124348139 doesn't seem to be mutated. Here are the mutated foci.Position 124350054 doesn't seem to be mutated. Here are the mutated foci.Position 124357334 doesn't seem to be mutated. Here are the mutated foci.Position 124357765 doesn't seem to be mutated. Here are the mutated foci.Position 124359912 doesn't seem to be mutated. Here are the mutated foci.Position 124366937 doesn't seem to be mutated. Here are the mutated foci.Position 124368436 doesn't seem to be mutated. Here are the mutated foci.Position 124372229 doesn't seem to be mutated. Here are the mutated foci.Position 124374447 doesn't seem to be mutated. Here are the mutated foci.Position 124374650 doesn't seem to be mutated. Here are the mutated foci.Position 133296141 doesn't seem to be mutated. Here are the mutated foci.Position 133313556 doesn't seem to be mutated. Here are the mutated foci.Position 133314949 doesn't seem to be mutated. Here are the mutated foci.Position 133320258 doesn't seem to be mutated. Here are the mutated foci.Position 133320692 doesn't seem to be mutated. Here are the mutated foci.Position 133327277 doesn't seem to be mutated. Here are the mutated foci.Position 133327311 doesn't seem to be mutated. Here are the mutated foci.Position 133328462 doesn't seem to be mutated. Here are the mutated foci.Position 133328574 doesn't seem to be mutated. Here are the mutated foci.Position 133328617 doesn't seem to be mutated. Here are the mutated foci.Position 133330667 doesn't seem to be mutated. Here are the mutated foci.Position 133334424 doesn't seem to be mutated. Here are the mutated foci.Position 133335265 doesn't seem to be mutated. Here are the mutated foci.Position 133337252 doesn't seem to be mutated. Here are the mutated foci.Position 133341992 doesn't seem to be mutated. Here are the mutated foci.Position 133344392 doesn't seem to be mutated. Here are the mutated foci.Position 133351670 doesn't seem to be mutated. Here are the mutated foci.Position 133354593 doesn't seem to be mutated. Here are the mutated foci.Position 133355591 doesn't seem to be mutated. Here are the mutated foci.Position 133358689 doesn't seem to be mutated. Here are the mutated foci.Position 133370252 doesn't seem to be mutated. Here are the mutated foci.Position 133372876 doesn't seem to be mutated. Here are the mutated foci.Position 133375488 doesn't seem to be mutated. Here are the mutated foci.Position 133378085 doesn't seem to be mutated. Here are the mutated foci.Position 133379585 doesn't seem to be mutated. Here are the mutated foci.Position 133380482 doesn't seem to be mutated. Here are the mutated foci.Position 133381101 doesn't seem to be mutated. Here are the mutated foci.Position 133381809 doesn't seem to be mutated. Here are the mutated foci.Position 133382454 doesn't seem to be mutated. Here are the mutated foci.Position 133382789 doesn't seem to be mutated. Here are the mutated foci.Position 133383033 doesn't seem to be mutated. Here are the mutated foci.Position 133384319 doesn't seem to be mutated. Here are the mutated foci.Position 133385560 doesn't seem to be mutated. Here are the mutated foci.Position 133385701 doesn't seem to be mutated. Here are the mutated foci.Position 133387648 doesn't seem to be mutated. Here are the mutated foci.Position 133392106 doesn't seem to be mutated. Here are the mutated foci.Position 133394929 doesn't seem to be mutated. Here are the mutated foci.Position 133398004 doesn't seem to be mutated. Here are the mutated foci.Position 133398554 doesn't seem to be mutated. Here are the mutated foci.Position 133409794 doesn't seem to be mutated. Here are the mutated foci.Position 133532798 doesn't seem to be mutated. Here are the mutated foci.Position 133535763 doesn't seem to be mutated. Here are the mutated foci.Position 133541258 doesn't seem to be mutated. Here are the mutated foci.Position 133544306 doesn't seem to be mutated. Here are the mutated foci.Position 133544519 doesn't seem to be mutated. Here are the mutated foci.Position 133545911 doesn't seem to be mutated. Here are the mutated foci.Position 133547927 doesn't seem to be mutated. Here are the mutated foci.Position 133548684 doesn't seem to be mutated. Here are the mutated foci.Position 133555215 doesn't seem to be mutated. Here are the mutated foci.Position 133555817 doesn't seem to be mutated. Here are the mutated foci.Position 133558343 doesn't seem to be mutated. Here are the mutated foci.Position 133558620 doesn't seem to be mutated. Here are the mutated foci.Position 133560599 doesn't seem to be mutated. Here are the mutated foci.Position 133562635 doesn't seem to be mutated. Here are the mutated foci.Position 133564105 doesn't seem to be mutated. Here are the mutated foci.Position 133572743 doesn't seem to be mutated. Here are the mutated foci.Position 133577590 doesn't seem to be mutated. Here are the mutated foci.Position 133579287 doesn't seem to be mutated. Here are the mutated foci.Position 133579300 doesn't seem to be mutated. Here are the mutated foci.Position 133582391 doesn't seem to be mutated. Here are the mutated foci.Position 133584542 doesn't seem to be mutated. Here are the mutated foci.Position 133585181 doesn't seem to be mutated. Here are the mutated foci.Position 133586818 doesn't seem to be mutated. Here are the mutated foci.Position 133593833 doesn't seem to be mutated. Here are the mutated foci.Position 133595841 doesn't seem to be mutated. Here are the mutated foci.Position 133596827 doesn't seem to be mutated. Here are the mutated foci.Position 133597834 doesn't seem to be mutated. Here are the mutated foci.Position 133604834 doesn't seem to be mutated. Here are the mutated foci.Position 133612885 doesn't seem to be mutated. Here are the mutated foci.Position 133626618 doesn't seem to be mutated. Here are the mutated foci.Position 133627312 doesn't seem to be mutated. Here are the mutated foci.Position 133632995 doesn't seem to be mutated. Here are the mutated foci.Position 133637190 doesn't seem to be mutated. Here are the mutated foci.Position 133639153 doesn't seem to be mutated. Here are the mutated foci.Position 133640787 doesn't seem to be mutated. Here are the mutated foci.Position 133641213 doesn't seem to be mutated. Here are the mutated foci.Position 133644016 doesn't seem to be mutated. Here are the mutated foci.Position 133644782 doesn't seem to be mutated. Here are the mutated foci.Position 133646636 doesn't seem to be mutated. Here are the mutated foci.Position 133647121 doesn't seem to be mutated. Here are the mutated foci.Position 133655308 doesn't seem to be mutated. Here are the mutated foci.Position 133659724 doesn't seem to be mutated. Here are the mutated foci.Position 133660101 doesn't seem to be mutated. Here are the mutated foci.Position 133663202 doesn't seem to be mutated. Here are the mutated foci.Position 133666191 doesn't seem to be mutated. Here are the mutated foci.Position 133668238 doesn't seem to be mutated. Here are the mutated foci.Position 133682545 doesn't seem to be mutated. Here are the mutated foci.Position 133685568 doesn't seem to be mutated. Here are the mutated foci.Position 133687718 doesn't seem to be mutated. Here are the mutated foci.Position 133691454 doesn't seem to be mutated. Here are the mutated foci.Position 133691498 doesn't seem to be mutated. Here are the mutated foci.Position 133691837 doesn't seem to be mutated. Here are the mutated foci.Position 133697523 doesn't seem to be mutated. Here are the mutated foci.Position 133706843 doesn't seem to be mutated. Here are the mutated foci.Position 133710034 doesn't seem to be mutated. Here are the mutated foci.Position 133711774 doesn't seem to be mutated. Here are the mutated foci.Position 133712345 doesn't seem to be mutated. Here are the mutated foci.Position 133713866 doesn't seem to be mutated. Here are the mutated foci.Position 133718507 doesn't seem to be mutated. Here are the mutated foci.Position 133720153 doesn't seem to be mutated. Here are the mutated foci.Position 133720429 doesn't seem to be mutated. Here are the mutated foci.Position 133721508 doesn't seem to be mutated. Here are the mutated foci.Position 133725384 doesn't seem to be mutated. Here are the mutated foci.Position 133738582 doesn't seem to be mutated. Here are the mutated foci.Position 133739096 doesn't seem to be mutated. Here are the mutated foci.Position 133739890 doesn't seem to be mutated. Here are the mutated foci.Position 133741215 doesn't seem to be mutated. Here are the mutated foci.Position 133744391 doesn't seem to be mutated. Here are the mutated foci.Position 133745119 doesn't seem to be mutated. Here are the mutated foci.Position 133750261 doesn't seem to be mutated. Here are the mutated foci.Position 133751693 doesn't seem to be mutated. Here are the mutated foci.Position 133752596 doesn't seem to be mutated. Here are the mutated foci.Position 133760476 doesn't seem to be mutated. Here are the mutated foci.Position 133760970 doesn't seem to be mutated. Here are the mutated foci.Position 133765686 doesn't seem to be mutated. Here are the mutated foci.Position 133774014 doesn't seem to be mutated. Here are the mutated foci.Position 133774918 doesn't seem to be mutated. Here are the mutated foci.Position 133780599 doesn't seem to be mutated. Here are the mutated foci.Position 133782887 doesn't seem to be mutated. Here are the mutated foci.Position 133786756 doesn't seem to be mutated. Here are the mutated foci.Position 133801884 doesn't seem to be mutated. Here are the mutated foci.Position 133803273 doesn't seem to be mutated. Here are the mutated foci.Position 133804479 doesn't seem to be mutated. Here are the mutated foci.Position 133810624 doesn't seem to be mutated. Here are the mutated foci.Position 133810724 doesn't seem to be mutated. Here are the mutated foci.Position 133814837 doesn't seem to be mutated. Here are the mutated foci.Position 133818384 doesn't seem to be mutated. Here are the mutated foci.Position 133822343 doesn't seem to be mutated. Here are the mutated foci.Position 133823252 doesn't seem to be mutated. Here are the mutated foci.Position 133826277 doesn't seem to be mutated. Here are the mutated foci.Position 133826750 doesn't seem to be mutated. Here are the mutated foci.Position 133829982 doesn't seem to be mutated. Here are the mutated foci.Position 133830143 doesn't seem to be mutated. Here are the mutated foci.Position 133830636 doesn't seem to be mutated. Here are the mutated foci.Position 133832432 doesn't seem to be mutated. Here are the mutated foci.Position 133837214 doesn't seem to be mutated. Here are the mutated foci.Position 133838905 doesn't seem to be mutated. Here are the mutated foci.Position 133839801 doesn't seem to be mutated. Here are the mutated foci.Position 133846940 doesn't seem to be mutated. Here are the mutated foci.Position 133848710 doesn't seem to be mutated. Here are the mutated foci.Position 133850685 doesn't seem to be mutated. Here are the mutated foci.Position 133851057 doesn't seem to be mutated. Here are the mutated foci.Position 133853361 doesn't seem to be mutated. Here are the mutated foci.Position 133857041 doesn't seem to be mutated. Here are the mutated foci.Position 133858937 doesn't seem to be mutated. Here are the mutated foci.Position 133861779 doesn't seem to be mutated. Here are the mutated foci.Position 133862306 doesn't seem to be mutated. Here are the mutated foci.Position 133863717 doesn't seem to be mutated. Here are the mutated foci.Position 133867688 doesn't seem to be mutated. Here are the mutated foci.Position 133877009 doesn't seem to be mutated. Here are the mutated foci.Position 133882170 doesn't seem to be mutated. Here are the mutated foci.Position 133888798 doesn't seem to be mutated. Here are the mutated foci.Position 133889621 doesn't seem to be mutated. Here are the mutated foci.Position 133891229 doesn't seem to be mutated. Here are the mutated foci.Position 133898104 doesn't seem to be mutated. Here are the mutated foci.Position 133898768 doesn't seem to be mutated. Here are the mutated foci.Position 133899947 doesn't seem to be mutated. Here are the mutated foci.Position 133901331 doesn't seem to be mutated. Here are the mutated foci.Position 133902051 doesn't seem to be mutated. Here are the mutated foci.Position 133905195 doesn't seem to be mutated. Here are the mutated foci.Position 133905884 doesn't seem to be mutated. Here are the mutated foci.Position 133906344 doesn't seem to be mutated. Here are the mutated foci.Position 133906547 doesn't seem to be mutated. Here are the mutated foci.Position 133907174 doesn't seem to be mutated. Here are the mutated foci.Position 133907951 doesn't seem to be mutated. Here are the mutated foci.Position 133909232 doesn't seem to be mutated. Here are the mutated foci.Position 133910033 doesn't seem to be mutated. Here are the mutated foci.Position 133921553 doesn't seem to be mutated. Here are the mutated foci.Position 133923695 doesn't seem to be mutated. Here are the mutated foci.Position 133924163 doesn't seem to be mutated. Here are the mutated foci.Position 133924929 doesn't seem to be mutated. Here are the mutated foci.Position 133925255 doesn't seem to be mutated. Here are the mutated foci.Position 133926970 doesn't seem to be mutated. Here are the mutated foci.Position 133934820 doesn't seem to be mutated. Here are the mutated foci.Position 133934899 doesn't seem to be mutated. Here are the mutated foci.Position 133941387 doesn't seem to be mutated. Here are the mutated foci.Position 133945075 doesn't seem to be mutated. Here are the mutated foci.Position 133947362 doesn't seem to be mutated. Here are the mutated foci.Position 133954133 doesn't seem to be mutated. Here are the mutated foci.Position 133955202 doesn't seem to be mutated. Here are the mutated foci.Position 133958171 doesn't seem to be mutated. Here are the mutated foci.Position 133958377 doesn't seem to be mutated. Here are the mutated foci.Position 133960890 doesn't seem to be mutated. Here are the mutated foci.Position 133962844 doesn't seem to be mutated. Here are the mutated foci.Position 133963509 doesn't seem to be mutated. Here are the mutated foci.Position 133967464 doesn't seem to be mutated. Here are the mutated foci.Position 133969028 doesn't seem to be mutated. Here are the mutated foci.Position 133971096 doesn't seem to be mutated. Here are the mutated foci.Position 133978072 doesn't seem to be mutated. Here are the mutated foci.Position 133980558 doesn't seem to be mutated. Here are the mutated foci.Position 133986821 doesn't seem to be mutated. Here are the mutated foci.Position 133986826 doesn't seem to be mutated. Here are the mutated foci.Position 133988797 doesn't seem to be mutated. Here are the mutated foci.Position 133989798 doesn't seem to be mutated. Here are the mutated foci.Position 147915810 doesn't seem to be mutated. Here are the mutated foci.Position 147918549 doesn't seem to be mutated. Here are the mutated foci.Position 147919668 doesn't seem to be mutated. Here are the mutated foci.Position 147921795 doesn't seem to be mutated. Here are the mutated foci.Position 147926063 doesn't seem to be mutated. Here are the mutated foci.Position 147927956 doesn't seem to be mutated. Here are the mutated foci.Position 147930408 doesn't seem to be mutated. Here are the mutated foci.Position 147932974 doesn't seem to be mutated. Here are the mutated foci.Position 147935324 doesn't seem to be mutated. Here are the mutated foci.Position 147935542 doesn't seem to be mutated. Here are the mutated foci.Position 147937430 doesn't seem to be mutated. Here are the mutated foci.Position 147938386 doesn't seem to be mutated. Here are the mutated foci.Position 147939592 doesn't seem to be mutated. Here are the mutated foci.Position 147940029 doesn't seem to be mutated. Here are the mutated foci.Position 147940139 doesn't seem to be mutated. Here are the mutated foci.Position 147943459 doesn't seem to be mutated. Here are the mutated foci.Position 147944157 doesn't seem to be mutated. Here are the mutated foci.Position 147946130 doesn't seem to be mutated. Here are the mutated foci.Position 147946437 doesn't seem to be mutated. Here are the mutated foci.Position 147946633 doesn't seem to be mutated. Here are the mutated foci.Position 147948534 doesn't seem to be mutated. Here are the mutated foci.Position 147950082 doesn't seem to be mutated. Here are the mutated foci.Position 147950585 doesn't seem to be mutated. Here are the mutated foci.Position 147951410 doesn't seem to be mutated. Here are the mutated foci.Position 147952934 doesn't seem to be mutated. Here are the mutated foci.Position 147954546 doesn't seem to be mutated. Here are the mutated foci.Position 147954982 doesn't seem to be mutated. Here are the mutated foci.Position 154760078 doesn't seem to be mutated. Here are the mutated foci.Position 154762671 doesn't seem to be mutated. Here are the mutated foci.Position 154765221 doesn't seem to be mutated. Here are the mutated foci.Position 154765455 doesn't seem to be mutated. Here are the mutated foci.Position 154765567 doesn't seem to be mutated. Here are the mutated foci.Position 154767890 doesn't seem to be mutated. Here are the mutated foci.Position 154767920 doesn't seem to be mutated. Here are the mutated foci.Position 154768860 doesn't seem to be mutated. Here are the mutated foci.Position 154769802 doesn't seem to be mutated. Here are the mutated foci.Position 154774712 doesn't seem to be mutated. Here are the mutated foci.Position 154775438 doesn't seem to be mutated. Here are the mutated foci.Position 154775789 doesn't seem to be mutated. Here are the mutated foci.Position 10279376 doesn't seem to be mutated. Here are the mutated foci.Position 169016483 doesn't seem to be mutated. Here are the mutated foci.Position 122184543 doesn't seem to be mutated. Here are the mutated foci.Position 56920986 doesn't seem to be mutated. Here are the mutated foci.Position 157224112 doesn't seem to be mutated. Here are the mutated foci.Position 332595 doesn't seem to be mutated. Here are the mutated foci.Position 43100752 doesn't seem to be mutated. Here are the mutated foci.Position 43111293 doesn't seem to be mutated. Here are the mutated foci.Position 86836636 doesn't seem to be mutated. Here are the mutated foci.Position 87880459 doesn't seem to be mutated. Here are the mutated foci.Position 121519481 doesn't seem to be mutated. Here are the mutated foci.Position 67482759 doesn't seem to be mutated. Here are the mutated foci.Position 132673984 doesn't seem to be mutated. Here are the mutated foci.Position 65102732 doesn't seem to be mutated. Here are the mutated foci.Position 66416527 doesn't seem to be mutated. Here are the mutated foci.Position 7674233 doesn't seem to be mutated. Here are the mutated foci.Position 31375012 doesn't seem to be mutated. Here are the mutated foci.Position 28735025 doesn't seem to be mutated. Here are the mutated foci.Position 29616935 doesn't seem to be mutated. Here are the mutated foci.Position 77615942 doesn't seem to be mutated. Here are the mutated foci.Position 133738209 doesn't seem to be mutated. Here are the mutated foci.Position 29743969 doesn't seem to be mutated. Here are the mutated foci.Position 304843 doesn't seem to be mutated. Here are the mutated foci.Position 441038 doesn't seem to be mutated. Here are the mutated foci.Position 34930271 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 69953647 doesn't seem to be mutated. Here are the mutated foci.Position 59034353 doesn't seem to be mutated. Here are the mutated foci.Position 116681938 doesn't seem to be mutated. Here are the mutated foci.Position 31164458 doesn't seem to be mutated. Here are the mutated foci.Position 108885157 doesn't seem to be mutated. Here are the mutated foci.Position 48349468 doesn't seem to be mutated. Here are the mutated foci.Position 31097703 doesn't seem to be mutated. Here are the mutated foci.Position 10071828 doesn't seem to be mutated. Here are the mutated foci.Position 104727303 doesn't seem to be mutated. Here are the mutated foci.Position 50305922 doesn't seem to be mutated. Here are the mutated foci.Position 96143659 doesn't seem to be mutated. Here are the mutated foci.Position 350073 doesn't seem to be mutated. Here are the mutated foci.Position 2178726 doesn't seem to be mutated. Here are the mutated foci.Position 21808509 doesn't seem to be mutated. Here are the mutated foci.Position 21808512 doesn't seem to be mutated. Here are the mutated foci.Position 47210483 doesn't seem to be mutated. Here are the mutated foci.Position 40193033 doesn't seem to be mutated. Here are the mutated foci.Position 40642491 doesn't seem to be mutated. Here are the mutated foci.Position 4110428 doesn't seem to be mutated. Here are the mutated foci.Position 58860696 doesn't seem to be mutated. Here are the mutated foci.Position 35819307 doesn't seem to be mutated. Here are the mutated foci.Position 133330717 doesn't seem to be mutated. Here are the mutated foci.Position 69971174 doesn't seem to be mutated. Here are the mutated foci.Position 36937646 doesn't seem to be mutated. Here are the mutated foci.Position 95419927 doesn't seem to be mutated. Here are the mutated foci.Position 51083081 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 112845164 doesn't seem to be mutated. Here are the mutated foci.Position 132561242 doesn't seem to be mutated. Here are the mutated foci.Position 35452613 doesn't seem to be mutated. Here are the mutated foci.Position 415384 doesn't seem to be mutated. Here are the mutated foci.Position 95173855 doesn't seem to be mutated. Here are the mutated foci.Position 43154398 doesn't seem to be mutated. Here are the mutated foci.Position 35425367 doesn't seem to be mutated. Here are the mutated foci.Position 35528805 doesn't seem to be mutated. Here are the mutated foci.Position 35706200 doesn't seem to be mutated. Here are the mutated foci.Position 23834152 doesn't seem to be mutated. Here are the mutated foci.Position 133927479 doesn't seem to be mutated. Here are the mutated foci.Position 133978602 doesn't seem to be mutated. Here are the mutated foci.Position 29375910 doesn't seem to be mutated. Here are the mutated foci.Position 29539761 doesn't seem to be mutated. Here are the mutated foci.Position 47716890 doesn't seem to be mutated. Here are the mutated foci.Position 144474403 doesn't seem to be mutated. Here are the mutated foci.Position 56919376 doesn't seem to be mutated. Here are the mutated foci.Position 1252346 doesn't seem to be mutated. Here are the mutated foci.Position 1252357 doesn't seem to be mutated. Here are the mutated foci.Position 112739200 doesn't seem to be mutated. Here are the mutated foci.Position 55040142 doesn't seem to be mutated. Here are the mutated foci.Position 118052959 doesn't seem to be mutated. Here are the mutated foci.Position 21818767 doesn't seem to be mutated. Here are the mutated foci.Position 36894988 doesn't seem to be mutated. Here are the mutated foci.Position 95386676 doesn't seem to be mutated. Here are the mutated foci.Position 95426746 doesn't seem to be mutated. Here are the mutated foci.Position 62070673 doesn't seem to be mutated. Here are the mutated foci.Position 70599698 doesn't seem to be mutated. Here are the mutated foci.Position 86768072 doesn't seem to be mutated. Here are the mutated foci.Position 121587934 doesn't seem to be mutated. Here are the mutated foci.Position 95081587 doesn't seem to be mutated. Here are the mutated foci.Position 13943908 doesn't seem to be mutated. Here are the mutated foci.Position 32406524 doesn't seem to be mutated. Here are the mutated foci.Position 35009752 doesn't seem to be mutated. Here are the mutated foci.Position 35360135 doesn't seem to be mutated. Here are the mutated foci.Position 133753498 doesn't seem to be mutated. Here are the mutated foci.Position 133848656 doesn't seem to be mutated. Here are the mutated foci.Position 147926455 doesn't seem to be mutated. Here are the mutated foci.Position 29306653 doesn't seem to be mutated. Here are the mutated foci.Position 116692509 doesn't seem to be mutated. Here are the mutated foci.Position 132628339 doesn't seem to be mutated. Here are the mutated foci.Position 40177577 doesn't seem to be mutated. Here are the mutated foci.Position 89745447 doesn't seem to be mutated. Here are the mutated foci.Position 35084547 doesn't seem to be mutated. Here are the mutated foci.Position 35314055 doesn't seem to be mutated. Here are the mutated foci.Position 147910397 doesn't seem to be mutated. Here are the mutated foci.Position 147911759 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 31093368 doesn't seem to be mutated. Here are the mutated foci.Position 89777578 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 69770054 doesn't seem to be mutated. Here are the mutated foci.Position 140753338 doesn't seem to be mutated. Here are the mutated foci.Position 118115997 doesn't seem to be mutated. Here are the mutated foci.Position 67488558 doesn't seem to be mutated. Here are the mutated foci.Position 89783551 doesn't seem to be mutated. Here are the mutated foci.Position 61821537 doesn't seem to be mutated. Here are the mutated foci.Position 35917801 doesn't seem to be mutated. Here are the mutated foci.Position 77515425 doesn't seem to be mutated. Here are the mutated foci.Position 47716890 doesn't seem to be mutated. Here are the mutated foci.Position 127252565 doesn't seem to be mutated. Here are the mutated foci.Position 231966502 doesn't seem to be mutated. Here are the mutated foci.Position 52408560 doesn't seem to be mutated. Here are the mutated foci.Position 69911595 doesn't seem to be mutated. Here are the mutated foci.Position 122230376 doesn't seem to be mutated. Here are the mutated foci.Position 138765383 doesn't seem to be mutated. Here are the mutated foci.Position 42077371 doesn't seem to be mutated. Here are the mutated foci.Position 42090482 doesn't seem to be mutated. Here are the mutated foci.Position 42172023 doesn't seem to be mutated. Here are the mutated foci.Position 302984 doesn't seem to be mutated. Here are the mutated foci.Position 95485706 doesn't seem to be mutated. Here are the mutated foci.Position 86777587 doesn't seem to be mutated. Here are the mutated foci.Position 87899689 doesn't seem to be mutated. Here are the mutated foci.Position 102572505 doesn't seem to be mutated. Here are the mutated foci.Position 102572514 doesn't seem to be mutated. Here are the mutated foci.Position 44119176 doesn't seem to be mutated. Here are the mutated foci.Position 11778695 doesn't seem to be mutated. Here are the mutated foci.Position 3743784 doesn't seem to be mutated. Here are the mutated foci.Position 3797598 doesn't seem to be mutated. Here are the mutated foci.Position 7675088 doesn't seem to be mutated. Here are the mutated foci.Position 43102659 doesn't seem to be mutated. Here are the mutated foci.Position 35063550 doesn't seem to be mutated. Here are the mutated foci.Position 41137251 doesn't seem to be mutated. Here are the mutated foci.Position 133298600 doesn't seem to be mutated. Here are the mutated foci.Position 133866437 doesn't seem to be mutated. Here are the mutated foci.Position 10325352 doesn't seem to be mutated. Here are the mutated foci.Position 93134417 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 34861705 doesn't seem to be mutated. Here are the mutated foci.Position 34898200 doesn't seem to be mutated. Here are the mutated foci.Position 34898212 doesn't seem to be mutated. Here are the mutated foci.Position 35276389 doesn't seem to be mutated. Here are the mutated foci.Position 35513165 doesn't seem to be mutated. Here are the mutated foci.Position 35903886 doesn't seem to be mutated. Here are the mutated foci.Position 10321410 doesn't seem to be mutated. Here are the mutated foci.Position 29448159 doesn't seem to be mutated. Here are the mutated foci.Position 140885315 doesn't seem to be mutated. Here are the mutated foci.Position 108240216 doesn't seem to be mutated. Here are the mutated foci.Position 50178180 doesn't seem to be mutated. Here are the mutated foci.Position 32741955 doesn't seem to be mutated. Here are the mutated foci.Position 133342809 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 80810173 doesn't seem to be mutated. Here are the mutated foci.Position 138653000 doesn't seem to be mutated. Here are the mutated foci.Position 177139254 doesn't seem to be mutated. Here are the mutated foci.Position 121549626 doesn't seem to be mutated. Here are the mutated foci.Position 112474959 doesn't seem to be mutated. Here are the mutated foci.Position 7679510 doesn't seem to be mutated. Here are the mutated foci.Position 23804109 doesn't seem to be mutated. Here are the mutated foci.Position 54271934 doesn't seem to be mutated. Here are the mutated foci.Position 80692212 doesn't seem to be mutated. Here are the mutated foci.Position 140743739 doesn't seem to be mutated. Here are the mutated foci.Position 19378682 doesn't seem to be mutated. Here are the mutated foci.Position 87912846 doesn't seem to be mutated. Here are the mutated foci.Position 104777303 doesn't seem to be mutated. Here are the mutated foci.Position 80153172 doesn't seem to be mutated. Here are the mutated foci.Position 34950736 doesn't seem to be mutated. Here are the mutated foci.Position 35015094 doesn't seem to be mutated. Here are the mutated foci.Position 161312202 doesn't seem to be mutated. Here are the mutated foci.Position 29281222 doesn't seem to be mutated. Here are the mutated foci.Position 29769987 doesn't seem to be mutated. Here are the mutated foci.Position 29887449 doesn't seem to be mutated. Here are the mutated foci.Position 47607855 doesn't seem to be mutated. Here are the mutated foci.Position 47771632 doesn't seem to be mutated. Here are the mutated foci.Position 58198029 doesn't seem to be mutated. Here are the mutated foci.Position 10099028 doesn't seem to be mutated. Here are the mutated foci.Position 10154314 doesn't seem to be mutated. Here are the mutated foci.Position 69857430 doesn't seem to be mutated. Here are the mutated foci.Position 54657974 doesn't seem to be mutated. Here are the mutated foci.Position 54665983 doesn't seem to be mutated. Here are the mutated foci.Position 56906032 doesn't seem to be mutated. Here are the mutated foci.Position 112802115 doesn't seem to be mutated. Here are the mutated foci.Position 138875559 doesn't seem to be mutated. Here are the mutated foci.Position 157236076 doesn't seem to be mutated. Here are the mutated foci.Position 35465421 doesn't seem to be mutated. Here are the mutated foci.Position 104845050 doesn't seem to be mutated. Here are the mutated foci.Position 5994400 doesn't seem to be mutated. Here are the mutated foci.Position 42178752 doesn't seem to be mutated. Here are the mutated foci.Position 93134912 doesn't seem to be mutated. Here are the mutated foci.Position 148850085 doesn't seem to be mutated. Here are the mutated foci.Position 148859171 doesn't seem to be mutated. Here are the mutated foci.Position 307026 doesn't seem to be mutated. Here are the mutated foci.Position 464626 doesn't seem to be mutated. Here are the mutated foci.Position 2057828 doesn't seem to be mutated. Here are the mutated foci.Position 21804524 doesn't seem to be mutated. Here are the mutated foci.Position 21850357 doesn't seem to be mutated. Here are the mutated foci.Position 61963861 doesn't seem to be mutated. Here are the mutated foci.Position 61993763 doesn't seem to be mutated. Here are the mutated foci.Position 62029046 doesn't seem to be mutated. Here are the mutated foci.Position 529845 doesn't seem to be mutated. Here are the mutated foci.Position 44200474 doesn't seem to be mutated. Here are the mutated foci.Position 108260929 doesn't seem to be mutated. Here are the mutated foci.Position 25250958 doesn't seem to be mutated. Here are the mutated foci.Position 132660804 doesn't seem to be mutated. Here are the mutated foci.Position 32389749 doesn't seem to be mutated. Here are the mutated foci.Position 66456495 doesn't seem to be mutated. Here are the mutated foci.Position 89254842 doesn't seem to be mutated. Here are the mutated foci.Position 89254852 doesn't seem to be mutated. Here are the mutated foci.Position 90764871 doesn't seem to be mutated. Here are the mutated foci.Position 3758853 doesn't seem to be mutated. Here are the mutated foci.Position 3822075 doesn't seem to be mutated. Here are the mutated foci.Position 31229457 doesn't seem to be mutated. Here are the mutated foci.Position 31340861 doesn't seem to be mutated. Here are the mutated foci.Position 31356540 doesn't seem to be mutated. Here are the mutated foci.Position 61853387 doesn't seem to be mutated. Here are the mutated foci.Position 76503123 doesn't seem to be mutated. Here are the mutated foci.Position 10997342 doesn't seem to be mutated. Here are the mutated foci.Position 58858371 doesn't seem to be mutated. Here are the mutated foci.Position 34814556 doesn't seem to be mutated. Here are the mutated foci.Position 34986964 doesn't seem to be mutated. Here are the mutated foci.Position 35567023 doesn't seem to be mutated. Here are the mutated foci.Position 41087897 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 41124042 doesn't seem to be mutated. Here are the mutated foci.Position 14872408 doesn't seem to be mutated. Here are the mutated foci.Position 77605550 doesn't seem to be mutated. Here are the mutated foci.Position 77615824 doesn't seem to be mutated. Here are the mutated foci.Position 77620526 doesn't seem to be mutated. Here are the mutated foci.Position 77654772 doesn't seem to be mutated. Here are the mutated foci.Position 133911961 doesn't seem to be mutated. Here are the mutated foci.Position 29509783 doesn't seem to be mutated. Here are the mutated foci.Position 12623003 doesn't seem to be mutated. Here are the mutated foci.Position 55215868 doesn't seem to be mutated. Here are the mutated foci.Position 2142447 doesn't seem to be mutated. Here are the mutated foci.Position 43085284 doesn't seem to be mutated. Here are the mutated foci.Position 121556635 doesn't seem to be mutated. Here are the mutated foci.Position 66423604 doesn't seem to be mutated. Here are the mutated foci.Position 82535088 doesn't seem to be mutated. Here are the mutated foci.Position 35641568 doesn't seem to be mutated. Here are the mutated foci.Position 29654683 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 147939255 doesn't seem to be mutated. Here are the mutated foci.Position 10211125 doesn't seem to be mutated. Here are the mutated foci.Position 38414784 doesn't seem to be mutated. Here are the mutated foci.Position 38414789 doesn't seem to be mutated. Here are the mutated foci.Position 103715295 doesn't seem to be mutated. Here are the mutated foci.Position 38997605 doesn't seem to be mutated. Here are the mutated foci.Position 38997606 doesn't seem to be mutated. Here are the mutated foci.Position 144431395 doesn't seem to be mutated. Here are the mutated foci.Position 232316775 doesn't seem to be mutated. Here are the mutated foci.Position 54256615 doesn't seem to be mutated. Here are the mutated foci.Position 54686219 doesn't seem to be mutated. Here are the mutated foci.Position 140827904 doesn't seem to be mutated. Here are the mutated foci.Position 38440575 doesn't seem to be mutated. Here are the mutated foci.Position 78046983 doesn't seem to be mutated. Here are the mutated foci.Position 61721884 doesn't seem to be mutated. Here are the mutated foci.Position 35918103 doesn't seem to be mutated. Here are the mutated foci.Position 41130808 doesn't seem to be mutated. Here are the mutated foci.Position 45015886 doesn't seem to be mutated. Here are the mutated foci.Position 1804949 doesn't seem to be mutated. Here are the mutated foci.Position 80762785 doesn't seem to be mutated. Here are the mutated foci.Position 80762790 doesn't seem to be mutated. Here are the mutated foci.Position 104857203 doesn't seem to be mutated. Here are the mutated foci.Position 118021124 doesn't seem to be mutated. Here are the mutated foci.Position 102556506 doesn't seem to be mutated. Here are the mutated foci.Position 121595429 doesn't seem to be mutated. Here are the mutated foci.Position 23641258 doesn't seem to be mutated. Here are the mutated foci.Position 41860463 doesn't seem to be mutated. Here are the mutated foci.Position 231412125 doesn't seem to be mutated. Here are the mutated foci.Position 232148360 doesn't seem to be mutated. Here are the mutated foci.Position 232148374 doesn't seem to be mutated. Here are the mutated foci.Position 10058043 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 138728965 doesn't seem to be mutated. Here are the mutated foci.Position 138825620 doesn't seem to be mutated. Here are the mutated foci.Position 93098760 doesn't seem to be mutated. Here are the mutated foci.Position 86817069 doesn't seem to be mutated. Here are the mutated foci.Position 110932321 doesn't seem to be mutated. Here are the mutated foci.Position 11851309 doesn't seem to be mutated. Here are the mutated foci.Position 68793273 doesn't seem to be mutated. Here are the mutated foci.Position 17207872 doesn't seem to be mutated. Here are the mutated foci.Position 35480825 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 133558903 doesn't seem to be mutated. Here are the mutated foci.Position 133692651 doesn't seem to be mutated. Here are the mutated foci.Position 43335921 doesn't seem to be mutated. Here are the mutated foci.Position 41966082 doesn't seem to be mutated. Here are the mutated foci.Position 89970834 doesn't seem to be mutated. Here are the mutated foci.Position 104765360 doesn't seem to be mutated. Here are the mutated foci.Position 50412765 doesn't seem to be mutated. Here are the mutated foci.Position 34814925 doesn't seem to be mutated. Here are the mutated foci.Position 147929600 doesn't seem to be mutated. Here are the mutated foci.Position 10208604 doesn't seem to be mutated. Here are the mutated foci.Position 10209566 doesn't seem to be mutated. Here are the mutated foci.Position 10212841 doesn't seem to be mutated. Here are the mutated foci.Position 10214451 doesn't seem to be mutated. Here are the mutated foci.Position 10215826 doesn't seem to be mutated. Here are the mutated foci.Position 10220044 doesn't seem to be mutated. Here are the mutated foci.Position 10221842 doesn't seem to be mutated. Here are the mutated foci.Position 10221855 doesn't seem to be mutated. Here are the mutated foci.Position 10223166 doesn't seem to be mutated. Here are the mutated foci.Position 10232032 doesn't seem to be mutated. Here are the mutated foci.Position 10234426 doesn't seem to be mutated. Here are the mutated foci.Position 10237319 doesn't seem to be mutated. Here are the mutated foci.Position 10240980 doesn't seem to be mutated. Here are the mutated foci.Position 10247983 doesn't seem to be mutated. Here are the mutated foci.Position 10249552 doesn't seem to be mutated. Here are the mutated foci.Position 10251880 doesn't seem to be mutated. Here are the mutated foci.Position 10253790 doesn't seem to be mutated. Here are the mutated foci.Position 10259154 doesn't seem to be mutated. Here are the mutated foci.Position 10268062 doesn't seem to be mutated. Here are the mutated foci.Position 10289751 doesn't seem to be mutated. Here are the mutated foci.Position 10289839 doesn't seem to be mutated. Here are the mutated foci.Position 10292565 doesn't seem to be mutated. Here are the mutated foci.Position 10300999 doesn't seem to be mutated. Here are the mutated foci.Position 10301708 doesn't seem to be mutated. Here are the mutated foci.Position 10302932 doesn't seem to be mutated. Here are the mutated foci.Position 10304050 doesn't seem to be mutated. Here are the mutated foci.Position 10304475 doesn't seem to be mutated. Here are the mutated foci.Position 10307733 doesn't seem to be mutated. Here are the mutated foci.Position 10308203 doesn't seem to be mutated. Here are the mutated foci.Position 10313167 doesn't seem to be mutated. Here are the mutated foci.Position 10316605 doesn't seem to be mutated. Here are the mutated foci.Position 10332062 doesn't seem to be mutated. Here are the mutated foci.Position 10336657 doesn't seem to be mutated. Here are the mutated foci.Position 10338845 doesn't seem to be mutated. Here are the mutated foci.Position 10344129 doesn't seem to be mutated. Here are the mutated foci.Position 10346358 doesn't seem to be mutated. Here are the mutated foci.Position 10350285 doesn't seem to be mutated. Here are the mutated foci.Position 10350944 doesn't seem to be mutated. Here are the mutated foci.Position 10382055 doesn't seem to be mutated. Here are the mutated foci.Position 17019546 doesn't seem to be mutated. Here are the mutated foci.Position 17028011 doesn't seem to be mutated. Here are the mutated foci.Position 17029829 doesn't seem to be mutated. Here are the mutated foci.Position 17041490 doesn't seem to be mutated. Here are the mutated foci.Position 17041577 doesn't seem to be mutated. Here are the mutated foci.Position 17042886 doesn't seem to be mutated. Here are the mutated foci.Position 17044572 doesn't seem to be mutated. Here are the mutated foci.Position 17044573 doesn't seem to be mutated. Here are the mutated foci.Position 17048430 doesn't seem to be mutated. Here are the mutated foci.Position 23690205 doesn't seem to be mutated. Here are the mutated foci.Position 23698710 doesn't seem to be mutated. Here are the mutated foci.Position 23699103 doesn't seem to be mutated. Here are the mutated foci.Position 43333838 doesn't seem to be mutated. Here are the mutated foci.Position 43339949 doesn't seem to be mutated. Here are the mutated foci.Position 43342589 doesn't seem to be mutated. Here are the mutated foci.Position 43343202 doesn't seem to be mutated. Here are the mutated foci.Position 43351272 doesn't seem to be mutated. Here are the mutated foci.Position 44817861 doesn't seem to be mutated. Here are the mutated foci.Position 44820384 doesn't seem to be mutated. Here are the mutated foci.Position 44825822 doesn't seem to be mutated. Here are the mutated foci.Position 44837448 doesn't seem to be mutated. Here are the mutated foci.Position 44838364 doesn't seem to be mutated. Here are the mutated foci.Position 44838755 doesn't seem to be mutated. Here are the mutated foci.Position 44840745 doesn't seem to be mutated. Here are the mutated foci.Position 45012730 doesn't seem to be mutated. Here are the mutated foci.Position 45332036 doesn't seem to be mutated. Here are the mutated foci.Position 45332394 doesn't seem to be mutated. Here are the mutated foci.Position 45334731 doesn't seem to be mutated. Here are the mutated foci.Position 45337542 doesn't seem to be mutated. Here are the mutated foci.Position 92832323 doesn't seem to be mutated. Here are the mutated foci.Position 92836471 doesn't seem to be mutated. Here are the mutated foci.Position 114702437 doesn't seem to be mutated. Here are the mutated foci.Position 114704086 doesn't seem to be mutated. Here are the mutated foci.Position 114705622 doesn't seem to be mutated. Here are the mutated foci.Position 114705629 doesn't seem to be mutated. Here are the mutated foci.Position 114707324 doesn't seem to be mutated. Here are the mutated foci.Position 114708772 doesn't seem to be mutated. Here are the mutated foci.Position 154276039 doesn't seem to be mutated. Here are the mutated foci.Position 154276729 doesn't seem to be mutated. Here are the mutated foci.Position 154278722 doesn't seem to be mutated. Here are the mutated foci.Position 154280210 doesn't seem to be mutated. Here are the mutated foci.Position 155231004 doesn't seem to be mutated. Here are the mutated foci.Position 155233172 doesn't seem to be mutated. Here are the mutated foci.Position 155236650 doesn't seem to be mutated. Here are the mutated foci.Position 155237078 doesn't seem to be mutated. Here are the mutated foci.Position 155240094 doesn't seem to be mutated. Here are the mutated foci.Position 155247118 doesn't seem to be mutated. Here are the mutated foci.Position 155897873 doesn't seem to be mutated. Here are the mutated foci.Position 155904905 doesn't seem to be mutated. Here are the mutated foci.Position 155904974 doesn't seem to be mutated. Here are the mutated foci.Position 155907828 doesn't seem to be mutated. Here are the mutated foci.Position 155910252 doesn't seem to be mutated. Here are the mutated foci.Position 156831216 doesn't seem to be mutated. Here are the mutated foci.Position 156863867 doesn't seem to be mutated. Here are the mutated foci.Position 156869597 doesn't seem to be mutated. Here are the mutated foci.Position 156870304 doesn't seem to be mutated. Here are the mutated foci.Position 156876215 doesn't seem to be mutated. Here are the mutated foci.Position 156878142 doesn't seem to be mutated. Here are the mutated foci.Position 156881097 doesn't seem to be mutated. Here are the mutated foci.Position 161317082 doesn't seem to be mutated. Here are the mutated foci.Position 161317767 doesn't seem to be mutated. Here are the mutated foci.Position 161322158 doesn't seem to be mutated. Here are the mutated foci.Position 161333952 doesn't seem to be mutated. Here are the mutated foci.Position 161338060 doesn't seem to be mutated. Here are the mutated foci.Position 161338396 doesn't seem to be mutated. Here are the mutated foci.Position 161341737 doesn't seem to be mutated. Here are the mutated foci.Position 161345907 doesn't seem to be mutated. Here are the mutated foci.Position 161346398 doesn't seem to be mutated. Here are the mutated foci.Position 161359004 doesn't seem to be mutated. Here are the mutated foci.Position 161365191 doesn't seem to be mutated. Here are the mutated foci.Position 161368881 doesn't seem to be mutated. Here are the mutated foci.Position 161371221 doesn't seem to be mutated. Here are the mutated foci.Position 161371816 doesn't seem to be mutated. Here are the mutated foci.Position 161376679 doesn't seem to be mutated. Here are the mutated foci.Position 193117184 doesn't seem to be mutated. Here are the mutated foci.Position 193117541 doesn't seem to be mutated. Here are the mutated foci.Position 193120200 doesn't seem to be mutated. Here are the mutated foci.Position 193121133 doesn't seem to be mutated. Here are the mutated foci.Position 193126563 doesn't seem to be mutated. Here are the mutated foci.Position 193128085 doesn't seem to be mutated. Here are the mutated foci.Position 193135060 doesn't seem to be mutated. Here are the mutated foci.Position 193136927 doesn't seem to be mutated. Here are the mutated foci.Position 193137583 doesn't seem to be mutated. Here are the mutated foci.Position 193138101 doesn't seem to be mutated. Here are the mutated foci.Position 193139699 doesn't seem to be mutated. Here are the mutated foci.Position 193141829 doesn't seem to be mutated. Here are the mutated foci.Position 193147061 doesn't seem to be mutated. Here are the mutated foci.Position 193147362 doesn't seem to be mutated. Here are the mutated foci.Position 193154699 doesn't seem to be mutated. Here are the mutated foci.Position 193156390 doesn't seem to be mutated. Here are the mutated foci.Position 193172582 doesn't seem to be mutated. Here are the mutated foci.Position 193176684 doesn't seem to be mutated. Here are the mutated foci.Position 193176729 doesn't seem to be mutated. Here are the mutated foci.Position 193177527 doesn't seem to be mutated. Here are the mutated foci.Position 193192217 doesn't seem to be mutated. Here are the mutated foci.Position 193193170 doesn't seem to be mutated. Here are the mutated foci.Position 193201931 doesn't seem to be mutated. Here are the mutated foci.Position 193203397 doesn't seem to be mutated. Here are the mutated foci.Position 193213609 doesn't seem to be mutated. Here are the mutated foci.Position 193213729 doesn't seem to be mutated. Here are the mutated foci.Position 193215703 doesn't seem to be mutated. Here are the mutated foci.Position 193216279 doesn't seem to be mutated. Here are the mutated foci.Position 193219866 doesn't seem to be mutated. Here are the mutated foci.Position 193230945 doesn't seem to be mutated. Here are the mutated foci.Position 193231814 doesn't seem to be mutated. Here are the mutated foci.Position 193232746 doesn't seem to be mutated. Here are the mutated foci.Position 193237232 doesn't seem to be mutated. Here are the mutated foci.Position 193246530 doesn't seem to be mutated. Here are the mutated foci.Position 193250885 doesn't seem to be mutated. Here are the mutated foci.Position 193255195 doesn't seem to be mutated. Here are the mutated foci.Position 231360932 doesn't seem to be mutated. Here are the mutated foci.Position 231367914 doesn't seem to be mutated. Here are the mutated foci.Position 231369147 doesn't seem to be mutated. Here are the mutated foci.Position 231370396 doesn't seem to be mutated. Here are the mutated foci.Position 231374080 doesn't seem to be mutated. Here are the mutated foci.Position 231382108 doesn't seem to be mutated. Here are the mutated foci.Position 231383187 doesn't seem to be mutated. Here are the mutated foci.Position 231385099 doesn't seem to be mutated. Here are the mutated foci.Position 231387129 doesn't seem to be mutated. Here are the mutated foci.Position 231387772 doesn't seem to be mutated. Here are the mutated foci.Position 231392540 doesn't seem to be mutated. Here are the mutated foci.Position 231393337 doesn't seem to be mutated. Here are the mutated foci.Position 231399821 doesn't seem to be mutated. Here are the mutated foci.Position 231403414 doesn't seem to be mutated. Here are the mutated foci.Position 231403534 doesn't seem to be mutated. Here are the mutated foci.Position 231406072 doesn't seem to be mutated. Here are the mutated foci.Position 231406402 doesn't seem to be mutated. Here are the mutated foci.Position 231406497 doesn't seem to be mutated. Here are the mutated foci.Position 231409116 doesn't seem to be mutated. Here are the mutated foci.Position 231409479 doesn't seem to be mutated. Here are the mutated foci.Position 231412240 doesn't seem to be mutated. Here are the mutated foci.Position 231424020 doesn't seem to be mutated. Here are the mutated foci.Position 241503927 doesn't seem to be mutated. Here are the mutated foci.Position 241510265 doesn't seem to be mutated. Here are the mutated foci.Position 241513867 doesn't seem to be mutated. Here are the mutated foci.Position 241517808 doesn't seem to be mutated. Here are the mutated foci.Position 241521849 doesn't seem to be mutated. Here are the mutated foci.Position 3574325 doesn't seem to be mutated. Here are the mutated foci.Position 3575288 doesn't seem to be mutated. Here are the mutated foci.Position 3576535 doesn't seem to be mutated. Here are the mutated foci.Position 3576654 doesn't seem to be mutated. Here are the mutated foci.Position 29198662 doesn't seem to be mutated. Here are the mutated foci.Position 29212012 doesn't seem to be mutated. Here are the mutated foci.Position 29219554 doesn't seem to be mutated. Here are the mutated foci.Position 29221023 doesn't seem to be mutated. Here are the mutated foci.Position 29221833 doesn't seem to be mutated. Here are the mutated foci.Position 29223008 doesn't seem to be mutated. Here are the mutated foci.Position 29223274 doesn't seem to be mutated. Here are the mutated foci.Position 29223484 doesn't seem to be mutated. Here are the mutated foci.Position 29223621 doesn't seem to be mutated. Here are the mutated foci.Position 29230485 doesn't seem to be mutated. Here are the mutated foci.Position 29233975 doesn't seem to be mutated. Here are the mutated foci.Position 29239976 doesn't seem to be mutated. Here are the mutated foci.Position 29243485 doesn't seem to be mutated. Here are the mutated foci.Position 29243959 doesn't seem to be mutated. Here are the mutated foci.Position 29244889 doesn't seem to be mutated. Here are the mutated foci.Position 29253576 doesn't seem to be mutated. Here are the mutated foci.Position 29255570 doesn't seem to be mutated. Here are the mutated foci.Position 29255817 doesn't seem to be mutated. Here are the mutated foci.Position 29272356 doesn't seem to be mutated. Here are the mutated foci.Position 29273444 doesn't seem to be mutated. Here are the mutated foci.Position 29278654 doesn't seem to be mutated. Here are the mutated foci.Position 29279787 doesn't seem to be mutated. Here are the mutated foci.Position 29290364 doesn't seem to be mutated. Here are the mutated foci.Position 29290819 doesn't seem to be mutated. Here are the mutated foci.Position 29295445 doesn't seem to be mutated. Here are the mutated foci.Position 29298629 doesn't seem to be mutated. Here are the mutated foci.Position 29312498 doesn't seem to be mutated. Here are the mutated foci.Position 29313268 doesn't seem to be mutated. Here are the mutated foci.Position 29319176 doesn't seem to be mutated. Here are the mutated foci.Position 29328804 doesn't seem to be mutated. Here are the mutated foci.Position 29328911 doesn't seem to be mutated. Here are the mutated foci.Position 29330411 doesn't seem to be mutated. Here are the mutated foci.Position 29334231 doesn't seem to be mutated. Here are the mutated foci.Position 29344010 doesn't seem to be mutated. Here are the mutated foci.Position 29346742 doesn't seem to be mutated. Here are the mutated foci.Position 29350553 doesn't seem to be mutated. Here are the mutated foci.Position 29368178 doesn't seem to be mutated. Here are the mutated foci.Position 29388996 doesn't seem to be mutated. Here are the mutated foci.Position 29392238 doesn't seem to be mutated. Here are the mutated foci.Position 29400212 doesn't seem to be mutated. Here are the mutated foci.Position 29404659 doesn't seem to be mutated. Here are the mutated foci.Position 29406629 doesn't seem to be mutated. Here are the mutated foci.Position 29409243 doesn't seem to be mutated. Here are the mutated foci.Position 29411838 doesn't seem to be mutated. Here are the mutated foci.Position 29417329 doesn't seem to be mutated. Here are the mutated foci.Position 29425314 doesn't seem to be mutated. Here are the mutated foci.Position 29436621 doesn't seem to be mutated. Here are the mutated foci.Position 29438141 doesn't seem to be mutated. Here are the mutated foci.Position 29456637 doesn't seem to be mutated. Here are the mutated foci.Position 29458175 doesn't seem to be mutated. Here are the mutated foci.Position 29465743 doesn't seem to be mutated. Here are the mutated foci.Position 29487262 doesn't seem to be mutated. Here are the mutated foci.Position 29490565 doesn't seem to be mutated. Here are the mutated foci.Position 29516585 doesn't seem to be mutated. Here are the mutated foci.Position 29523984 doesn't seem to be mutated. Here are the mutated foci.Position 29526918 doesn't seem to be mutated. Here are the mutated foci.Position 29534914 doesn't seem to be mutated. Here are the mutated foci.Position 29538619 doesn't seem to be mutated. Here are the mutated foci.Position 29543626 doesn't seem to be mutated. Here are the mutated foci.Position 29543755 doesn't seem to be mutated. Here are the mutated foci.Position 29565440 doesn't seem to be mutated. Here are the mutated foci.Position 29568849 doesn't seem to be mutated. Here are the mutated foci.Position 29574552 doesn't seem to be mutated. Here are the mutated foci.Position 29577835 doesn't seem to be mutated. Here are the mutated foci.Position 29578037 doesn't seem to be mutated. Here are the mutated foci.Position 29588477 doesn't seem to be mutated. Here are the mutated foci.Position 29589051 doesn't seem to be mutated. Here are the mutated foci.Position 29600618 doesn't seem to be mutated. Here are the mutated foci.Position 29615613 doesn't seem to be mutated. Here are the mutated foci.Position 29621279 doesn't seem to be mutated. Here are the mutated foci.Position 29623144 doesn't seem to be mutated. Here are the mutated foci.Position 29624601 doesn't seem to be mutated. Here are the mutated foci.Position 29634476 doesn't seem to be mutated. Here are the mutated foci.Position 29637138 doesn't seem to be mutated. Here are the mutated foci.Position 29637619 doesn't seem to be mutated. Here are the mutated foci.Position 29638695 doesn't seem to be mutated. Here are the mutated foci.Position 29647163 doesn't seem to be mutated. Here are the mutated foci.Position 29649692 doesn't seem to be mutated. Here are the mutated foci.Position 29662361 doesn't seem to be mutated. Here are the mutated foci.Position 29683206 doesn't seem to be mutated. Here are the mutated foci.Position 29686862 doesn't seem to be mutated. Here are the mutated foci.Position 29687398 doesn't seem to be mutated. Here are the mutated foci.Position 29694209 doesn't seem to be mutated. Here are the mutated foci.Position 29695961 doesn't seem to be mutated. Here are the mutated foci.Position 29701564 doesn't seem to be mutated. Here are the mutated foci.Position 29707469 doesn't seem to be mutated. Here are the mutated foci.Position 29709564 doesn't seem to be mutated. Here are the mutated foci.Position 29712756 doesn't seem to be mutated. Here are the mutated foci.Position 29716628 doesn't seem to be mutated. Here are the mutated foci.Position 29724926 doesn't seem to be mutated. Here are the mutated foci.Position 29726585 doesn't seem to be mutated. Here are the mutated foci.Position 29728049 doesn't seem to be mutated. Here are the mutated foci.Position 29735151 doesn't seem to be mutated. Here are the mutated foci.Position 29744341 doesn't seem to be mutated. Here are the mutated foci.Position 29746333 doesn't seem to be mutated. Here are the mutated foci.Position 29748737 doesn't seem to be mutated. Here are the mutated foci.Position 29749141 doesn't seem to be mutated. Here are the mutated foci.Position 29753350 doesn't seem to be mutated. Here are the mutated foci.Position 29758177 doesn't seem to be mutated. Here are the mutated foci.Position 29760711 doesn't seem to be mutated. Here are the mutated foci.Position 29763903 doesn't seem to be mutated. Here are the mutated foci.Position 29768149 doesn't seem to be mutated. Here are the mutated foci.Position 29768743 doesn't seem to be mutated. Here are the mutated foci.Position 29774570 doesn't seem to be mutated. Here are the mutated foci.Position 29778368 doesn't seem to be mutated. Here are the mutated foci.Position 29779165 doesn't seem to be mutated. Here are the mutated foci.Position 29779173 doesn't seem to be mutated. Here are the mutated foci.Position 29784894 doesn't seem to be mutated. Here are the mutated foci.Position 29796020 doesn't seem to be mutated. Here are the mutated foci.Position 29798838 doesn't seem to be mutated. Here are the mutated foci.Position 29801539 doesn't seem to be mutated. Here are the mutated foci.Position 29826623 doesn't seem to be mutated. Here are the mutated foci.Position 29830096 doesn't seem to be mutated. Here are the mutated foci.Position 29843954 doesn't seem to be mutated. Here are the mutated foci.Position 29844276 doesn't seem to be mutated. Here are the mutated foci.Position 29844970 doesn't seem to be mutated. Here are the mutated foci.Position 29846492 doesn't seem to be mutated. Here are the mutated foci.Position 29850541 doesn't seem to be mutated. Here are the mutated foci.Position 29855437 doesn't seem to be mutated. Here are the mutated foci.Position 29856711 doesn't seem to be mutated. Here are the mutated foci.Position 29858146 doesn't seem to be mutated. Here are the mutated foci.Position 29862642 doesn't seem to be mutated. Here are the mutated foci.Position 29863747 doesn't seem to be mutated. Here are the mutated foci.Position 29863751 doesn't seem to be mutated. Here are the mutated foci.Position 29864007 doesn't seem to be mutated. Here are the mutated foci.Position 29865038 doesn't seem to be mutated. Here are the mutated foci.Position 29870343 doesn't seem to be mutated. Here are the mutated foci.Position 29876616 doesn't seem to be mutated. Here are the mutated foci.Position 29877286 doesn't seem to be mutated. Here are the mutated foci.Position 29879695 doesn't seem to be mutated. Here are the mutated foci.Position 29890584 doesn't seem to be mutated. Here are the mutated foci.Position 29895649 doesn't seem to be mutated. Here are the mutated foci.Position 29897318 doesn't seem to be mutated. Here are the mutated foci.Position 29899804 doesn't seem to be mutated. Here are the mutated foci.Position 29902581 doesn't seem to be mutated. Here are the mutated foci.Position 29903006 doesn't seem to be mutated. Here are the mutated foci.Position 29905457 doesn't seem to be mutated. Here are the mutated foci.Position 29907261 doesn't seem to be mutated. Here are the mutated foci.Position 29909752 doesn't seem to be mutated. Here are the mutated foci.Position 29910714 doesn't seem to be mutated. Here are the mutated foci.Position 29910917 doesn't seem to be mutated. Here are the mutated foci.Position 29912284 doesn't seem to be mutated. Here are the mutated foci.Position 29912769 doesn't seem to be mutated. Here are the mutated foci.Position 29914577 doesn't seem to be mutated. Here are the mutated foci.Position 29921719 doesn't seem to be mutated. Here are the mutated foci.Position 38987889 doesn't seem to be mutated. Here are the mutated foci.Position 38989991 doesn't seem to be mutated. Here are the mutated foci.Position 38990148 doesn't seem to be mutated. Here are the mutated foci.Position 38991108 doesn't seem to be mutated. Here are the mutated foci.Position 38993056 doesn't seem to be mutated. Here are the mutated foci.Position 38998233 doesn't seem to be mutated. Here are the mutated foci.Position 39006087 doesn't seem to be mutated. Here are the mutated foci.Position 39011041 doesn't seem to be mutated. Here are the mutated foci.Position 39011441 doesn't seem to be mutated. Here are the mutated foci.Position 39016650 doesn't seem to be mutated. Here are the mutated foci.Position 39021539 doesn't seem to be mutated. Here are the mutated foci.Position 39021543 doesn't seem to be mutated. Here are the mutated foci.Position 39027750 doesn't seem to be mutated. Here are the mutated foci.Position 39046724 doesn't seem to be mutated. Here are the mutated foci.Position 39048783 doesn't seem to be mutated. Here are the mutated foci.Position 39053905 doesn't seem to be mutated. Here are the mutated foci.Position 39056635 doesn't seem to be mutated. Here are the mutated foci.Position 39056649 doesn't seem to be mutated. Here are the mutated foci.Position 39067293 doesn't seem to be mutated. Here are the mutated foci.Position 39069295 doesn't seem to be mutated. Here are the mutated foci.Position 39073821 doesn't seem to be mutated. Here are the mutated foci.Position 39074441 doesn't seem to be mutated. Here are the mutated foci.Position 39074507 doesn't seem to be mutated. Here are the mutated foci.Position 39078168 doesn't seem to be mutated. Here are the mutated foci.Position 39082894 doesn't seem to be mutated. Here are the mutated foci.Position 39085417 doesn't seem to be mutated. Here are the mutated foci.Position 39086122 doesn't seem to be mutated. Here are the mutated foci.Position 39094117 doesn't seem to be mutated. Here are the mutated foci.Position 39095075 doesn't seem to be mutated. Here are the mutated foci.Position 39101226 doesn't seem to be mutated. Here are the mutated foci.Position 39102771 doesn't seem to be mutated. Here are the mutated foci.Position 39104950 doesn't seem to be mutated. Here are the mutated foci.Position 39109694 doesn't seem to be mutated. Here are the mutated foci.Position 39110105 doesn't seem to be mutated. Here are the mutated foci.Position 39111586 doesn't seem to be mutated. Here are the mutated foci.Position 39113720 doesn't seem to be mutated. Here are the mutated foci.Position 39119437 doesn't seem to be mutated. Here are the mutated foci.Position 39122271 doesn't seem to be mutated. Here are the mutated foci.Position 47365685 doesn't seem to be mutated. Here are the mutated foci.Position 47367400 doesn't seem to be mutated. Here are the mutated foci.Position 47367871 doesn't seem to be mutated. Here are the mutated foci.Position 47368730 doesn't seem to be mutated. Here are the mutated foci.Position 47370161 doesn't seem to be mutated. Here are the mutated foci.Position 47370910 doesn't seem to be mutated. Here are the mutated foci.Position 47374497 doesn't seem to be mutated. Here are the mutated foci.Position 47376480 doesn't seem to be mutated. Here are the mutated foci.Position 47381811 doesn't seem to be mutated. Here are the mutated foci.Position 47386146 doesn't seem to be mutated. Here are the mutated foci.Position 47403874 doesn't seem to be mutated. Here are the mutated foci.Position 47404286 doesn't seem to be mutated. Here are the mutated foci.Position 47406616 doesn't seem to be mutated. Here are the mutated foci.Position 47407738 doesn't seem to be mutated. Here are the mutated foci.Position 47407858 doesn't seem to be mutated. Here are the mutated foci.Position 47412084 doesn't seem to be mutated. Here are the mutated foci.Position 47412314 doesn't seem to be mutated. Here are the mutated foci.Position 47416608 doesn't seem to be mutated. Here are the mutated foci.Position 47418159 doesn't seem to be mutated. Here are the mutated foci.Position 47423344 doesn't seem to be mutated. Here are the mutated foci.Position 47428486 doesn't seem to be mutated. Here are the mutated foci.Position 47434611 doesn't seem to be mutated. Here are the mutated foci.Position 47434808 doesn't seem to be mutated. Here are the mutated foci.Position 47435987 doesn't seem to be mutated. Here are the mutated foci.Position 47438492 doesn't seem to be mutated. Here are the mutated foci.Position 47445192 doesn't seem to be mutated. Here are the mutated foci.Position 47456876 doesn't seem to be mutated. Here are the mutated foci.Position 47458144 doesn't seem to be mutated. Here are the mutated foci.Position 47458579 doesn't seem to be mutated. Here are the mutated foci.Position 47460864 doesn't seem to be mutated. Here are the mutated foci.Position 47464982 doesn't seem to be mutated. Here are the mutated foci.Position 47467482 doesn't seem to be mutated. Here are the mutated foci.Position 47481537 doesn't seem to be mutated. Here are the mutated foci.Position 47485388 doesn't seem to be mutated. Here are the mutated foci.Position 47489725 doesn't seem to be mutated. Here are the mutated foci.Position 47499477 doesn't seem to be mutated. Here are the mutated foci.Position 47504935 doesn't seem to be mutated. Here are the mutated foci.Position 47582353 doesn't seem to be mutated. Here are the mutated foci.Position 47583348 doesn't seem to be mutated. Here are the mutated foci.Position 47583481 doesn't seem to be mutated. Here are the mutated foci.Position 47584182 doesn't seem to be mutated. Here are the mutated foci.Position 47615556 doesn't seem to be mutated. Here are the mutated foci.Position 47622280 doesn't seem to be mutated. Here are the mutated foci.Position 47627322 doesn't seem to be mutated. Here are the mutated foci.Position 47630266 doesn't seem to be mutated. Here are the mutated foci.Position 47632665 doesn't seem to be mutated. Here are the mutated foci.Position 47638219 doesn't seem to be mutated. Here are the mutated foci.Position 47650754 doesn't seem to be mutated. Here are the mutated foci.Position 47663494 doesn't seem to be mutated. Here are the mutated foci.Position 47696780 doesn't seem to be mutated. Here are the mutated foci.Position 47696844 doesn't seem to be mutated. Here are the mutated foci.Position 47699501 doesn't seem to be mutated. Here are the mutated foci.Position 47713954 doesn't seem to be mutated. Here are the mutated foci.Position 47715782 doesn't seem to be mutated. Here are the mutated foci.Position 47724660 doesn't seem to be mutated. Here are the mutated foci.Position 47725405 doesn't seem to be mutated. Here are the mutated foci.Position 47737141 doesn't seem to be mutated. Here are the mutated foci.Position 47755357 doesn't seem to be mutated. Here are the mutated foci.Position 47758478 doesn't seem to be mutated. Here are the mutated foci.Position 47758727 doesn't seem to be mutated. Here are the mutated foci.Position 47761137 doesn't seem to be mutated. Here are the mutated foci.Position 47762340 doesn't seem to be mutated. Here are the mutated foci.Position 47762601 doesn't seem to be mutated. Here are the mutated foci.Position 47782054 doesn't seem to be mutated. Here are the mutated foci.Position 47784650 doesn't seem to be mutated. Here are the mutated foci.Position 47785074 doesn't seem to be mutated. Here are the mutated foci.Position 47785662 doesn't seem to be mutated. Here are the mutated foci.Position 47786984 doesn't seem to be mutated. Here are the mutated foci.Position 47787343 doesn't seem to be mutated. Here are the mutated foci.Position 47809914 doesn't seem to be mutated. Here are the mutated foci.Position 58160276 doesn't seem to be mutated. Here are the mutated foci.Position 58161146 doesn't seem to be mutated. Here are the mutated foci.Position 58165826 doesn't seem to be mutated. Here are the mutated foci.Position 58166794 doesn't seem to be mutated. Here are the mutated foci.Position 58167216 doesn't seem to be mutated. Here are the mutated foci.Position 58168461 doesn't seem to be mutated. Here are the mutated foci.Position 58169451 doesn't seem to be mutated. Here are the mutated foci.Position 58178499 doesn't seem to be mutated. Here are the mutated foci.Position 58179519 doesn't seem to be mutated. Here are the mutated foci.Position 58179891 doesn't seem to be mutated. Here are the mutated foci.Position 58180671 doesn't seem to be mutated. Here are the mutated foci.Position 58184785 doesn't seem to be mutated. Here are the mutated foci.Position 58190703 doesn't seem to be mutated. Here are the mutated foci.Position 58193621 doesn't seem to be mutated. Here are the mutated foci.Position 58197980 doesn't seem to be mutated. Here are the mutated foci.Position 58201677 doesn't seem to be mutated. Here are the mutated foci.Position 58202078 doesn't seem to be mutated. Here are the mutated foci.Position 58202521 doesn't seem to be mutated. Here are the mutated foci.Position 58204515 doesn't seem to be mutated. Here are the mutated foci.Position 58208940 doesn't seem to be mutated. Here are the mutated foci.Position 58215334 doesn't seem to be mutated. Here are the mutated foci.Position 58216569 doesn't seem to be mutated. Here are the mutated foci.Position 58219796 doesn't seem to be mutated. Here are the mutated foci.Position 58220156 doesn't seem to be mutated. Here are the mutated foci.Position 58221722 doesn't seem to be mutated. Here are the mutated foci.Position 58230125 doesn't seem to be mutated. Here are the mutated foci.Position 58237897 doesn't seem to be mutated. Here are the mutated foci.Position 58237970 doesn't seem to be mutated. Here are the mutated foci.Position 58238985 doesn't seem to be mutated. Here are the mutated foci.Position 96251949 doesn't seem to be mutated. Here are the mutated foci.Position 96253234 doesn't seem to be mutated. Here are the mutated foci.Position 96254098 doesn't seem to be mutated. Here are the mutated foci.Position 96256426 doesn't seem to be mutated. Here are the mutated foci.Position 96257040 doesn't seem to be mutated. Here are the mutated foci.Position 96257410 doesn't seem to be mutated. Here are the mutated foci.Position 96264660 doesn't seem to be mutated. Here are the mutated foci.Position 127258241 doesn't seem to be mutated. Here are the mutated foci.Position 127263098 doesn't seem to be mutated. Here are the mutated foci.Position 127267176 doesn't seem to be mutated. Here are the mutated foci.Position 127272503 doesn't seem to be mutated. Here are the mutated foci.Position 127277542 doesn't seem to be mutated. Here are the mutated foci.Position 127279653 doesn't seem to be mutated. Here are the mutated foci.Position 127282285 doesn't seem to be mutated. Here are the mutated foci.Position 127286355 doesn't seem to be mutated. Here are the mutated foci.Position 127286698 doesn't seem to be mutated. Here are the mutated foci.Position 127287398 doesn't seem to be mutated. Here are the mutated foci.Position 127289268 doesn't seem to be mutated. Here are the mutated foci.Position 127290175 doesn't seem to be mutated. Here are the mutated foci.Position 127290447 doesn't seem to be mutated. Here are the mutated foci.Position 127290937 doesn't seem to be mutated. Here are the mutated foci.Position 127294419 doesn't seem to be mutated. Here are the mutated foci.Position 127295428 doesn't seem to be mutated. Here are the mutated foci.Position 127295851 doesn't seem to be mutated. Here are the mutated foci.Position 127296383 doesn't seem to be mutated. Here are the mutated foci.Position 144359995 doesn't seem to be mutated. Here are the mutated foci.Position 144363506 doesn't seem to be mutated. Here are the mutated foci.Position 144366518 doesn't seem to be mutated. Here are the mutated foci.Position 144376849 doesn't seem to be mutated. Here are the mutated foci.Position 144378184 doesn't seem to be mutated. Here are the mutated foci.Position 144378653 doesn't seem to be mutated. Here are the mutated foci.Position 144383670 doesn't seem to be mutated. Here are the mutated foci.Position 144388510 doesn't seem to be mutated. Here are the mutated foci.Position 144389415 doesn't seem to be mutated. Here are the mutated foci.Position 144389946 doesn't seem to be mutated. Here are the mutated foci.Position 144389992 doesn't seem to be mutated. Here are the mutated foci.Position 144390788 doesn't seem to be mutated. Here are the mutated foci.Position 144393409 doesn't seem to be mutated. Here are the mutated foci.Position 144393778 doesn't seem to be mutated. Here are the mutated foci.Position 144394008 doesn't seem to be mutated. Here are the mutated foci.Position 144394275 doesn't seem to be mutated. Here are the mutated foci.Position 144395459 doesn't seem to be mutated. Here are the mutated foci.Position 144395756 doesn't seem to be mutated. Here are the mutated foci.Position 144396533 doesn't seem to be mutated. Here are the mutated foci.Position 144398888 doesn't seem to be mutated. Here are the mutated foci.Position 144399473 doesn't seem to be mutated. Here are the mutated foci.Position 144400223 doesn't seem to be mutated. Here are the mutated foci.Position 144402736 doesn't seem to be mutated. Here are the mutated foci.Position 144402743 doesn't seem to be mutated. Here are the mutated foci.Position 144410043 doesn't seem to be mutated. Here are the mutated foci.Position 144413582 doesn't seem to be mutated. Here are the mutated foci.Position 144418728 doesn't seem to be mutated. Here are the mutated foci.Position 144420223 doesn't seem to be mutated. Here are the mutated foci.Position 144422903 doesn't seem to be mutated. Here are the mutated foci.Position 144423915 doesn't seem to be mutated. Here are the mutated foci.Position 144427884 doesn't seem to be mutated. Here are the mutated foci.Position 144429787 doesn't seem to be mutated. Here are the mutated foci.Position 144433461 doesn't seem to be mutated. Here are the mutated foci.Position 144435289 doesn't seem to be mutated. Here are the mutated foci.Position 144443659 doesn't seem to be mutated. Here are the mutated foci.Position 144445799 doesn't seem to be mutated. Here are the mutated foci.Position 144446714 doesn't seem to be mutated. Here are the mutated foci.Position 144447258 doesn't seem to be mutated. Here are the mutated foci.Position 144450125 doesn't seem to be mutated. Here are the mutated foci.Position 144451348 doesn't seem to be mutated. Here are the mutated foci.Position 144451682 doesn't seem to be mutated. Here are the mutated foci.Position 144453430 doesn't seem to be mutated. Here are the mutated foci.Position 144456155 doesn't seem to be mutated. Here are the mutated foci.Position 144457450 doesn't seem to be mutated. Here are the mutated foci.Position 144460243 doesn't seem to be mutated. Here are the mutated foci.Position 144467345 doesn't seem to be mutated. Here are the mutated foci.Position 144468473 doesn't seem to be mutated. Here are the mutated foci.Position 144469187 doesn't seem to be mutated. Here are the mutated foci.Position 144469198 doesn't seem to be mutated. Here are the mutated foci.Position 144471181 doesn't seem to be mutated. Here are the mutated foci.Position 144477864 doesn't seem to be mutated. Here are the mutated foci.Position 144478414 doesn't seem to be mutated. Here are the mutated foci.Position 144478428 doesn't seem to be mutated. Here are the mutated foci.Position 144481378 doesn't seem to be mutated. Here are the mutated foci.Position 144485589 doesn't seem to be mutated. Here are the mutated foci.Position 144485840 doesn't seem to be mutated. Here are the mutated foci.Position 144491020 doesn't seem to be mutated. Here are the mutated foci.Position 144492837 doesn't seem to be mutated. Here are the mutated foci.Position 144494023 doesn't seem to be mutated. Here are the mutated foci.Position 144496408 doesn't seem to be mutated. Here are the mutated foci.Position 144498284 doesn't seem to be mutated. Here are the mutated foci.Position 144499728 doesn't seem to be mutated. Here are the mutated foci.Position 144500522 doesn't seem to be mutated. Here are the mutated foci.Position 144501045 doesn't seem to be mutated. Here are the mutated foci.Position 144501710 doesn't seem to be mutated. Here are the mutated foci.Position 144505785 doesn't seem to be mutated. Here are the mutated foci.Position 144509495 doesn't seem to be mutated. Here are the mutated foci.Position 144510698 doesn't seem to be mutated. Here are the mutated foci.Position 144528436 doesn't seem to be mutated. Here are the mutated foci.Position 168919500 doesn't seem to be mutated. Here are the mutated foci.Position 168923928 doesn't seem to be mutated. Here are the mutated foci.Position 168926698 doesn't seem to be mutated. Here are the mutated foci.Position 168930094 doesn't seem to be mutated. Here are the mutated foci.Position 168930637 doesn't seem to be mutated. Here are the mutated foci.Position 168935353 doesn't seem to be mutated. Here are the mutated foci.Position 168938085 doesn't seem to be mutated. Here are the mutated foci.Position 168938901 doesn't seem to be mutated. Here are the mutated foci.Position 168947200 doesn't seem to be mutated. Here are the mutated foci.Position 168948270 doesn't seem to be mutated. Here are the mutated foci.Position 168953978 doesn't seem to be mutated. Here are the mutated foci.Position 168957248 doesn't seem to be mutated. Here are the mutated foci.Position 168958341 doesn't seem to be mutated. Here are the mutated foci.Position 168958678 doesn't seem to be mutated. Here are the mutated foci.Position 168959359 doesn't seem to be mutated. Here are the mutated foci.Position 168964208 doesn't seem to be mutated. Here are the mutated foci.Position 168966652 doesn't seem to be mutated. Here are the mutated foci.Position 168966772 doesn't seem to be mutated. Here are the mutated foci.Position 168967241 doesn't seem to be mutated. Here are the mutated foci.Position 168974638 doesn't seem to be mutated. Here are the mutated foci.Position 168974747 doesn't seem to be mutated. Here are the mutated foci.Position 168976871 doesn't seem to be mutated. Here are the mutated foci.Position 168984664 doesn't seem to be mutated. Here are the mutated foci.Position 168984739 doesn't seem to be mutated. Here are the mutated foci.Position 168989982 doesn't seem to be mutated. Here are the mutated foci.Position 168992708 doesn't seem to be mutated. Here are the mutated foci.Position 168998418 doesn't seem to be mutated. Here are the mutated foci.Position 168999729 doesn't seem to be mutated. Here are the mutated foci.Position 169006012 doesn't seem to be mutated. Here are the mutated foci.Position 169017073 doesn't seem to be mutated. Here are the mutated foci.Position 169033322 doesn't seem to be mutated. Here are the mutated foci.Position 169034222 doesn't seem to be mutated. Here are the mutated foci.Position 214723373 doesn't seem to be mutated. Here are the mutated foci.Position 214727708 doesn't seem to be mutated. Here are the mutated foci.Position 214733374 doesn't seem to be mutated. Here are the mutated foci.Position 214735148 doesn't seem to be mutated. Here are the mutated foci.Position 214741333 doesn't seem to be mutated. Here are the mutated foci.Position 214744857 doesn't seem to be mutated. Here are the mutated foci.Position 214754635 doesn't seem to be mutated. Here are the mutated foci.Position 214755446 doesn't seem to be mutated. Here are the mutated foci.Position 214767150 doesn't seem to be mutated. Here are the mutated foci.Position 214768146 doesn't seem to be mutated. Here are the mutated foci.Position 214770390 doesn't seem to be mutated. Here are the mutated foci.Position 214773656 doesn't seem to be mutated. Here are the mutated foci.Position 214779564 doesn't seem to be mutated. Here are the mutated foci.Position 214782390 doesn't seem to be mutated. Here are the mutated foci.Position 214789841 doesn't seem to be mutated. Here are the mutated foci.Position 214792049 doesn't seem to be mutated. Here are the mutated foci.Position 214793313 doesn't seem to be mutated. Here are the mutated foci.Position 214793569 doesn't seem to be mutated. Here are the mutated foci.Position 214795726 doesn't seem to be mutated. Here are the mutated foci.Position 214798657 doesn't seem to be mutated. Here are the mutated foci.Position 214801137 doesn't seem to be mutated. Here are the mutated foci.Position 214803025 doesn't seem to be mutated. Here are the mutated foci.Position 214803554 doesn't seem to be mutated. Here are the mutated foci.Position 214814561 doesn't seem to be mutated. Here are the mutated foci.Position 231962678 doesn't seem to be mutated. Here are the mutated foci.Position 231965108 doesn't seem to be mutated. Here are the mutated foci.Position 231969093 doesn't seem to be mutated. Here are the mutated foci.Position 231984873 doesn't seem to be mutated. Here are the mutated foci.Position 231985530 doesn't seem to be mutated. Here are the mutated foci.Position 231987215 doesn't seem to be mutated. Here are the mutated foci.Position 231989709 doesn't seem to be mutated. Here are the mutated foci.Position 231992985 doesn't seem to be mutated. Here are the mutated foci.Position 231993237 doesn't seem to be mutated. Here are the mutated foci.Position 231993411 doesn't seem to be mutated. Here are the mutated foci.Position 231995627 doesn't seem to be mutated. Here are the mutated foci.Position 231996381 doesn't seem to be mutated. Here are the mutated foci.Position 231997063 doesn't seem to be mutated. Here are the mutated foci.Position 232007345 doesn't seem to be mutated. Here are the mutated foci.Position 232008382 doesn't seem to be mutated. Here are the mutated foci.Position 232012209 doesn't seem to be mutated. Here are the mutated foci.Position 232019832 doesn't seem to be mutated. Here are the mutated foci.Position 232023405 doesn't seem to be mutated. Here are the mutated foci.Position 232023870 doesn't seem to be mutated. Here are the mutated foci.Position 232028128 doesn't seem to be mutated. Here are the mutated foci.Position 232031577 doesn't seem to be mutated. Here are the mutated foci.Position 232060044 doesn't seem to be mutated. Here are the mutated foci.Position 232061516 doesn't seem to be mutated. Here are the mutated foci.Position 232065741 doesn't seem to be mutated. Here are the mutated foci.Position 232070646 doesn't seem to be mutated. Here are the mutated foci.Position 232072438 doesn't seem to be mutated. Here are the mutated foci.Position 232078054 doesn't seem to be mutated. Here are the mutated foci.Position 232082940 doesn't seem to be mutated. Here are the mutated foci.Position 232083657 doesn't seem to be mutated. Here are the mutated foci.Position 232084999 doesn't seem to be mutated. Here are the mutated foci.Position 232087823 doesn't seem to be mutated. Here are the mutated foci.Position 232089830 doesn't seem to be mutated. Here are the mutated foci.Position 232092472 doesn't seem to be mutated. Here are the mutated foci.Position 232106911 doesn't seem to be mutated. Here are the mutated foci.Position 232107185 doesn't seem to be mutated. Here are the mutated foci.Position 232109980 doesn't seem to be mutated. Here are the mutated foci.Position 232110428 doesn't seem to be mutated. Here are the mutated foci.Position 232119657 doesn't seem to be mutated. Here are the mutated foci.Position 232122334 doesn't seem to be mutated. Here are the mutated foci.Position 232124799 doesn't seem to be mutated. Here are the mutated foci.Position 232125247 doesn't seem to be mutated. Here are the mutated foci.Position 232131121 doesn't seem to be mutated. Here are the mutated foci.Position 232131825 doesn't seem to be mutated. Here are the mutated foci.Position 232142318 doesn't seem to be mutated. Here are the mutated foci.Position 232156522 doesn't seem to be mutated. Here are the mutated foci.Position 232159068 doesn't seem to be mutated. Here are the mutated foci.Position 232166772 doesn't seem to be mutated. Here are the mutated foci.Position 232176267 doesn't seem to be mutated. Here are the mutated foci.Position 232182837 doesn't seem to be mutated. Here are the mutated foci.Position 232185991 doesn't seem to be mutated. Here are the mutated foci.Position 232186710 doesn't seem to be mutated. Here are the mutated foci.Position 232189460 doesn't seem to be mutated. Here are the mutated foci.Position 232195859 doesn't seem to be mutated. Here are the mutated foci.Position 232232915 doesn't seem to be mutated. Here are the mutated foci.Position 232234512 doesn't seem to be mutated. Here are the mutated foci.Position 232235472 doesn't seem to be mutated. Here are the mutated foci.Position 232237587 doesn't seem to be mutated. Here are the mutated foci.Position 232239001 doesn't seem to be mutated. Here are the mutated foci.Position 232239965 doesn't seem to be mutated. Here are the mutated foci.Position 232240193 doesn't seem to be mutated. Here are the mutated foci.Position 232240282 doesn't seem to be mutated. Here are the mutated foci.Position 232255231 doesn't seem to be mutated. Here are the mutated foci.Position 232255666 doesn't seem to be mutated. Here are the mutated foci.Position 232256550 doesn't seem to be mutated. Here are the mutated foci.Position 232259120 doesn't seem to be mutated. Here are the mutated foci.Position 232267824 doesn't seem to be mutated. Here are the mutated foci.Position 232268997 doesn't seem to be mutated. Here are the mutated foci.Position 232276047 doesn't seem to be mutated. Here are the mutated foci.Position 232281315 doesn't seem to be mutated. Here are the mutated foci.Position 232289737 doesn't seem to be mutated. Here are the mutated foci.Position 232291774 doesn't seem to be mutated. Here are the mutated foci.Position 232300257 doesn't seem to be mutated. Here are the mutated foci.Position 232303990 doesn't seem to be mutated. Here are the mutated foci.Position 232304607 doesn't seem to be mutated. Here are the mutated foci.Position 232305981 doesn't seem to be mutated. Here are the mutated foci.Position 232308881 doesn't seem to be mutated. Here are the mutated foci.Position 232309626 doesn't seem to be mutated. Here are the mutated foci.Position 232312177 doesn't seem to be mutated. Here are the mutated foci.Position 232320368 doesn't seem to be mutated. Here are the mutated foci.Position 232327064 doesn't seem to be mutated. Here are the mutated foci.Position 232329981 doesn't seem to be mutated. Here are the mutated foci.Position 232336987 doesn't seem to be mutated. Here are the mutated foci.Position 232337487 doesn't seem to be mutated. Here are the mutated foci.Position 10027297 doesn't seem to be mutated. Here are the mutated foci.Position 10035817 doesn't seem to be mutated. Here are the mutated foci.Position 10036642 doesn't seem to be mutated. Here are the mutated foci.Position 10039414 doesn't seem to be mutated. Here are the mutated foci.Position 10046085 doesn't seem to be mutated. Here are the mutated foci.Position 10054810 doesn't seem to be mutated. Here are the mutated foci.Position 10063038 doesn't seem to be mutated. Here are the mutated foci.Position 10063296 doesn't seem to be mutated. Here are the mutated foci.Position 10069822 doesn't seem to be mutated. Here are the mutated foci.Position 10072973 doesn't seem to be mutated. Here are the mutated foci.Position 10074690 doesn't seem to be mutated. Here are the mutated foci.Position 10074904 doesn't seem to be mutated. Here are the mutated foci.Position 10080588 doesn't seem to be mutated. Here are the mutated foci.Position 10089677 doesn't seem to be mutated. Here are the mutated foci.Position 10091714 doesn't seem to be mutated. Here are the mutated foci.Position 10099952 doesn't seem to be mutated. Here are the mutated foci.Position 10100914 doesn't seem to be mutated. Here are the mutated foci.Position 10100984 doesn't seem to be mutated. Here are the mutated foci.Position 10136867 doesn't seem to be mutated. Here are the mutated foci.Position 10150876 doesn't seem to be mutated. Here are the mutated foci.Position 10152324 doesn't seem to be mutated. Here are the mutated foci.Position 10152480 doesn't seem to be mutated. Here are the mutated foci.Position 10154146 doesn't seem to be mutated. Here are the mutated foci.Position 10156303 doesn't seem to be mutated. Here are the mutated foci.Position 12596338 doesn't seem to be mutated. Here are the mutated foci.Position 12597680 doesn't seem to be mutated. Here are the mutated foci.Position 12598010 doesn't seem to be mutated. Here are the mutated foci.Position 12599202 doesn't seem to be mutated. Here are the mutated foci.Position 12600963 doesn't seem to be mutated. Here are the mutated foci.Position 12601548 doesn't seem to be mutated. Here are the mutated foci.Position 12603225 doesn't seem to be mutated. Here are the mutated foci.Position 12605198 doesn't seem to be mutated. Here are the mutated foci.Position 12611654 doesn't seem to be mutated. Here are the mutated foci.Position 12614249 doesn't seem to be mutated. Here are the mutated foci.Position 12619513 doesn't seem to be mutated. Here are the mutated foci.Position 12623693 doesn't seem to be mutated. Here are the mutated foci.Position 12624645 doesn't seem to be mutated. Here are the mutated foci.Position 12630173 doesn't seem to be mutated. Here are the mutated foci.Position 12649781 doesn't seem to be mutated. Here are the mutated foci.Position 12651877 doesn't seem to be mutated. Here are the mutated foci.Position 12658219 doesn't seem to be mutated. Here are the mutated foci.Position 12660085 doesn't seem to be mutated. Here are the mutated foci.Position 12662005 doesn't seem to be mutated. Here are the mutated foci.Position 12665044 doesn't seem to be mutated. Here are the mutated foci.Position 14150239 doesn't seem to be mutated. Here are the mutated foci.Position 14151640 doesn't seem to be mutated. Here are the mutated foci.Position 14151719 doesn't seem to be mutated. Here are the mutated foci.Position 14154965 doesn't seem to be mutated. Here are the mutated foci.Position 14163866 doesn't seem to be mutated. Here are the mutated foci.Position 14167135 doesn't seem to be mutated. Here are the mutated foci.Position 14171138 doesn't seem to be mutated. Here are the mutated foci.Position 14173396 doesn't seem to be mutated. Here are the mutated foci.Position 14175812 doesn't seem to be mutated. Here are the mutated foci.Position 36995375 doesn't seem to be mutated. Here are the mutated foci.Position 36995534 doesn't seem to be mutated. Here are the mutated foci.Position 37000450 doesn't seem to be mutated. Here are the mutated foci.Position 37005313 doesn't seem to be mutated. Here are the mutated foci.Position 37013072 doesn't seem to be mutated. Here are the mutated foci.Position 37017056 doesn't seem to be mutated. Here are the mutated foci.Position 37021869 doesn't seem to be mutated. Here are the mutated foci.Position 37026711 doesn't seem to be mutated. Here are the mutated foci.Position 37027681 doesn't seem to be mutated. Here are the mutated foci.Position 37033141 doesn't seem to be mutated. Here are the mutated foci.Position 37044632 doesn't seem to be mutated. Here are the mutated foci.Position 37048812 doesn't seem to be mutated. Here are the mutated foci.Position 48572249 doesn't seem to be mutated. Here are the mutated foci.Position 48577098 doesn't seem to be mutated. Here are the mutated foci.Position 48584876 doesn't seem to be mutated. Here are the mutated foci.Position 48587788 doesn't seem to be mutated. Here are the mutated foci.Position 48588059 doesn't seem to be mutated. Here are the mutated foci.Position 48590762 doesn't seem to be mutated. Here are the mutated foci.Position 48592012 doesn't seem to be mutated. Here are the mutated foci.Position 52402589 doesn't seem to be mutated. Here are the mutated foci.Position 52408328 doesn't seem to be mutated. Here are the mutated foci.Position 52409211 doesn't seem to be mutated. Here are the mutated foci.Position 69734443 doesn't seem to be mutated. Here are the mutated foci.Position 69736735 doesn't seem to be mutated. Here are the mutated foci.Position 69737044 doesn't seem to be mutated. Here are the mutated foci.Position 69746192 doesn't seem to be mutated. Here are the mutated foci.Position 69750114 doesn't seem to be mutated. Here are the mutated foci.Position 69751449 doesn't seem to be mutated. Here are the mutated foci.Position 69755061 doesn't seem to be mutated. Here are the mutated foci.Position 69775713 doesn't seem to be mutated. Here are the mutated foci.Position 69776980 doesn't seem to be mutated. Here are the mutated foci.Position 69781290 doesn't seem to be mutated. Here are the mutated foci.Position 69783135 doesn't seem to be mutated. Here are the mutated foci.Position 69808494 doesn't seem to be mutated. Here are the mutated foci.Position 69814658 doesn't seem to be mutated. Here are the mutated foci.Position 69814869 doesn't seem to be mutated. Here are the mutated foci.Position 69820526 doesn't seem to be mutated. Here are the mutated foci.Position 69824663 doesn't seem to be mutated. Here are the mutated foci.Position 69828211 doesn't seem to be mutated. Here are the mutated foci.Position 69829933 doesn't seem to be mutated. Here are the mutated foci.Position 69859602 doesn't seem to be mutated. Here are the mutated foci.Position 69874817 doesn't seem to be mutated. Here are the mutated foci.Position 69881423 doesn't seem to be mutated. Here are the mutated foci.Position 69887915 doesn't seem to be mutated. Here are the mutated foci.Position 69900995 doesn't seem to be mutated. Here are the mutated foci.Position 69909375 doesn't seem to be mutated. Here are the mutated foci.Position 69909994 doesn't seem to be mutated. Here are the mutated foci.Position 69916775 doesn't seem to be mutated. Here are the mutated foci.Position 69919489 doesn't seem to be mutated. Here are the mutated foci.Position 69920211 doesn't seem to be mutated. Here are the mutated foci.Position 69924275 doesn't seem to be mutated. Here are the mutated foci.Position 69928971 doesn't seem to be mutated. Here are the mutated foci.Position 69929666 doesn't seem to be mutated. Here are the mutated foci.Position 69930611 doesn't seem to be mutated. Here are the mutated foci.Position 69931909 doesn't seem to be mutated. Here are the mutated foci.Position 69932384 doesn't seem to be mutated. Here are the mutated foci.Position 69932523 doesn't seem to be mutated. Here are the mutated foci.Position 69938360 doesn't seem to be mutated. Here are the mutated foci.Position 69942467 doesn't seem to be mutated. Here are the mutated foci.Position 69953611 doesn't seem to be mutated. Here are the mutated foci.Position 69959070 doesn't seem to be mutated. Here are the mutated foci.Position 69962499 doesn't seem to be mutated. Here are the mutated foci.Position 69966508 doesn't seem to be mutated. Here are the mutated foci.Position 69971003 doesn't seem to be mutated. Here are the mutated foci.Position 69971943 doesn't seem to be mutated. Here are the mutated foci.Position 69971945 doesn't seem to be mutated. Here are the mutated foci.Position 122185084 doesn't seem to be mutated. Here are the mutated foci.Position 122185757 doesn't seem to be mutated. Here are the mutated foci.Position 122190983 doesn't seem to be mutated. Here are the mutated foci.Position 122192021 doesn't seem to be mutated. Here are the mutated foci.Position 122196136 doesn't seem to be mutated. Here are the mutated foci.Position 122210000 doesn't seem to be mutated. Here are the mutated foci.Position 122212574 doesn't seem to be mutated. Here are the mutated foci.Position 122219795 doesn't seem to be mutated. Here are the mutated foci.Position 122228415 doesn't seem to be mutated. Here are the mutated foci.Position 122230461 doesn't seem to be mutated. Here are the mutated foci.Position 122236166 doesn't seem to be mutated. Here are the mutated foci.Position 122243000 doesn't seem to be mutated. Here are the mutated foci.Position 122245637 doesn't seem to be mutated. Here are the mutated foci.Position 122249410 doesn't seem to be mutated. Here are the mutated foci.Position 122249525 doesn't seem to be mutated. Here are the mutated foci.Position 122249560 doesn't seem to be mutated. Here are the mutated foci.Position 122253024 doesn't seem to be mutated. Here are the mutated foci.Position 122257613 doesn't seem to be mutated. Here are the mutated foci.Position 122270183 doesn't seem to be mutated. Here are the mutated foci.Position 122273034 doesn't seem to be mutated. Here are the mutated foci.Position 122273676 doesn't seem to be mutated. Here are the mutated foci.Position 122276293 doesn't seem to be mutated. Here are the mutated foci.Position 122276754 doesn't seem to be mutated. Here are the mutated foci.Position 122278782 doesn't seem to be mutated. Here are the mutated foci.Position 122280141 doesn't seem to be mutated. Here are the mutated foci.Position 122284641 doesn't seem to be mutated. Here are the mutated foci.Position 122284714 doesn't seem to be mutated. Here are the mutated foci.Position 122289904 doesn't seem to be mutated. Here are the mutated foci.Position 122290498 doesn't seem to be mutated. Here are the mutated foci.Position 122291803 doesn't seem to be mutated. Here are the mutated foci.Position 128475326 doesn't seem to be mutated. Here are the mutated foci.Position 128478576 doesn't seem to be mutated. Here are the mutated foci.Position 128482891 doesn't seem to be mutated. Here are the mutated foci.Position 128485219 doesn't seem to be mutated. Here are the mutated foci.Position 128486875 doesn't seem to be mutated. Here are the mutated foci.Position 128495826 doesn't seem to be mutated. Here are the mutated foci.Position 158582177 doesn't seem to be mutated. Here are the mutated foci.Position 158583083 doesn't seem to be mutated. Here are the mutated foci.Position 158587285 doesn't seem to be mutated. Here are the mutated foci.Position 158588507 doesn't seem to be mutated. Here are the mutated foci.Position 158591919 doesn't seem to be mutated. Here are the mutated foci.Position 158596502 doesn't seem to be mutated. Here are the mutated foci.Position 158596965 doesn't seem to be mutated. Here are the mutated foci.Position 158598239 doesn't seem to be mutated. Here are the mutated foci.Position 158605381 doesn't seem to be mutated. Here are the mutated foci.Position 158608291 doesn't seem to be mutated. Here are the mutated foci.Position 158609025 doesn't seem to be mutated. Here are the mutated foci.Position 158610051 doesn't seem to be mutated. Here are the mutated foci.Position 179146207 doesn't seem to be mutated. Here are the mutated foci.Position 179158162 doesn't seem to be mutated. Here are the mutated foci.Position 179165599 doesn't seem to be mutated. Here are the mutated foci.Position 179171575 doesn't seem to be mutated. Here are the mutated foci.Position 179175313 doesn't seem to be mutated. Here are the mutated foci.Position 179175681 doesn't seem to be mutated. Here are the mutated foci.Position 179176628 doesn't seem to be mutated. Here are the mutated foci.Position 179178281 doesn't seem to be mutated. Here are the mutated foci.Position 179188988 doesn't seem to be mutated. Here are the mutated foci.Position 179191100 doesn't seem to be mutated. Here are the mutated foci.Position 179191320 doesn't seem to be mutated. Here are the mutated foci.Position 179201396 doesn't seem to be mutated. Here are the mutated foci.Position 179203270 doesn't seem to be mutated. Here are the mutated foci.Position 179209766 doesn't seem to be mutated. Here are the mutated foci.Position 179210522 doesn't seem to be mutated. Here are the mutated foci.Position 179211410 doesn't seem to be mutated. Here are the mutated foci.Position 179213340 doesn't seem to be mutated. Here are the mutated foci.Position 179224065 doesn't seem to be mutated. Here are the mutated foci.Position 179232056 doesn't seem to be mutated. Here are the mutated foci.Position 179235519 doesn't seem to be mutated. Here are the mutated foci.Position 179236730 doesn't seem to be mutated. Here are the mutated foci.Position 1790581 doesn't seem to be mutated. Here are the mutated foci.Position 1805716 doesn't seem to be mutated. Here are the mutated foci.Position 41743237 doesn't seem to be mutated. Here are the mutated foci.Position 41745227 doesn't seem to be mutated. Here are the mutated foci.Position 41746735 doesn't seem to be mutated. Here are the mutated foci.Position 54235767 doesn't seem to be mutated. Here are the mutated foci.Position 54240138 doesn't seem to be mutated. Here are the mutated foci.Position 54245969 doesn't seem to be mutated. Here are the mutated foci.Position 54247675 doesn't seem to be mutated. Here are the mutated foci.Position 54255706 doesn't seem to be mutated. Here are the mutated foci.Position 54259958 doesn't seem to be mutated. Here are the mutated foci.Position 54267558 doesn't seem to be mutated. Here are the mutated foci.Position 54272512 doesn't seem to be mutated. Here are the mutated foci.Position 54272937 doesn't seem to be mutated. Here are the mutated foci.Position 54278000 doesn't seem to be mutated. Here are the mutated foci.Position 54280542 doesn't seem to be mutated. Here are the mutated foci.Position 54286732 doesn't seem to be mutated. Here are the mutated foci.Position 54293736 doesn't seem to be mutated. Here are the mutated foci.Position 54294609 doesn't seem to be mutated. Here are the mutated foci.Position 54294944 doesn't seem to be mutated. Here are the mutated foci.Position 54295128 doesn't seem to be mutated. Here are the mutated foci.Position 54300870 doesn't seem to be mutated. Here are the mutated foci.Position 54301365 doesn't seem to be mutated. Here are the mutated foci.Position 54303202 doesn't seem to be mutated. Here are the mutated foci.Position 54653314 doesn't seem to be mutated. Here are the mutated foci.Position 54654571 doesn't seem to be mutated. Here are the mutated foci.Position 54654883 doesn't seem to be mutated. Here are the mutated foci.Position 54658355 doesn't seem to be mutated. Here are the mutated foci.Position 54658784 doesn't seem to be mutated. Here are the mutated foci.Position 54660173 doesn't seem to be mutated. Here are the mutated foci.Position 54664633 doesn't seem to be mutated. Here are the mutated foci.Position 54674061 doesn't seem to be mutated. Here are the mutated foci.Position 54674667 doesn't seem to be mutated. Here are the mutated foci.Position 54674682 doesn't seem to be mutated. Here are the mutated foci.Position 54695748 doesn't seem to be mutated. Here are the mutated foci.Position 54696312 doesn't seem to be mutated. Here are the mutated foci.Position 54696490 doesn't seem to be mutated. Here are the mutated foci.Position 54712636 doesn't seem to be mutated. Here are the mutated foci.Position 54714366 doesn't seem to be mutated. Here are the mutated foci.Position 54716035 doesn't seem to be mutated. Here are the mutated foci.Position 54725230 doesn't seem to be mutated. Here are the mutated foci.Position 54727909 doesn't seem to be mutated. Here are the mutated foci.Position 54735553 doesn't seem to be mutated. Here are the mutated foci.Position 54736554 doesn't seem to be mutated. Here are the mutated foci.Position 54737361 doesn't seem to be mutated. Here are the mutated foci.Position 54738743 doesn't seem to be mutated. Here are the mutated foci.Position 54739408 doesn't seem to be mutated. Here are the mutated foci.Position 54742086 doesn't seem to be mutated. Here are the mutated foci.Position 54745669 doesn't seem to be mutated. Here are the mutated foci.Position 56904886 doesn't seem to be mutated. Here are the mutated foci.Position 56911989 doesn't seem to be mutated. Here are the mutated foci.Position 56916636 doesn't seem to be mutated. Here are the mutated foci.Position 56916982 doesn't seem to be mutated. Here are the mutated foci.Position 56919389 doesn't seem to be mutated. Here are the mutated foci.Position 56923926 doesn't seem to be mutated. Here are the mutated foci.Position 56929981 doesn't seem to be mutated. Here are the mutated foci.Position 56933891 doesn't seem to be mutated. Here are the mutated foci.Position 56941153 doesn't seem to be mutated. Here are the mutated foci.Position 56941691 doesn't seem to be mutated. Here are the mutated foci.Position 56954673 doesn't seem to be mutated. Here are the mutated foci.Position 56954694 doesn't seem to be mutated. Here are the mutated foci.Position 56955696 doesn't seem to be mutated. Here are the mutated foci.Position 219277 doesn't seem to be mutated. Here are the mutated foci.Position 220148 doesn't seem to be mutated. Here are the mutated foci.Position 221003 doesn't seem to be mutated. Here are the mutated foci.Position 221180 doesn't seem to be mutated. Here are the mutated foci.Position 222774 doesn't seem to be mutated. Here are the mutated foci.Position 226622 doesn't seem to be mutated. Here are the mutated foci.Position 229788 doesn't seem to be mutated. Here are the mutated foci.Position 231649 doesn't seem to be mutated. Here are the mutated foci.Position 234028 doesn't seem to be mutated. Here are the mutated foci.Position 239448 doesn't seem to be mutated. Here are the mutated foci.Position 240204 doesn't seem to be mutated. Here are the mutated foci.Position 241569 doesn't seem to be mutated. Here are the mutated foci.Position 242658 doesn't seem to be mutated. Here are the mutated foci.Position 250809 doesn't seem to be mutated. Here are the mutated foci.Position 897091 doesn't seem to be mutated. Here are the mutated foci.Position 901507 doesn't seem to be mutated. Here are the mutated foci.Position 907060 doesn't seem to be mutated. Here are the mutated foci.Position 913559 doesn't seem to be mutated. Here are the mutated foci.Position 1250224 doesn't seem to be mutated. Here are the mutated foci.Position 1253881 doesn't seem to be mutated. Here are the mutated foci.Position 1255821 doesn't seem to be mutated. Here are the mutated foci.Position 1257954 doesn't seem to be mutated. Here are the mutated foci.Position 1257984 doesn't seem to be mutated. Here are the mutated foci.Position 1259960 doesn't seem to be mutated. Here are the mutated foci.Position 1260491 doesn't seem to be mutated. Here are the mutated foci.Position 1261642 doesn't seem to be mutated. Here are the mutated foci.Position 1268695 doesn't seem to be mutated. Here are the mutated foci.Position 1271808 doesn't seem to be mutated. Here are the mutated foci.Position 1274997 doesn't seem to be mutated. Here are the mutated foci.Position 1277307 doesn't seem to be mutated. Here are the mutated foci.Position 1282298 doesn't seem to be mutated. Here are the mutated foci.Position 1286689 doesn't seem to be mutated. Here are the mutated foci.Position 1287182 doesn't seem to be mutated. Here are the mutated foci.Position 1298925 doesn't seem to be mutated. Here are the mutated foci.Position 37808071 doesn't seem to be mutated. Here are the mutated foci.Position 37810006 doesn't seem to be mutated. Here are the mutated foci.Position 37811801 doesn't seem to be mutated. Here are the mutated foci.Position 37815617 doesn't seem to be mutated. Here are the mutated foci.Position 37818928 doesn't seem to be mutated. Here are the mutated foci.Position 37820106 doesn't seem to be mutated. Here are the mutated foci.Position 37822879 doesn't seem to be mutated. Here are the mutated foci.Position 37824486 doesn't seem to be mutated. Here are the mutated foci.Position 37825033 doesn't seem to be mutated. Here are the mutated foci.Position 37826965 doesn't seem to be mutated. Here are the mutated foci.Position 37827674 doesn't seem to be mutated. Here are the mutated foci.Position 37828958 doesn't seem to be mutated. Here are the mutated foci.Position 37830227 doesn't seem to be mutated. Here are the mutated foci.Position 37831402 doesn't seem to be mutated. Here are the mutated foci.Position 37832372 doesn't seem to be mutated. Here are the mutated foci.Position 80656014 doesn't seem to be mutated. Here are the mutated foci.Position 80670458 doesn't seem to be mutated. Here are the mutated foci.Position 80670996 doesn't seem to be mutated. Here are the mutated foci.Position 80681090 doesn't seem to be mutated. Here are the mutated foci.Position 80689710 doesn't seem to be mutated. Here are the mutated foci.Position 80692850 doesn't seem to be mutated. Here are the mutated foci.Position 80698195 doesn't seem to be mutated. Here are the mutated foci.Position 80698244 doesn't seem to be mutated. Here are the mutated foci.Position 80703227 doesn't seem to be mutated. Here are the mutated foci.Position 80703658 doesn't seem to be mutated. Here are the mutated foci.Position 80711741 doesn't seem to be mutated. Here are the mutated foci.Position 80712925 doesn't seem to be mutated. Here are the mutated foci.Position 80714715 doesn't seem to be mutated. Here are the mutated foci.Position 80720630 doesn't seem to be mutated. Here are the mutated foci.Position 80722055 doesn't seem to be mutated. Here are the mutated foci.Position 80725553 doesn't seem to be mutated. Here are the mutated foci.Position 80745727 doesn't seem to be mutated. Here are the mutated foci.Position 80745981 doesn't seem to be mutated. Here are the mutated foci.Position 80750954 doesn't seem to be mutated. Here are the mutated foci.Position 80760418 doesn't seem to be mutated. Here are the mutated foci.Position 80762790 doesn't seem to be mutated. Here are the mutated foci.Position 80766905 doesn't seem to be mutated. Here are the mutated foci.Position 80768897 doesn't seem to be mutated. Here are the mutated foci.Position 80771106 doesn't seem to be mutated. Here are the mutated foci.Position 80772468 doesn't seem to be mutated. Here are the mutated foci.Position 80779532 doesn't seem to be mutated. Here are the mutated foci.Position 80782668 doesn't seem to be mutated. Here are the mutated foci.Position 80784242 doesn't seem to be mutated. Here are the mutated foci.Position 80786862 doesn't seem to be mutated. Here are the mutated foci.Position 80788713 doesn't seem to be mutated. Here are the mutated foci.Position 80791351 doesn't seem to be mutated. Here are the mutated foci.Position 80802585 doesn't seem to be mutated. Here are the mutated foci.Position 80810284 doesn't seem to be mutated. Here are the mutated foci.Position 80812031 doesn't seem to be mutated. Here are the mutated foci.Position 80813341 doesn't seem to be mutated. Here are the mutated foci.Position 80815480 doesn't seem to be mutated. Here are the mutated foci.Position 80826540 doesn't seem to be mutated. Here are the mutated foci.Position 80840500 doesn't seem to be mutated. Here are the mutated foci.Position 80840590 doesn't seem to be mutated. Here are the mutated foci.Position 80841333 doesn't seem to be mutated. Here are the mutated foci.Position 80841436 doesn't seem to be mutated. Here are the mutated foci.Position 80848491 doesn't seem to be mutated. Here are the mutated foci.Position 80852781 doesn't seem to be mutated. Here are the mutated foci.Position 80853531 doesn't seem to be mutated. Here are the mutated foci.Position 80860734 doesn't seem to be mutated. Here are the mutated foci.Position 80860745 doesn't seem to be mutated. Here are the mutated foci.Position 80863622 doesn't seem to be mutated. Here are the mutated foci.Position 80867754 doesn't seem to be mutated. Here are the mutated foci.Position 80869552 doesn't seem to be mutated. Here are the mutated foci.Position 80870615 doesn't seem to be mutated. Here are the mutated foci.Position 80880728 doesn't seem to be mutated. Here are the mutated foci.Position 112702735 doesn't seem to be mutated. Here are the mutated foci.Position 112715011 doesn't seem to be mutated. Here are the mutated foci.Position 112722292 doesn't seem to be mutated. Here are the mutated foci.Position 112724261 doesn't seem to be mutated. Here are the mutated foci.Position 112728016 doesn't seem to be mutated. Here are the mutated foci.Position 112731453 doesn't seem to be mutated. Here are the mutated foci.Position 112734974 doesn't seem to be mutated. Here are the mutated foci.Position 112745620 doesn't seem to be mutated. Here are the mutated foci.Position 112751041 doesn't seem to be mutated. Here are the mutated foci.Position 112756499 doesn't seem to be mutated. Here are the mutated foci.Position 112757262 doesn't seem to be mutated. Here are the mutated foci.Position 112760248 doesn't seem to be mutated. Here are the mutated foci.Position 112761612 doesn't seem to be mutated. Here are the mutated foci.Position 112764313 doesn't seem to be mutated. Here are the mutated foci.Position 112769212 doesn't seem to be mutated. Here are the mutated foci.Position 112771359 doesn't seem to be mutated. Here are the mutated foci.Position 112775217 doesn't seem to be mutated. Here are the mutated foci.Position 112776658 doesn't seem to be mutated. Here are the mutated foci.Position 112778158 doesn't seem to be mutated. Here are the mutated foci.Position 112778952 doesn't seem to be mutated. Here are the mutated foci.Position 112783958 doesn't seem to be mutated. Here are the mutated foci.Position 112795525 doesn't seem to be mutated. Here are the mutated foci.Position 112804415 doesn't seem to be mutated. Here are the mutated foci.Position 112804655 doesn't seem to be mutated. Here are the mutated foci.Position 112805471 doesn't seem to be mutated. Here are the mutated foci.Position 112805903 doesn't seem to be mutated. Here are the mutated foci.Position 112808962 doesn't seem to be mutated. Here are the mutated foci.Position 112809563 doesn't seem to be mutated. Here are the mutated foci.Position 112811206 doesn't seem to be mutated. Here are the mutated foci.Position 112815883 doesn't seem to be mutated. Here are the mutated foci.Position 112819016 doesn't seem to be mutated. Here are the mutated foci.Position 112819767 doesn't seem to be mutated. Here are the mutated foci.Position 112820924 doesn't seem to be mutated. Here are the mutated foci.Position 112825758 doesn't seem to be mutated. Here are the mutated foci.Position 112826340 doesn't seem to be mutated. Here are the mutated foci.Position 112839470 doesn't seem to be mutated. Here are the mutated foci.Position 112846891 doesn't seem to be mutated. Here are the mutated foci.Position 112848844 doesn't seem to be mutated. Here are the mutated foci.Position 112849451 doesn't seem to be mutated. Here are the mutated foci.Position 132562470 doesn't seem to be mutated. Here are the mutated foci.Position 132571754 doesn't seem to be mutated. Here are the mutated foci.Position 132573297 doesn't seem to be mutated. Here are the mutated foci.Position 132575388 doesn't seem to be mutated. Here are the mutated foci.Position 132576635 doesn't seem to be mutated. Here are the mutated foci.Position 132578103 doesn't seem to be mutated. Here are the mutated foci.Position 132582300 doesn't seem to be mutated. Here are the mutated foci.Position 132582581 doesn't seem to be mutated. Here are the mutated foci.Position 132590046 doesn't seem to be mutated. Here are the mutated foci.Position 132601471 doesn't seem to be mutated. Here are the mutated foci.Position 132625052 doesn't seem to be mutated. Here are the mutated foci.Position 132630619 doesn't seem to be mutated. Here are the mutated foci.Position 132642634 doesn't seem to be mutated. Here are the mutated foci.Position 132643531 doesn't seem to be mutated. Here are the mutated foci.Position 138606797 doesn't seem to be mutated. Here are the mutated foci.Position 138629455 doesn't seem to be mutated. Here are the mutated foci.Position 138632687 doesn't seem to be mutated. Here are the mutated foci.Position 138637999 doesn't seem to be mutated. Here are the mutated foci.Position 138638177 doesn't seem to be mutated. Here are the mutated foci.Position 138639012 doesn't seem to be mutated. Here are the mutated foci.Position 138649395 doesn't seem to be mutated. Here are the mutated foci.Position 138649436 doesn't seem to be mutated. Here are the mutated foci.Position 138654747 doesn't seem to be mutated. Here are the mutated foci.Position 138660010 doesn't seem to be mutated. Here are the mutated foci.Position 138666249 doesn't seem to be mutated. Here are the mutated foci.Position 138669081 doesn't seem to be mutated. Here are the mutated foci.Position 138669968 doesn't seem to be mutated. Here are the mutated foci.Position 138678041 doesn't seem to be mutated. Here are the mutated foci.Position 138686572 doesn't seem to be mutated. Here are the mutated foci.Position 138701249 doesn't seem to be mutated. Here are the mutated foci.Position 138717815 doesn't seem to be mutated. Here are the mutated foci.Position 138720934 doesn't seem to be mutated. Here are the mutated foci.Position 138721371 doesn't seem to be mutated. Here are the mutated foci.Position 138733246 doesn't seem to be mutated. Here are the mutated foci.Position 138751479 doesn't seem to be mutated. Here are the mutated foci.Position 138754567 doesn't seem to be mutated. Here are the mutated foci.Position 138756406 doesn't seem to be mutated. Here are the mutated foci.Position 138757458 doesn't seem to be mutated. Here are the mutated foci.Position 138758809 doesn't seem to be mutated. Here are the mutated foci.Position 138762642 doesn't seem to be mutated. Here are the mutated foci.Position 138768482 doesn't seem to be mutated. Here are the mutated foci.Position 138777158 doesn't seem to be mutated. Here are the mutated foci.Position 138782484 doesn't seem to be mutated. Here are the mutated foci.Position 138785338 doesn't seem to be mutated. Here are the mutated foci.Position 138791168 doesn't seem to be mutated. Here are the mutated foci.Position 138798802 doesn't seem to be mutated. Here are the mutated foci.Position 138815222 doesn't seem to be mutated. Here are the mutated foci.Position 138825168 doesn't seem to be mutated. Here are the mutated foci.Position 138826481 doesn't seem to be mutated. Here are the mutated foci.Position 138839467 doesn't seem to be mutated. Here are the mutated foci.Position 138843028 doesn't seem to be mutated. Here are the mutated foci.Position 138853227 doesn't seem to be mutated. Here are the mutated foci.Position 138856341 doesn't seem to be mutated. Here are the mutated foci.Position 138861229 doesn't seem to be mutated. Here are the mutated foci.Position 138875983 doesn't seem to be mutated. Here are the mutated foci.Position 138880375 doesn't seem to be mutated. Here are the mutated foci.Position 138882692 doesn't seem to be mutated. Here are the mutated foci.Position 138889110 doesn't seem to be mutated. Here are the mutated foci.Position 138899010 doesn't seem to be mutated. Here are the mutated foci.Position 138902866 doesn't seem to be mutated. Here are the mutated foci.Position 138903641 doesn't seem to be mutated. Here are the mutated foci.Position 138907025 doesn't seem to be mutated. Here are the mutated foci.Position 138914147 doesn't seem to be mutated. Here are the mutated foci.Position 138915518 doesn't seem to be mutated. Here are the mutated foci.Position 138915963 doesn't seem to be mutated. Here are the mutated foci.Position 138921897 doesn't seem to be mutated. Here are the mutated foci.Position 138935402 doesn't seem to be mutated. Here are the mutated foci.Position 138936221 doesn't seem to be mutated. Here are the mutated foci.Position 138936311 doesn't seem to be mutated. Here are the mutated foci.Position 138938810 doesn't seem to be mutated. Here are the mutated foci.Position 157172631 doesn't seem to be mutated. Here are the mutated foci.Position 157175996 doesn't seem to be mutated. Here are the mutated foci.Position 157179670 doesn't seem to be mutated. Here are the mutated foci.Position 157181243 doesn't seem to be mutated. Here are the mutated foci.Position 157181245 doesn't seem to be mutated. Here are the mutated foci.Position 157184354 doesn't seem to be mutated. Here are the mutated foci.Position 157188025 doesn't seem to be mutated. Here are the mutated foci.Position 157190595 doesn't seem to be mutated. Here are the mutated foci.Position 157194246 doesn't seem to be mutated. Here are the mutated foci.Position 157197207 doesn't seem to be mutated. Here are the mutated foci.Position 157197563 doesn't seem to be mutated. Here are the mutated foci.Position 157199505 doesn't seem to be mutated. Here are the mutated foci.Position 157203078 doesn't seem to be mutated. Here are the mutated foci.Position 157204598 doesn't seem to be mutated. Here are the mutated foci.Position 157217544 doesn't seem to be mutated. Here are the mutated foci.Position 157220334 doesn't seem to be mutated. Here are the mutated foci.Position 157220858 doesn't seem to be mutated. Here are the mutated foci.Position 157222807 doesn't seem to be mutated. Here are the mutated foci.Position 157230692 doesn't seem to be mutated. Here are the mutated foci.Position 157231455 doesn't seem to be mutated. Here are the mutated foci.Position 157232921 doesn't seem to be mutated. Here are the mutated foci.Position 157236808 doesn't seem to be mutated. Here are the mutated foci.Position 157241609 doesn't seem to be mutated. Here are the mutated foci.Position 157242665 doesn't seem to be mutated. Here are the mutated foci.Position 157243059 doesn't seem to be mutated. Here are the mutated foci.Position 157244953 doesn't seem to be mutated. Here are the mutated foci.Position 157256085 doesn't seem to be mutated. Here are the mutated foci.Position 157259509 doesn't seem to be mutated. Here are the mutated foci.Position 177131909 doesn't seem to be mutated. Here are the mutated foci.Position 177141167 doesn't seem to be mutated. Here are the mutated foci.Position 177142431 doesn't seem to be mutated. Here are the mutated foci.Position 177146148 doesn't seem to be mutated. Here are the mutated foci.Position 177146363 doesn't seem to be mutated. Here are the mutated foci.Position 177148415 doesn't seem to be mutated. Here are the mutated foci.Position 177150237 doesn't seem to be mutated. Here are the mutated foci.Position 177150664 doesn't seem to be mutated. Here are the mutated foci.Position 177154303 doesn't seem to be mutated. Here are the mutated foci.Position 177158173 doesn't seem to be mutated. Here are the mutated foci.Position 177159626 doesn't seem to be mutated. Here are the mutated foci.Position 177164853 doesn't seem to be mutated. Here are the mutated foci.Position 177168307 doesn't seem to be mutated. Here are the mutated foci.Position 177171463 doesn't seem to be mutated. Here are the mutated foci.Position 177171974 doesn't seem to be mutated. Here are the mutated foci.Position 177176697 doesn't seem to be mutated. Here are the mutated foci.Position 177180840 doesn't seem to be mutated. Here are the mutated foci.Position 177182840 doesn't seem to be mutated. Here are the mutated foci.Position 177189115 doesn't seem to be mutated. Here are the mutated foci.Position 177190202 doesn't seem to be mutated. Here are the mutated foci.Position 177190739 doesn't seem to be mutated. Here are the mutated foci.Position 177191053 doesn't seem to be mutated. Here are the mutated foci.Position 177192390 doesn't seem to be mutated. Here are the mutated foci.Position 177195094 doesn't seem to be mutated. Here are the mutated foci.Position 177196069 doesn't seem to be mutated. Here are the mutated foci.Position 177197847 doesn't seem to be mutated. Here are the mutated foci.Position 177199510 doesn't seem to be mutated. Here are the mutated foci.Position 177201645 doesn't seem to be mutated. Here are the mutated foci.Position 177221312 doesn't seem to be mutated. Here are the mutated foci.Position 177234940 doesn't seem to be mutated. Here are the mutated foci.Position 177249800 doesn't seem to be mutated. Here are the mutated foci.Position 177252926 doesn't seem to be mutated. Here are the mutated foci.Position 177261075 doesn't seem to be mutated. Here are the mutated foci.Position 177264962 doesn't seem to be mutated. Here are the mutated foci.Position 177284441 doesn't seem to be mutated. Here are the mutated foci.Position 177289310 doesn't seem to be mutated. Here are the mutated foci.Position 177515781 doesn't seem to be mutated. Here are the mutated foci.Position 178150778 doesn't seem to be mutated. Here are the mutated foci.Position 178157046 doesn't seem to be mutated. Here are the mutated foci.Position 26090678 doesn't seem to be mutated. Here are the mutated foci.Position 26090961 doesn't seem to be mutated. Here are the mutated foci.Position 26100375 doesn't seem to be mutated. Here are the mutated foci.Position 34422845 doesn't seem to be mutated. Here are the mutated foci.Position 34426208 doesn't seem to be mutated. Here are the mutated foci.Position 35449161 doesn't seem to be mutated. Here are the mutated foci.Position 35450870 doesn't seem to be mutated. Here are the mutated foci.Position 35451607 doesn't seem to be mutated. Here are the mutated foci.Position 35459223 doesn't seem to be mutated. Here are the mutated foci.Position 43576226 doesn't seem to be mutated. Here are the mutated foci.Position 43577006 doesn't seem to be mutated. Here are the mutated foci.Position 43581310 doesn't seem to be mutated. Here are the mutated foci.Position 43581692 doesn't seem to be mutated. Here are the mutated foci.Position 43588993 doesn't seem to be mutated. Here are the mutated foci.Position 43609682 doesn't seem to be mutated. Here are the mutated foci.Position 43612506 doesn't seem to be mutated. Here are the mutated foci.Position 104723267 doesn't seem to be mutated. Here are the mutated foci.Position 104729582 doesn't seem to be mutated. Here are the mutated foci.Position 104729808 doesn't seem to be mutated. Here are the mutated foci.Position 104731419 doesn't seem to be mutated. Here are the mutated foci.Position 104733856 doesn't seem to be mutated. Here are the mutated foci.Position 104735468 doesn't seem to be mutated. Here are the mutated foci.Position 104737923 doesn't seem to be mutated. Here are the mutated foci.Position 104739786 doesn't seem to be mutated. Here are the mutated foci.Position 104743688 doesn't seem to be mutated. Here are the mutated foci.Position 104749365 doesn't seem to be mutated. Here are the mutated foci.Position 104755817 doesn't seem to be mutated. Here are the mutated foci.Position 104755892 doesn't seem to be mutated. Here are the mutated foci.Position 104755949 doesn't seem to be mutated. Here are the mutated foci.Position 104756977 doesn't seem to be mutated. Here are the mutated foci.Position 104761643 doesn't seem to be mutated. Here are the mutated foci.Position 104762208 doesn't seem to be mutated. Here are the mutated foci.Position 104769650 doesn't seem to be mutated. Here are the mutated foci.Position 104773044 doesn't seem to be mutated. Here are the mutated foci.Position 104773709 doesn't seem to be mutated. Here are the mutated foci.Position 104774946 doesn't seem to be mutated. Here are the mutated foci.Position 104778281 doesn't seem to be mutated. Here are the mutated foci.Position 104783602 doesn't seem to be mutated. Here are the mutated foci.Position 104783978 doesn't seem to be mutated. Here are the mutated foci.Position 104788477 doesn't seem to be mutated. Here are the mutated foci.Position 104792005 doesn't seem to be mutated. Here are the mutated foci.Position 104792456 doesn't seem to be mutated. Here are the mutated foci.Position 104796713 doesn't seem to be mutated. Here are the mutated foci.Position 104798071 doesn't seem to be mutated. Here are the mutated foci.Position 104804577 doesn't seem to be mutated. Here are the mutated foci.Position 104806597 doesn't seem to be mutated. Here are the mutated foci.Position 104806674 doesn't seem to be mutated. Here are the mutated foci.Position 104810701 doesn't seem to be mutated. Here are the mutated foci.Position 104811523 doesn't seem to be mutated. Here are the mutated foci.Position 104813787 doesn't seem to be mutated. Here are the mutated foci.Position 104830136 doesn't seem to be mutated. Here are the mutated foci.Position 104831668 doesn't seem to be mutated. Here are the mutated foci.Position 104831724 doesn't seem to be mutated. Here are the mutated foci.Position 104832356 doesn't seem to be mutated. Here are the mutated foci.Position 104838216 doesn't seem to be mutated. Here are the mutated foci.Position 104839677 doesn't seem to be mutated. Here are the mutated foci.Position 104855811 doesn't seem to be mutated. Here are the mutated foci.Position 104857203 doesn't seem to be mutated. Here are the mutated foci.Position 104857310 doesn't seem to be mutated. Here are the mutated foci.Position 104859498 doesn't seem to be mutated. Here are the mutated foci.Position 104864640 doesn't seem to be mutated. Here are the mutated foci.Position 5998689 doesn't seem to be mutated. Here are the mutated foci.Position 5999057 doesn't seem to be mutated. Here are the mutated foci.Position 41956436 doesn't seem to be mutated. Here are the mutated foci.Position 41960989 doesn't seem to be mutated. Here are the mutated foci.Position 41961231 doesn't seem to be mutated. Here are the mutated foci.Position 41963506 doesn't seem to be mutated. Here are the mutated foci.Position 41965974 doesn't seem to be mutated. Here are the mutated foci.Position 41966170 doesn't seem to be mutated. Here are the mutated foci.Position 41966303 doesn't seem to be mutated. Here are the mutated foci.Position 41967380 doesn't seem to be mutated. Here are the mutated foci.Position 41978991 doesn't seem to be mutated. Here are the mutated foci.Position 41979382 doesn't seem to be mutated. Here are the mutated foci.Position 41982846 doesn't seem to be mutated. Here are the mutated foci.Position 41982989 doesn't seem to be mutated. Here are the mutated foci.Position 41986834 doesn't seem to be mutated. Here are the mutated foci.Position 41989241 doesn't seem to be mutated. Here are the mutated foci.Position 41991168 doesn't seem to be mutated. Here are the mutated foci.Position 41992286 doesn't seem to be mutated. Here are the mutated foci.Position 42001894 doesn't seem to be mutated. Here are the mutated foci.Position 42005626 doesn't seem to be mutated. Here are the mutated foci.Position 42012641 doesn't seem to be mutated. Here are the mutated foci.Position 42013744 doesn't seem to be mutated. Here are the mutated foci.Position 42014041 doesn't seem to be mutated. Here are the mutated foci.Position 42016397 doesn't seem to be mutated. Here are the mutated foci.Position 42025727 doesn't seem to be mutated. Here are the mutated foci.Position 42030092 doesn't seem to be mutated. Here are the mutated foci.Position 42030782 doesn't seem to be mutated. Here are the mutated foci.Position 42033616 doesn't seem to be mutated. Here are the mutated foci.Position 42035502 doesn't seem to be mutated. Here are the mutated foci.Position 42037593 doesn't seem to be mutated. Here are the mutated foci.Position 42037881 doesn't seem to be mutated. Here are the mutated foci.Position 42040584 doesn't seem to be mutated. Here are the mutated foci.Position 42043829 doesn't seem to be mutated. Here are the mutated foci.Position 42049417 doesn't seem to be mutated. Here are the mutated foci.Position 42050279 doesn't seem to be mutated. Here are the mutated foci.Position 42051288 doesn't seem to be mutated. Here are the mutated foci.Position 42055347 doesn't seem to be mutated. Here are the mutated foci.Position 42059473 doesn't seem to be mutated. Here are the mutated foci.Position 42074245 doesn't seem to be mutated. Here are the mutated foci.Position 42076434 doesn't seem to be mutated. Here are the mutated foci.Position 42077780 doesn't seem to be mutated. Here are the mutated foci.Position 42078616 doesn't seem to be mutated. Here are the mutated foci.Position 42084927 doesn't seem to be mutated. Here are the mutated foci.Position 42085516 doesn't seem to be mutated. Here are the mutated foci.Position 42086457 doesn't seem to be mutated. Here are the mutated foci.Position 42086734 doesn't seem to be mutated. Here are the mutated foci.Position 42086809 doesn't seem to be mutated. Here are the mutated foci.Position 42091394 doesn't seem to be mutated. Here are the mutated foci.Position 42094184 doesn't seem to be mutated. Here are the mutated foci.Position 42099355 doesn't seem to be mutated. Here are the mutated foci.Position 42105281 doesn't seem to be mutated. Here are the mutated foci.Position 42105534 doesn't seem to be mutated. Here are the mutated foci.Position 42108279 doesn't seem to be mutated. Here are the mutated foci.Position 42110275 doesn't seem to be mutated. Here are the mutated foci.Position 42112374 doesn't seem to be mutated. Here are the mutated foci.Position 42116095 doesn't seem to be mutated. Here are the mutated foci.Position 42117737 doesn't seem to be mutated. Here are the mutated foci.Position 42123269 doesn't seem to be mutated. Here are the mutated foci.Position 42124293 doesn't seem to be mutated. Here are the mutated foci.Position 42124803 doesn't seem to be mutated. Here are the mutated foci.Position 42132587 doesn't seem to be mutated. Here are the mutated foci.Position 42133377 doesn't seem to be mutated. Here are the mutated foci.Position 42134918 doesn't seem to be mutated. Here are the mutated foci.Position 42137637 doesn't seem to be mutated. Here are the mutated foci.Position 42137938 doesn't seem to be mutated. Here are the mutated foci.Position 42153376 doesn't seem to be mutated. Here are the mutated foci.Position 42153448 doesn't seem to be mutated. Here are the mutated foci.Position 42154982 doesn't seem to be mutated. Here are the mutated foci.Position 42156755 doesn't seem to be mutated. Here are the mutated foci.Position 42158623 doesn't seem to be mutated. Here are the mutated foci.Position 42165299 doesn't seem to be mutated. Here are the mutated foci.Position 42170199 doesn't seem to be mutated. Here are the mutated foci.Position 42173945 doesn't seem to be mutated. Here are the mutated foci.Position 42174489 doesn't seem to be mutated. Here are the mutated foci.Position 42176003 doesn't seem to be mutated. Here are the mutated foci.Position 42177038 doesn't seem to be mutated. Here are the mutated foci.Position 42177307 doesn't seem to be mutated. Here are the mutated foci.Position 42177895 doesn't seem to be mutated. Here are the mutated foci.Position 42178386 doesn't seem to be mutated. Here are the mutated foci.Position 42179720 doesn't seem to be mutated. Here are the mutated foci.Position 42181851 doesn't seem to be mutated. Here are the mutated foci.Position 42188887 doesn't seem to be mutated. Here are the mutated foci.Position 42188974 doesn't seem to be mutated. Here are the mutated foci.Position 42191120 doesn't seem to be mutated. Here are the mutated foci.Position 42191550 doesn't seem to be mutated. Here are the mutated foci.Position 42194869 doesn't seem to be mutated. Here are the mutated foci.Position 42199542 doesn't seem to be mutated. Here are the mutated foci.Position 42203419 doesn't seem to be mutated. Here are the mutated foci.Position 42206111 doesn't seem to be mutated. Here are the mutated foci.Position 42206301 doesn't seem to be mutated. Here are the mutated foci.Position 42207954 doesn't seem to be mutated. Here are the mutated foci.Position 42213335 doesn't seem to be mutated. Here are the mutated foci.Position 42218528 doesn't seem to be mutated. Here are the mutated foci.Position 42222435 doesn't seem to be mutated. Here are the mutated foci.Position 42226982 doesn't seem to be mutated. Here are the mutated foci.Position 42228805 doesn't seem to be mutated. Here are the mutated foci.Position 42236675 doesn't seem to be mutated. Here are the mutated foci.Position 50302825 doesn't seem to be mutated. Here are the mutated foci.Position 50307198 doesn't seem to be mutated. Here are the mutated foci.Position 50309047 doesn't seem to be mutated. Here are the mutated foci.Position 50314273 doesn't seem to be mutated. Here are the mutated foci.Position 50315780 doesn't seem to be mutated. Here are the mutated foci.Position 50320662 doesn't seem to be mutated. Here are the mutated foci.Position 50325198 doesn't seem to be mutated. Here are the mutated foci.Position 50334754 doesn't seem to be mutated. Here are the mutated foci.Position 50335330 doesn't seem to be mutated. Here are the mutated foci.Position 50337123 doesn't seem to be mutated. Here are the mutated foci.Position 50345186 doesn't seem to be mutated. Here are the mutated foci.Position 50347903 doesn't seem to be mutated. Here are the mutated foci.Position 50351920 doesn't seem to be mutated. Here are the mutated foci.Position 50355523 doesn't seem to be mutated. Here are the mutated foci.Position 50364334 doesn't seem to be mutated. Here are the mutated foci.Position 50381029 doesn't seem to be mutated. Here are the mutated foci.Position 50388044 doesn't seem to be mutated. Here are the mutated foci.Position 50394815 doesn't seem to be mutated. Here are the mutated foci.Position 50398498 doesn't seem to be mutated. Here are the mutated foci.Position 50398680 doesn't seem to be mutated. Here are the mutated foci.Position 50399627 doesn't seem to be mutated. Here are the mutated foci.Position 50402901 doesn't seem to be mutated. Here are the mutated foci.Position 50409478 doesn't seem to be mutated. Here are the mutated foci.Position 55014476 doesn't seem to be mutated. Here are the mutated foci.Position 55015700 doesn't seem to be mutated. Here are the mutated foci.Position 55017861 doesn't seem to be mutated. Here are the mutated foci.Position 55018431 doesn't seem to be mutated. Here are the mutated foci.Position 55022947 doesn't seem to be mutated. Here are the mutated foci.Position 55026021 doesn't seem to be mutated. Here are the mutated foci.Position 55033298 doesn't seem to be mutated. Here are the mutated foci.Position 55040022 doesn't seem to be mutated. Here are the mutated foci.Position 55046100 doesn't seem to be mutated. Here are the mutated foci.Position 55052647 doesn't seem to be mutated. Here are the mutated foci.Position 55059455 doesn't seem to be mutated. Here are the mutated foci.Position 55069469 doesn't seem to be mutated. Here are the mutated foci.Position 55074495 doesn't seem to be mutated. Here are the mutated foci.Position 55081346 doesn't seem to be mutated. Here are the mutated foci.Position 55083333 doesn't seem to be mutated. Here are the mutated foci.Position 55088253 doesn't seem to be mutated. Here are the mutated foci.Position 55101628 doesn't seem to be mutated. Here are the mutated foci.Position 55109100 doesn't seem to be mutated. Here are the mutated foci.Position 55111262 doesn't seem to be mutated. Here are the mutated foci.Position 55132192 doesn't seem to be mutated. Here are the mutated foci.Position 55137696 doesn't seem to be mutated. Here are the mutated foci.Position 55138457 doesn't seem to be mutated. Here are the mutated foci.Position 55140843 doesn't seem to be mutated. Here are the mutated foci.Position 55141136 doesn't seem to be mutated. Here are the mutated foci.Position 55145434 doesn't seem to be mutated. Here are the mutated foci.Position 55155910 doesn't seem to be mutated. Here are the mutated foci.Position 55162711 doesn't seem to be mutated. Here are the mutated foci.Position 55172967 doesn't seem to be mutated. Here are the mutated foci.Position 55173069 doesn't seem to be mutated. Here are the mutated foci.Position 55177226 doesn't seem to be mutated. Here are the mutated foci.Position 55184545 doesn't seem to be mutated. Here are the mutated foci.Position 55190515 doesn't seem to be mutated. Here are the mutated foci.Position 55191838 doesn't seem to be mutated. Here are the mutated foci.Position 55194478 doesn't seem to be mutated. Here are the mutated foci.Position 55195642 doesn't seem to be mutated. Here are the mutated foci.Position 55205962 doesn't seem to be mutated. Here are the mutated foci.Position 55211836 doesn't seem to be mutated. Here are the mutated foci.Position 55215260 doesn't seem to be mutated. Here are the mutated foci.Position 66984375 doesn't seem to be mutated. Here are the mutated foci.Position 66987156 doesn't seem to be mutated. Here are the mutated foci.Position 66987989 doesn't seem to be mutated. Here are the mutated foci.Position 66990673 doesn't seem to be mutated. Here are the mutated foci.Position 66991006 doesn't seem to be mutated. Here are the mutated foci.Position 66991436 doesn't seem to be mutated. Here are the mutated foci.Position 66991620 doesn't seem to be mutated. Here are the mutated foci.Position 66996443 doesn't seem to be mutated. Here are the mutated foci.Position 93098594 doesn't seem to be mutated. Here are the mutated foci.Position 93098877 doesn't seem to be mutated. Here are the mutated foci.Position 93099103 doesn't seem to be mutated. Here are the mutated foci.Position 93101852 doesn't seem to be mutated. Here are the mutated foci.Position 93109498 doesn't seem to be mutated. Here are the mutated foci.Position 93109656 doesn't seem to be mutated. Here are the mutated foci.Position 93117895 doesn't seem to be mutated. Here are the mutated foci.Position 93121233 doesn't seem to be mutated. Here are the mutated foci.Position 93125257 doesn't seem to be mutated. Here are the mutated foci.Position 93129258 doesn't seem to be mutated. Here are the mutated foci.Position 93131008 doesn't seem to be mutated. Here are the mutated foci.Position 93131639 doesn't seem to be mutated. Here are the mutated foci.Position 93135893 doesn't seem to be mutated. Here are the mutated foci.Position 93140469 doesn't seem to be mutated. Here are the mutated foci.Position 93145189 doesn't seem to be mutated. Here are the mutated foci.Position 93150030 doesn't seem to be mutated. Here are the mutated foci.Position 93152619 doesn't seem to be mutated. Here are the mutated foci.Position 96117527 doesn't seem to be mutated. Here are the mutated foci.Position 96122168 doesn't seem to be mutated. Here are the mutated foci.Position 96122596 doesn't seem to be mutated. Here are the mutated foci.Position 96127153 doesn't seem to be mutated. Here are the mutated foci.Position 96128644 doesn't seem to be mutated. Here are the mutated foci.Position 96130116 doesn't seem to be mutated. Here are the mutated foci.Position 96131369 doesn't seem to be mutated. Here are the mutated foci.Position 96137649 doesn't seem to be mutated. Here are the mutated foci.Position 96141858 doesn't seem to be mutated. Here are the mutated foci.Position 96143746 doesn't seem to be mutated. Here are the mutated foci.Position 96159125 doesn't seem to be mutated. Here are the mutated foci.Position 96180228 doesn't seem to be mutated. Here are the mutated foci.Position 96189100 doesn't seem to be mutated. Here are the mutated foci.Position 96191980 doesn't seem to be mutated. Here are the mutated foci.Position 96201341 doesn't seem to be mutated. Here are the mutated foci.Position 96203820 doesn't seem to be mutated. Here are the mutated foci.Position 96211602 doesn't seem to be mutated. Here are the mutated foci.Position 96211702 doesn't seem to be mutated. Here are the mutated foci.Position 96213726 doesn't seem to be mutated. Here are the mutated foci.Position 96224157 doesn't seem to be mutated. Here are the mutated foci.Position 96226011 doesn't seem to be mutated. Here are the mutated foci.Position 96240150 doesn't seem to be mutated. Here are the mutated foci.Position 96241582 doesn't seem to be mutated. Here are the mutated foci.Position 96268048 doesn't seem to be mutated. Here are the mutated foci.Position 96270684 doesn't seem to be mutated. Here are the mutated foci.Position 96274410 doesn't seem to be mutated. Here are the mutated foci.Position 96286329 doesn't seem to be mutated. Here are the mutated foci.Position 96288763 doesn't seem to be mutated. Here are the mutated foci.Position 96291783 doesn't seem to be mutated. Here are the mutated foci.Position 96295462 doesn't seem to be mutated. Here are the mutated foci.Position 96299417 doesn't seem to be mutated. Here are the mutated foci.Position 96307493 doesn't seem to be mutated. Here are the mutated foci.Position 96317219 doesn't seem to be mutated. Here are the mutated foci.Position 96321085 doesn't seem to be mutated. Here are the mutated foci.Position 96326120 doesn't seem to be mutated. Here are the mutated foci.Position 116667714 doesn't seem to be mutated. Here are the mutated foci.Position 116673092 doesn't seem to be mutated. Here are the mutated foci.Position 116675421 doesn't seem to be mutated. Here are the mutated foci.Position 116682280 doesn't seem to be mutated. Here are the mutated foci.Position 116684917 doesn't seem to be mutated. Here are the mutated foci.Position 116686729 doesn't seem to be mutated. Here are the mutated foci.Position 116689501 doesn't seem to be mutated. Here are the mutated foci.Position 116694033 doesn't seem to be mutated. Here are the mutated foci.Position 116712575 doesn't seem to be mutated. Here are the mutated foci.Position 116722959 doesn't seem to be mutated. Here are the mutated foci.Position 116725014 doesn't seem to be mutated. Here are the mutated foci.Position 116733290 doesn't seem to be mutated. Here are the mutated foci.Position 116734937 doesn't seem to be mutated. Here are the mutated foci.Position 116736299 doesn't seem to be mutated. Here are the mutated foci.Position 116744290 doesn't seem to be mutated. Here are the mutated foci.Position 116749087 doesn't seem to be mutated. Here are the mutated foci.Position 116757875 doesn't seem to be mutated. Here are the mutated foci.Position 116759063 doesn't seem to be mutated. Here are the mutated foci.Position 116759281 doesn't seem to be mutated. Here are the mutated foci.Position 116760551 doesn't seem to be mutated. Here are the mutated foci.Position 116762882 doesn't seem to be mutated. Here are the mutated foci.Position 116763152 doesn't seem to be mutated. Here are the mutated foci.Position 116764947 doesn't seem to be mutated. Here are the mutated foci.Position 116766957 doesn't seem to be mutated. Here are the mutated foci.Position 116769242 doesn't seem to be mutated. Here are the mutated foci.Position 116773415 doesn't seem to be mutated. Here are the mutated foci.Position 116774121 doesn't seem to be mutated. Here are the mutated foci.Position 116776055 doesn't seem to be mutated. Here are the mutated foci.Position 116779550 doesn't seem to be mutated. Here are the mutated foci.Position 116785045 doesn't seem to be mutated. Here are the mutated foci.Position 116786222 doesn't seem to be mutated. Here are the mutated foci.Position 116789563 doesn't seem to be mutated. Here are the mutated foci.Position 116791668 doesn't seem to be mutated. Here are the mutated foci.Position 124817688 doesn't seem to be mutated. Here are the mutated foci.Position 124821851 doesn't seem to be mutated. Here are the mutated foci.Position 124824198 doesn't seem to be mutated. Here are the mutated foci.Position 124827189 doesn't seem to be mutated. Here are the mutated foci.Position 124829378 doesn't seem to be mutated. Here are the mutated foci.Position 124830897 doesn't seem to be mutated. Here are the mutated foci.Position 124831884 doesn't seem to be mutated. Here are the mutated foci.Position 124838748 doesn't seem to be mutated. Here are the mutated foci.Position 124839123 doesn't seem to be mutated. Here are the mutated foci.Position 124840069 doesn't seem to be mutated. Here are the mutated foci.Position 124843882 doesn't seem to be mutated. Here are the mutated foci.Position 124844718 doesn't seem to be mutated. Here are the mutated foci.Position 124846917 doesn't seem to be mutated. Here are the mutated foci.Position 124850579 doesn't seem to be mutated. Here are the mutated foci.Position 124851972 doesn't seem to be mutated. Here are the mutated foci.Position 124852488 doesn't seem to be mutated. Here are the mutated foci.Position 124854441 doesn't seem to be mutated. Here are the mutated foci.Position 124856228 doesn't seem to be mutated. Here are the mutated foci.Position 124859722 doesn't seem to be mutated. Here are the mutated foci.Position 124860142 doesn't seem to be mutated. Here are the mutated foci.Position 124871418 doesn't seem to be mutated. Here are the mutated foci.Position 124871868 doesn't seem to be mutated. Here are the mutated foci.Position 124876217 doesn't seem to be mutated. Here are the mutated foci.Position 124876582 doesn't seem to be mutated. Here are the mutated foci.Position 124877228 doesn't seem to be mutated. Here are the mutated foci.Position 124880017 doesn't seem to be mutated. Here are the mutated foci.Position 124886971 doesn't seem to be mutated. Here are the mutated foci.Position 124888300 doesn't seem to be mutated. Here are the mutated foci.Position 124902455 doesn't seem to be mutated. Here are the mutated foci.Position 124904014 doesn't seem to be mutated. Here are the mutated foci.Position 124905903 doesn't seem to be mutated. Here are the mutated foci.Position 124908320 doesn't seem to be mutated. Here are the mutated foci.Position 124914427 doesn't seem to be mutated. Here are the mutated foci.Position 124915690 doesn't seem to be mutated. Here are the mutated foci.Position 124915793 doesn't seem to be mutated. Here are the mutated foci.Position 124923425 doesn't seem to be mutated. Here are the mutated foci.Position 124925483 doesn't seem to be mutated. Here are the mutated foci.Position 124926092 doesn't seem to be mutated. Here are the mutated foci.Position 124927745 doesn't seem to be mutated. Here are the mutated foci.Position 140727568 doesn't seem to be mutated. Here are the mutated foci.Position 140733221 doesn't seem to be mutated. Here are the mutated foci.Position 140734061 doesn't seem to be mutated. Here are the mutated foci.Position 140735704 doesn't seem to be mutated. Here are the mutated foci.Position 140736514 doesn't seem to be mutated. Here are the mutated foci.Position 140742354 doesn't seem to be mutated. Here are the mutated foci.Position 140749642 doesn't seem to be mutated. Here are the mutated foci.Position 140749669 doesn't seem to be mutated. Here are the mutated foci.Position 140750914 doesn't seem to be mutated. Here are the mutated foci.Position 140752358 doesn't seem to be mutated. Here are the mutated foci.Position 140754897 doesn't seem to be mutated. Here are the mutated foci.Position 140759100 doesn't seem to be mutated. Here are the mutated foci.Position 140763104 doesn't seem to be mutated. Here are the mutated foci.Position 140766104 doesn't seem to be mutated. Here are the mutated foci.Position 140774748 doesn't seem to be mutated. Here are the mutated foci.Position 140777250 doesn't seem to be mutated. Here are the mutated foci.Position 140782311 doesn't seem to be mutated. Here are the mutated foci.Position 140791233 doesn't seem to be mutated. Here are the mutated foci.Position 140810778 doesn't seem to be mutated. Here are the mutated foci.Position 140811782 doesn't seem to be mutated. Here are the mutated foci.Position 140813654 doesn't seem to be mutated. Here are the mutated foci.Position 140818381 doesn't seem to be mutated. Here are the mutated foci.Position 140828345 doesn't seem to be mutated. Here are the mutated foci.Position 140830410 doesn't seem to be mutated. Here are the mutated foci.Position 140833131 doesn't seem to be mutated. Here are the mutated foci.Position 140833761 doesn't seem to be mutated. Here are the mutated foci.Position 140839110 doesn't seem to be mutated. Here are the mutated foci.Position 140839747 doesn't seem to be mutated. Here are the mutated foci.Position 140845131 doesn't seem to be mutated. Here are the mutated foci.Position 140845650 doesn't seem to be mutated. Here are the mutated foci.Position 140849979 doesn't seem to be mutated. Here are the mutated foci.Position 140851034 doesn't seem to be mutated. Here are the mutated foci.Position 140858866 doesn't seem to be mutated. Here are the mutated foci.Position 140865268 doesn't seem to be mutated. Here are the mutated foci.Position 140867027 doesn't seem to be mutated. Here are the mutated foci.Position 140869588 doesn't seem to be mutated. Here are the mutated foci.Position 140870509 doesn't seem to be mutated. Here are the mutated foci.Position 140872800 doesn't seem to be mutated. Here are the mutated foci.Position 140880844 doesn't seem to be mutated. Here are the mutated foci.Position 140887567 doesn't seem to be mutated. Here are the mutated foci.Position 140895061 doesn't seem to be mutated. Here are the mutated foci.Position 140911365 doesn't seem to be mutated. Here are the mutated foci.Position 140911675 doesn't seem to be mutated. Here are the mutated foci.Position 140915143 doesn't seem to be mutated. Here are the mutated foci.Position 140915583 doesn't seem to be mutated. Here are the mutated foci.Position 140916856 doesn't seem to be mutated. Here are the mutated foci.Position 140919928 doesn't seem to be mutated. Here are the mutated foci.Position 140920914 doesn't seem to be mutated. Here are the mutated foci.Position 140921606 doesn't seem to be mutated. Here are the mutated foci.Position 142756809 doesn't seem to be mutated. Here are the mutated foci.Position 148802635 doesn't seem to be mutated. Here are the mutated foci.Position 148804661 doesn't seem to be mutated. Here are the mutated foci.Position 148806597 doesn't seem to be mutated. Here are the mutated foci.Position 148808426 doesn't seem to be mutated. Here are the mutated foci.Position 148812404 doesn't seem to be mutated. Here are the mutated foci.Position 148813162 doesn't seem to be mutated. Here are the mutated foci.Position 148814950 doesn't seem to be mutated. Here are the mutated foci.Position 148818754 doesn't seem to be mutated. Here are the mutated foci.Position 148819626 doesn't seem to be mutated. Here are the mutated foci.Position 148819827 doesn't seem to be mutated. Here are the mutated foci.Position 148822814 doesn't seem to be mutated. Here are the mutated foci.Position 148823703 doesn't seem to be mutated. Here are the mutated foci.Position 148839826 doesn't seem to be mutated. Here are the mutated foci.Position 148840600 doesn't seem to be mutated. Here are the mutated foci.Position 148843059 doesn't seem to be mutated. Here are the mutated foci.Position 148844880 doesn't seem to be mutated. Here are the mutated foci.Position 148853567 doesn't seem to be mutated. Here are the mutated foci.Position 148858342 doesn't seem to be mutated. Here are the mutated foci.Position 148861620 doesn't seem to be mutated. Here are the mutated foci.Position 148862314 doesn't seem to be mutated. Here are the mutated foci.Position 148866220 doesn't seem to be mutated. Here are the mutated foci.Position 148886072 doesn't seem to be mutated. Here are the mutated foci.Position 148886633 doesn't seem to be mutated. Here are the mutated foci.Position 31046045 doesn't seem to be mutated. Here are the mutated foci.Position 31054413 doesn't seem to be mutated. Here are the mutated foci.Position 31061554 doesn't seem to be mutated. Here are the mutated foci.Position 31066438 doesn't seem to be mutated. Here are the mutated foci.Position 31067418 doesn't seem to be mutated. Here are the mutated foci.Position 31074804 doesn't seem to be mutated. Here are the mutated foci.Position 31088484 doesn't seem to be mutated. Here are the mutated foci.Position 31101964 doesn't seem to be mutated. Here are the mutated foci.Position 31117360 doesn't seem to be mutated. Here are the mutated foci.Position 31137522 doesn't seem to be mutated. Here are the mutated foci.Position 31139676 doesn't seem to be mutated. Here are the mutated foci.Position 31141458 doesn't seem to be mutated. Here are the mutated foci.Position 31149123 doesn't seem to be mutated. Here are the mutated foci.Position 31153821 doesn't seem to be mutated. Here are the mutated foci.Position 31153831 doesn't seem to be mutated. Here are the mutated foci.Position 31159860 doesn't seem to be mutated. Here are the mutated foci.Position 31160275 doesn't seem to be mutated. Here are the mutated foci.Position 31161417 doesn't seem to be mutated. Here are the mutated foci.Position 31168188 doesn't seem to be mutated. Here are the mutated foci.Position 31170854 doesn't seem to be mutated. Here are the mutated foci.Position 31171219 doesn't seem to be mutated. Here are the mutated foci.Position 31174377 doesn't seem to be mutated. Here are the mutated foci.Position 31178509 doesn't seem to be mutated. Here are the mutated foci.Position 38414597 doesn't seem to be mutated. Here are the mutated foci.Position 38416087 doesn't seem to be mutated. Here are the mutated foci.Position 38420061 doesn't seem to be mutated. Here are the mutated foci.Position 38424149 doesn't seem to be mutated. Here are the mutated foci.Position 38431284 doesn't seem to be mutated. Here are the mutated foci.Position 38440312 doesn't seem to be mutated. Here are the mutated foci.Position 38442235 doesn't seem to be mutated. Here are the mutated foci.Position 38455525 doesn't seem to be mutated. Here are the mutated foci.Position 38459939 doesn't seem to be mutated. Here are the mutated foci.Position 38465408 doesn't seem to be mutated. Here are the mutated foci.Position 38467188 doesn't seem to be mutated. Here are the mutated foci.Position 38468694 doesn't seem to be mutated. Here are the mutated foci.Position 38470432 doesn't seem to be mutated. Here are the mutated foci.Position 38473063 doesn't seem to be mutated. Here are the mutated foci.Position 89929645 doesn't seem to be mutated. Here are the mutated foci.Position 89956395 doesn't seem to be mutated. Here are the mutated foci.Position 89957418 doesn't seem to be mutated. Here are the mutated foci.Position 89957484 doesn't seem to be mutated. Here are the mutated foci.Position 89983250 doesn't seem to be mutated. Here are the mutated foci.Position 89987681 doesn't seem to be mutated. Here are the mutated foci.Position 89987687 doesn't seem to be mutated. Here are the mutated foci.Position 89988325 doesn't seem to be mutated. Here are the mutated foci.Position 89996268 doesn't seem to be mutated. Here are the mutated foci.Position 117801514 doesn't seem to be mutated. Here are the mutated foci.Position 117823769 doesn't seem to be mutated. Here are the mutated foci.Position 117824734 doesn't seem to be mutated. Here are the mutated foci.Position 117825478 doesn't seem to be mutated. Here are the mutated foci.Position 117825636 doesn't seem to be mutated. Here are the mutated foci.Position 117827939 doesn't seem to be mutated. Here are the mutated foci.Position 117828067 doesn't seem to be mutated. Here are the mutated foci.Position 117833962 doesn't seem to be mutated. Here are the mutated foci.Position 117834534 doesn't seem to be mutated. Here are the mutated foci.Position 117834785 doesn't seem to be mutated. Here are the mutated foci.Position 117837730 doesn't seem to be mutated. Here are the mutated foci.Position 117844064 doesn't seem to be mutated. Here are the mutated foci.Position 117844847 doesn't seem to be mutated. Here are the mutated foci.Position 117848083 doesn't seem to be mutated. Here are the mutated foci.Position 117855731 doesn't seem to be mutated. Here are the mutated foci.Position 117856399 doesn't seem to be mutated. Here are the mutated foci.Position 117856969 doesn't seem to be mutated. Here are the mutated foci.Position 117877327 doesn't seem to be mutated. Here are the mutated foci.Position 117879754 doesn't seem to be mutated. Here are the mutated foci.Position 117884620 doesn't seem to be mutated. Here are the mutated foci.Position 117895874 doesn't seem to be mutated. Here are the mutated foci.Position 117906397 doesn't seem to be mutated. Here are the mutated foci.Position 117912122 doesn't seem to be mutated. Here are the mutated foci.Position 117913569 doesn't seem to be mutated. Here are the mutated foci.Position 117915109 doesn't seem to be mutated. Here are the mutated foci.Position 117921015 doesn't seem to be mutated. Here are the mutated foci.Position 117923652 doesn't seem to be mutated. Here are the mutated foci.Position 117931443 doesn't seem to be mutated. Here are the mutated foci.Position 117942279 doesn't seem to be mutated. Here are the mutated foci.Position 117942591 doesn't seem to be mutated. Here are the mutated foci.Position 117942634 doesn't seem to be mutated. Here are the mutated foci.Position 117946482 doesn't seem to be mutated. Here are the mutated foci.Position 117947068 doesn't seem to be mutated. Here are the mutated foci.Position 117950722 doesn't seem to be mutated. Here are the mutated foci.Position 117964439 doesn't seem to be mutated. Here are the mutated foci.Position 117974470 doesn't seem to be mutated. Here are the mutated foci.Position 117977334 doesn't seem to be mutated. Here are the mutated foci.Position 117982892 doesn't seem to be mutated. Here are the mutated foci.Position 117988546 doesn't seem to be mutated. Here are the mutated foci.Position 117993236 doesn't seem to be mutated. Here are the mutated foci.Position 117998633 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 118005029 doesn't seem to be mutated. Here are the mutated foci.Position 118009631 doesn't seem to be mutated. Here are the mutated foci.Position 118011449 doesn't seem to be mutated. Here are the mutated foci.Position 118013244 doesn't seem to be mutated. Here are the mutated foci.Position 118017534 doesn't seem to be mutated. Here are the mutated foci.Position 118018693 doesn't seem to be mutated. Here are the mutated foci.Position 118027674 doesn't seem to be mutated. Here are the mutated foci.Position 118038789 doesn't seem to be mutated. Here are the mutated foci.Position 118042958 doesn't seem to be mutated. Here are the mutated foci.Position 118048110 doesn't seem to be mutated. Here are the mutated foci.Position 118061269 doesn't seem to be mutated. Here are the mutated foci.Position 118063683 doesn't seem to be mutated. Here are the mutated foci.Position 118064033 doesn't seem to be mutated. Here are the mutated foci.Position 118064119 doesn't seem to be mutated. Here are the mutated foci.Position 118067105 doesn't seem to be mutated. Here are the mutated foci.Position 118068302 doesn't seem to be mutated. Here are the mutated foci.Position 118068958 doesn't seem to be mutated. Here are the mutated foci.Position 118070928 doesn't seem to be mutated. Here are the mutated foci.Position 118072855 doesn't seem to be mutated. Here are the mutated foci.Position 118073709 doesn't seem to be mutated. Here are the mutated foci.Position 118075523 doesn't seem to be mutated. Here are the mutated foci.Position 118076911 doesn't seem to be mutated. Here are the mutated foci.Position 118077541 doesn't seem to be mutated. Here are the mutated foci.Position 118080954 doesn't seem to be mutated. Here are the mutated foci.Position 118084768 doesn't seem to be mutated. Here are the mutated foci.Position 118085365 doesn't seem to be mutated. Here are the mutated foci.Position 118090494 doesn't seem to be mutated. Here are the mutated foci.Position 118091889 doesn't seem to be mutated. Here are the mutated foci.Position 118095759 doesn't seem to be mutated. Here are the mutated foci.Position 118096294 doesn't seem to be mutated. Here are the mutated foci.Position 118097955 doesn't seem to be mutated. Here are the mutated foci.Position 118103298 doesn't seem to be mutated. Here are the mutated foci.Position 118105627 doesn't seem to be mutated. Here are the mutated foci.Position 118106411 doesn't seem to be mutated. Here are the mutated foci.Position 118108425 doesn't seem to be mutated. Here are the mutated foci.Position 118109399 doesn't seem to be mutated. Here are the mutated foci.Position 144511619 doesn't seem to be mutated. Here are the mutated foci.Position 144512102 doesn't seem to be mutated. Here are the mutated foci.Position 144513944 doesn't seem to be mutated. Here are the mutated foci.Position 216070 doesn't seem to be mutated. Here are the mutated foci.Position 218578 doesn't seem to be mutated. Here are the mutated foci.Position 221474 doesn't seem to be mutated. Here are the mutated foci.Position 222262 doesn't seem to be mutated. Here are the mutated foci.Position 227403 doesn't seem to be mutated. Here are the mutated foci.Position 228322 doesn't seem to be mutated. Here are the mutated foci.Position 230663 doesn't seem to be mutated. Here are the mutated foci.Position 236572 doesn't seem to be mutated. Here are the mutated foci.Position 239631 doesn't seem to be mutated. Here are the mutated foci.Position 244936 doesn't seem to be mutated. Here are the mutated foci.Position 248561 doesn't seem to be mutated. Here are the mutated foci.Position 249610 doesn't seem to be mutated. Here are the mutated foci.Position 250612 doesn't seem to be mutated. Here are the mutated foci.Position 251019 doesn't seem to be mutated. Here are the mutated foci.Position 256415 doesn't seem to be mutated. Here are the mutated foci.Position 262589 doesn't seem to be mutated. Here are the mutated foci.Position 263971 doesn't seem to be mutated. Here are the mutated foci.Position 265749 doesn't seem to be mutated. Here are the mutated foci.Position 269116 doesn't seem to be mutated. Here are the mutated foci.Position 276963 doesn't seem to be mutated. Here are the mutated foci.Position 297250 doesn't seem to be mutated. Here are the mutated foci.Position 303029 doesn't seem to be mutated. Here are the mutated foci.Position 305681 doesn't seem to be mutated. Here are the mutated foci.Position 307209 doesn't seem to be mutated. Here are the mutated foci.Position 310282 doesn't seem to be mutated. Here are the mutated foci.Position 312273 doesn't seem to be mutated. Here are the mutated foci.Position 312397 doesn't seem to be mutated. Here are the mutated foci.Position 324092 doesn't seem to be mutated. Here are the mutated foci.Position 325252 doesn't seem to be mutated. Here are the mutated foci.Position 330328 doesn't seem to be mutated. Here are the mutated foci.Position 330977 doesn't seem to be mutated. Here are the mutated foci.Position 335736 doesn't seem to be mutated. Here are the mutated foci.Position 343250 doesn't seem to be mutated. Here are the mutated foci.Position 344504 doesn't seem to be mutated. Here are the mutated foci.Position 345157 doesn't seem to be mutated. Here are the mutated foci.Position 346775 doesn't seem to be mutated. Here are the mutated foci.Position 347547 doesn't seem to be mutated. Here are the mutated foci.Position 353040 doesn't seem to be mutated. Here are the mutated foci.Position 354982 doesn't seem to be mutated. Here are the mutated foci.Position 358512 doesn't seem to be mutated. Here are the mutated foci.Position 359182 doesn't seem to be mutated. Here are the mutated foci.Position 363121 doesn't seem to be mutated. Here are the mutated foci.Position 363286 doesn't seem to be mutated. Here are the mutated foci.Position 363325 doesn't seem to be mutated. Here are the mutated foci.Position 364318 doesn't seem to be mutated. Here are the mutated foci.Position 374682 doesn't seem to be mutated. Here are the mutated foci.Position 376596 doesn't seem to be mutated. Here are the mutated foci.Position 382186 doesn't seem to be mutated. Here are the mutated foci.Position 383360 doesn't seem to be mutated. Here are the mutated foci.Position 394744 doesn't seem to be mutated. Here are the mutated foci.Position 395323 doesn't seem to be mutated. Here are the mutated foci.Position 396524 doesn't seem to be mutated. Here are the mutated foci.Position 397799 doesn't seem to be mutated. Here are the mutated foci.Position 401023 doesn't seem to be mutated. Here are the mutated foci.Position 407018 doesn't seem to be mutated. Here are the mutated foci.Position 408288 doesn't seem to be mutated. Here are the mutated foci.Position 420114 doesn't seem to be mutated. Here are the mutated foci.Position 420395 doesn't seem to be mutated. Here are the mutated foci.Position 422275 doesn't seem to be mutated. Here are the mutated foci.Position 425862 doesn't seem to be mutated. Here are the mutated foci.Position 428258 doesn't seem to be mutated. Here are the mutated foci.Position 429345 doesn't seem to be mutated. Here are the mutated foci.Position 431260 doesn't seem to be mutated. Here are the mutated foci.Position 433591 doesn't seem to be mutated. Here are the mutated foci.Position 439548 doesn't seem to be mutated. Here are the mutated foci.Position 442876 doesn't seem to be mutated. Here are the mutated foci.Position 447004 doesn't seem to be mutated. Here are the mutated foci.Position 450968 doesn't seem to be mutated. Here are the mutated foci.Position 454686 doesn't seem to be mutated. Here are the mutated foci.Position 457473 doesn't seem to be mutated. Here are the mutated foci.Position 1993391 doesn't seem to be mutated. Here are the mutated foci.Position 1996745 doesn't seem to be mutated. Here are the mutated foci.Position 1998222 doesn't seem to be mutated. Here are the mutated foci.Position 1998622 doesn't seem to be mutated. Here are the mutated foci.Position 1999646 doesn't seem to be mutated. Here are the mutated foci.Position 2005302 doesn't seem to be mutated. Here are the mutated foci.Position 2009490 doesn't seem to be mutated. Here are the mutated foci.Position 2010886 doesn't seem to be mutated. Here are the mutated foci.Position 2013767 doesn't seem to be mutated. Here are the mutated foci.Position 2024511 doesn't seem to be mutated. Here are the mutated foci.Position 2024769 doesn't seem to be mutated. Here are the mutated foci.Position 2028856 doesn't seem to be mutated. Here are the mutated foci.Position 2031114 doesn't seem to be mutated. Here are the mutated foci.Position 2039432 doesn't seem to be mutated. Here are the mutated foci.Position 2041868 doesn't seem to be mutated. Here are the mutated foci.Position 2042219 doesn't seem to be mutated. Here are the mutated foci.Position 2043547 doesn't seem to be mutated. Here are the mutated foci.Position 2050178 doesn't seem to be mutated. Here are the mutated foci.Position 2050436 doesn't seem to be mutated. Here are the mutated foci.Position 2062217 doesn't seem to be mutated. Here are the mutated foci.Position 2063425 doesn't seem to be mutated. Here are the mutated foci.Position 2064856 doesn't seem to be mutated. Here are the mutated foci.Position 2068013 doesn't seem to be mutated. Here are the mutated foci.Position 2068298 doesn't seem to be mutated. Here are the mutated foci.Position 2072568 doesn't seem to be mutated. Here are the mutated foci.Position 2073158 doesn't seem to be mutated. Here are the mutated foci.Position 2073296 doesn't seem to be mutated. Here are the mutated foci.Position 2074386 doesn't seem to be mutated. Here are the mutated foci.Position 2074679 doesn't seem to be mutated. Here are the mutated foci.Position 2076323 doesn't seem to be mutated. Here are the mutated foci.Position 2090136 doesn't seem to be mutated. Here are the mutated foci.Position 2093750 doesn't seem to be mutated. Here are the mutated foci.Position 2093948 doesn't seem to be mutated. Here are the mutated foci.Position 2097235 doesn't seem to be mutated. Here are the mutated foci.Position 2098644 doesn't seem to be mutated. Here are the mutated foci.Position 2099621 doesn't seem to be mutated. Here are the mutated foci.Position 2102018 doesn't seem to be mutated. Here are the mutated foci.Position 2102278 doesn't seem to be mutated. Here are the mutated foci.Position 2112783 doesn't seem to be mutated. Here are the mutated foci.Position 2117368 doesn't seem to be mutated. Here are the mutated foci.Position 2117965 doesn't seem to be mutated. Here are the mutated foci.Position 2118341 doesn't seem to be mutated. Here are the mutated foci.Position 2119537 doesn't seem to be mutated. Here are the mutated foci.Position 2124885 doesn't seem to be mutated. Here are the mutated foci.Position 2127523 doesn't seem to be mutated. Here are the mutated foci.Position 2127633 doesn't seem to be mutated. Here are the mutated foci.Position 2130337 doesn't seem to be mutated. Here are the mutated foci.Position 2137378 doesn't seem to be mutated. Here are the mutated foci.Position 2138645 doesn't seem to be mutated. Here are the mutated foci.Position 2141004 doesn't seem to be mutated. Here are the mutated foci.Position 2145345 doesn't seem to be mutated. Here are the mutated foci.Position 2149341 doesn't seem to be mutated. Here are the mutated foci.Position 2153810 doesn't seem to be mutated. Here are the mutated foci.Position 2158555 doesn't seem to be mutated. Here are the mutated foci.Position 2160327 doesn't seem to be mutated. Here are the mutated foci.Position 2165812 doesn't seem to be mutated. Here are the mutated foci.Position 2165902 doesn't seem to be mutated. Here are the mutated foci.Position 2177352 doesn't seem to be mutated. Here are the mutated foci.Position 2178685 doesn't seem to be mutated. Here are the mutated foci.Position 2183929 doesn't seem to be mutated. Here are the mutated foci.Position 2191375 doesn't seem to be mutated. Here are the mutated foci.Position 19374237 doesn't seem to be mutated. Here are the mutated foci.Position 19375511 doesn't seem to be mutated. Here are the mutated foci.Position 19378837 doesn't seem to be mutated. Here are the mutated foci.Position 19383217 doesn't seem to be mutated. Here are the mutated foci.Position 19385192 doesn't seem to be mutated. Here are the mutated foci.Position 21798562 doesn't seem to be mutated. Here are the mutated foci.Position 21801352 doesn't seem to be mutated. Here are the mutated foci.Position 21805058 doesn't seem to be mutated. Here are the mutated foci.Position 21805121 doesn't seem to be mutated. Here are the mutated foci.Position 21808699 doesn't seem to be mutated. Here are the mutated foci.Position 21811525 doesn't seem to be mutated. Here are the mutated foci.Position 21814656 doesn't seem to be mutated. Here are the mutated foci.Position 21820680 doesn't seem to be mutated. Here are the mutated foci.Position 21823987 doesn't seem to be mutated. Here are the mutated foci.Position 21834220 doesn't seem to be mutated. Here are the mutated foci.Position 21836074 doesn't seem to be mutated. Here are the mutated foci.Position 21844311 doesn't seem to be mutated. Here are the mutated foci.Position 21845571 doesn't seem to be mutated. Here are the mutated foci.Position 21845660 doesn't seem to be mutated. Here are the mutated foci.Position 21852323 doesn't seem to be mutated. Here are the mutated foci.Position 21852994 doesn't seem to be mutated. Here are the mutated foci.Position 21858653 doesn't seem to be mutated. Here are the mutated foci.Position 21860330 doesn't seem to be mutated. Here are the mutated foci.Position 21964046 doesn't seem to be mutated. Here are the mutated foci.Position 21964582 doesn't seem to be mutated. Here are the mutated foci.Position 21977568 doesn't seem to be mutated. Here are the mutated foci.Position 21978280 doesn't seem to be mutated. Here are the mutated foci.Position 36828548 doesn't seem to be mutated. Here are the mutated foci.Position 36831931 doesn't seem to be mutated. Here are the mutated foci.Position 36837881 doesn't seem to be mutated. Here are the mutated foci.Position 36843525 doesn't seem to be mutated. Here are the mutated foci.Position 36844518 doesn't seem to be mutated. Here are the mutated foci.Position 36848178 doesn't seem to be mutated. Here are the mutated foci.Position 36848887 doesn't seem to be mutated. Here are the mutated foci.Position 36850814 doesn't seem to be mutated. Here are the mutated foci.Position 36854999 doesn't seem to be mutated. Here are the mutated foci.Position 36866544 doesn't seem to be mutated. Here are the mutated foci.Position 36868401 doesn't seem to be mutated. Here are the mutated foci.Position 36905215 doesn't seem to be mutated. Here are the mutated foci.Position 36916199 doesn't seem to be mutated. Here are the mutated foci.Position 36917831 doesn't seem to be mutated. Here are the mutated foci.Position 36930519 doesn't seem to be mutated. Here are the mutated foci.Position 36938568 doesn't seem to be mutated. Here are the mutated foci.Position 36940271 doesn't seem to be mutated. Here are the mutated foci.Position 36944519 doesn't seem to be mutated. Here are the mutated foci.Position 36950392 doesn't seem to be mutated. Here are the mutated foci.Position 36955065 doesn't seem to be mutated. Here are the mutated foci.Position 36958578 doesn't seem to be mutated. Here are the mutated foci.Position 36967888 doesn't seem to be mutated. Here are the mutated foci.Position 36976426 doesn't seem to be mutated. Here are the mutated foci.Position 36994183 doesn't seem to be mutated. Here are the mutated foci.Position 36995475 doesn't seem to be mutated. Here are the mutated foci.Position 36998080 doesn't seem to be mutated. Here are the mutated foci.Position 37014651 doesn't seem to be mutated. Here are the mutated foci.Position 37016997 doesn't seem to be mutated. Here are the mutated foci.Position 37017999 doesn't seem to be mutated. Here are the mutated foci.Position 37023518 doesn't seem to be mutated. Here are the mutated foci.Position 37024861 doesn't seem to be mutated. Here are the mutated foci.Position 37025772 doesn't seem to be mutated. Here are the mutated foci.Position 37034783 doesn't seem to be mutated. Here are the mutated foci.Position 95096437 doesn't seem to be mutated. Here are the mutated foci.Position 95102492 doesn't seem to be mutated. Here are the mutated foci.Position 95112434 doesn't seem to be mutated. Here are the mutated foci.Position 95115808 doesn't seem to be mutated. Here are the mutated foci.Position 95118866 doesn't seem to be mutated. Here are the mutated foci.Position 95125121 doesn't seem to be mutated. Here are the mutated foci.Position 95139046 doesn't seem to be mutated. Here are the mutated foci.Position 95139529 doesn't seem to be mutated. Here are the mutated foci.Position 95142283 doesn't seem to be mutated. Here are the mutated foci.Position 95152874 doesn't seem to be mutated. Here are the mutated foci.Position 95152963 doesn't seem to be mutated. Here are the mutated foci.Position 95162779 doesn't seem to be mutated. Here are the mutated foci.Position 95169869 doesn't seem to be mutated. Here are the mutated foci.Position 95174081 doesn't seem to be mutated. Here are the mutated foci.Position 95180642 doesn't seem to be mutated. Here are the mutated foci.Position 95181543 doesn't seem to be mutated. Here are the mutated foci.Position 95181923 doesn't seem to be mutated. Here are the mutated foci.Position 95185237 doesn't seem to be mutated. Here are the mutated foci.Position 95194762 doesn't seem to be mutated. Here are the mutated foci.Position 95194822 doesn't seem to be mutated. Here are the mutated foci.Position 95203419 doesn't seem to be mutated. Here are the mutated foci.Position 95206790 doesn't seem to be mutated. Here are the mutated foci.Position 95210663 doesn't seem to be mutated. Here are the mutated foci.Position 95216630 doesn't seem to be mutated. Here are the mutated foci.Position 95219102 doesn't seem to be mutated. Here are the mutated foci.Position 95223011 doesn't seem to be mutated. Here are the mutated foci.Position 95228566 doesn't seem to be mutated. Here are the mutated foci.Position 95228853 doesn't seem to be mutated. Here are the mutated foci.Position 95232265 doesn't seem to be mutated. Here are the mutated foci.Position 95232838 doesn't seem to be mutated. Here are the mutated foci.Position 95256780 doesn't seem to be mutated. Here are the mutated foci.Position 95257431 doesn't seem to be mutated. Here are the mutated foci.Position 95260961 doesn't seem to be mutated. Here are the mutated foci.Position 95271983 doesn't seem to be mutated. Here are the mutated foci.Position 95273119 doesn't seem to be mutated. Here are the mutated foci.Position 95279309 doesn't seem to be mutated. Here are the mutated foci.Position 95279753 doesn't seem to be mutated. Here are the mutated foci.Position 95279879 doesn't seem to be mutated. Here are the mutated foci.Position 95284167 doesn't seem to be mutated. Here are the mutated foci.Position 95290414 doesn't seem to be mutated. Here are the mutated foci.Position 95291489 doesn't seem to be mutated. Here are the mutated foci.Position 95293695 doesn't seem to be mutated. Here are the mutated foci.Position 95294825 doesn't seem to be mutated. Here are the mutated foci.Position 95295473 doesn't seem to be mutated. Here are the mutated foci.Position 95303262 doesn't seem to be mutated. Here are the mutated foci.Position 95304830 doesn't seem to be mutated. Here are the mutated foci.Position 95308675 doesn't seem to be mutated. Here are the mutated foci.Position 95315664 doesn't seem to be mutated. Here are the mutated foci.Position 95327992 doesn't seem to be mutated. Here are the mutated foci.Position 95332455 doesn't seem to be mutated. Here are the mutated foci.Position 95335878 doesn't seem to be mutated. Here are the mutated foci.Position 95337844 doesn't seem to be mutated. Here are the mutated foci.Position 95339354 doesn't seem to be mutated. Here are the mutated foci.Position 95339508 doesn't seem to be mutated. Here are the mutated foci.Position 95339846 doesn't seem to be mutated. Here are the mutated foci.Position 95339861 doesn't seem to be mutated. Here are the mutated foci.Position 95340157 doesn't seem to be mutated. Here are the mutated foci.Position 95344081 doesn't seem to be mutated. Here are the mutated foci.Position 95346582 doesn't seem to be mutated. Here are the mutated foci.Position 95347517 doesn't seem to be mutated. Here are the mutated foci.Position 95348480 doesn't seem to be mutated. Here are the mutated foci.Position 95351315 doesn't seem to be mutated. Here are the mutated foci.Position 95353768 doesn't seem to be mutated. Here are the mutated foci.Position 95357876 doesn't seem to be mutated. Here are the mutated foci.Position 95361721 doesn't seem to be mutated. Here are the mutated foci.Position 95362854 doesn't seem to be mutated. Here are the mutated foci.Position 95371055 doesn't seem to be mutated. Here are the mutated foci.Position 95374480 doesn't seem to be mutated. Here are the mutated foci.Position 95376012 doesn't seem to be mutated. Here are the mutated foci.Position 95383027 doesn't seem to be mutated. Here are the mutated foci.Position 95384658 doesn't seem to be mutated. Here are the mutated foci.Position 95385283 doesn't seem to be mutated. Here are the mutated foci.Position 95389121 doesn't seem to be mutated. Here are the mutated foci.Position 95389405 doesn't seem to be mutated. Here are the mutated foci.Position 95390008 doesn't seem to be mutated. Here are the mutated foci.Position 95391083 doesn't seem to be mutated. Here are the mutated foci.Position 95401081 doesn't seem to be mutated. Here are the mutated foci.Position 95426029 doesn't seem to be mutated. Here are the mutated foci.Position 95439276 doesn't seem to be mutated. Here are the mutated foci.Position 95444284 doesn't seem to be mutated. Here are the mutated foci.Position 95448273 doesn't seem to be mutated. Here are the mutated foci.Position 95458955 doesn't seem to be mutated. Here are the mutated foci.Position 95460061 doesn't seem to be mutated. Here are the mutated foci.Position 95474316 doesn't seem to be mutated. Here are the mutated foci.Position 95475714 doesn't seem to be mutated. Here are the mutated foci.Position 95485283 doesn't seem to be mutated. Here are the mutated foci.Position 95485288 doesn't seem to be mutated. Here are the mutated foci.Position 95495501 doesn't seem to be mutated. Here are the mutated foci.Position 95498774 doesn't seem to be mutated. Here are the mutated foci.Position 95504858 doesn't seem to be mutated. Here are the mutated foci.Position 95509528 doesn't seem to be mutated. Here are the mutated foci.Position 95520156 doesn't seem to be mutated. Here are the mutated foci.Position 97680022 doesn't seem to be mutated. Here are the mutated foci.Position 97690090 doesn't seem to be mutated. Here are the mutated foci.Position 97690324 doesn't seem to be mutated. Here are the mutated foci.Position 97694603 doesn't seem to be mutated. Here are the mutated foci.Position 99105355 doesn't seem to be mutated. Here are the mutated foci.Position 99110435 doesn't seem to be mutated. Here are the mutated foci.Position 99117347 doesn't seem to be mutated. Here are the mutated foci.Position 99124577 doesn't seem to be mutated. Here are the mutated foci.Position 99124719 doesn't seem to be mutated. Here are the mutated foci.Position 99131354 doesn't seem to be mutated. Here are the mutated foci.Position 99132410 doesn't seem to be mutated. Here are the mutated foci.Position 99132949 doesn't seem to be mutated. Here are the mutated foci.Position 99134688 doesn't seem to be mutated. Here are the mutated foci.Position 99139405 doesn't seem to be mutated. Here are the mutated foci.Position 99143922 doesn't seem to be mutated. Here are the mutated foci.Position 99145130 doesn't seem to be mutated. Here are the mutated foci.Position 99147530 doesn't seem to be mutated. Here are the mutated foci.Position 99150248 doesn't seem to be mutated. Here are the mutated foci.Position 99150705 doesn't seem to be mutated. Here are the mutated foci.Position 99153114 doesn't seem to be mutated. Here are the mutated foci.Position 108869880 doesn't seem to be mutated. Here are the mutated foci.Position 108870107 doesn't seem to be mutated. Here are the mutated foci.Position 108872935 doesn't seem to be mutated. Here are the mutated foci.Position 108877167 doesn't seem to be mutated. Here are the mutated foci.Position 108886922 doesn't seem to be mutated. Here are the mutated foci.Position 108891653 doesn't seem to be mutated. Here are the mutated foci.Position 108891729 doesn't seem to be mutated. Here are the mutated foci.Position 108893458 doesn't seem to be mutated. Here are the mutated foci.Position 108897277 doesn't seem to be mutated. Here are the mutated foci.Position 108900516 doesn't seem to be mutated. Here are the mutated foci.Position 108902094 doesn't seem to be mutated. Here are the mutated foci.Position 108905895 doesn't seem to be mutated. Here are the mutated foci.Position 108912100 doesn't seem to be mutated. Here are the mutated foci.Position 108915284 doesn't seem to be mutated. Here are the mutated foci.Position 108916881 doesn't seem to be mutated. Here are the mutated foci.Position 108917285 doesn't seem to be mutated. Here are the mutated foci.Position 108930155 doesn't seem to be mutated. Here are the mutated foci.Position 132895059 doesn't seem to be mutated. Here are the mutated foci.Position 132897954 doesn't seem to be mutated. Here are the mutated foci.Position 132899134 doesn't seem to be mutated. Here are the mutated foci.Position 132905730 doesn't seem to be mutated. Here are the mutated foci.Position 132908460 doesn't seem to be mutated. Here are the mutated foci.Position 132916597 doesn't seem to be mutated. Here are the mutated foci.Position 132921418 doesn't seem to be mutated. Here are the mutated foci.Position 132930418 doesn't seem to be mutated. Here are the mutated foci.Position 132931341 doesn't seem to be mutated. Here are the mutated foci.Position 132933623 doesn't seem to be mutated. Here are the mutated foci.Position 132942596 doesn't seem to be mutated. Here are the mutated foci.Position 132945351 doesn't seem to be mutated. Here are the mutated foci.Position 43074402 doesn't seem to be mutated. Here are the mutated foci.Position 43075852 doesn't seem to be mutated. Here are the mutated foci.Position 43076659 doesn't seem to be mutated. Here are the mutated foci.Position 43082298 doesn't seem to be mutated. Here are the mutated foci.Position 43082754 doesn't seem to be mutated. Here are the mutated foci.Position 43085379 doesn't seem to be mutated. Here are the mutated foci.Position 43093603 doesn't seem to be mutated. Here are the mutated foci.Position 43095142 doesn't seem to be mutated. Here are the mutated foci.Position 43098334 doesn't seem to be mutated. Here are the mutated foci.Position 43098718 doesn't seem to be mutated. Here are the mutated foci.Position 43099280 doesn't seem to be mutated. Here are the mutated foci.Position 43102435 doesn't seem to be mutated. Here are the mutated foci.Position 43108031 doesn't seem to be mutated. Here are the mutated foci.Position 43111238 doesn't seem to be mutated. Here are the mutated foci.Position 43111772 doesn't seem to be mutated. Here are the mutated foci.Position 43114547 doesn't seem to be mutated. Here are the mutated foci.Position 43118565 doesn't seem to be mutated. Here are the mutated foci.Position 43119044 doesn't seem to be mutated. Here are the mutated foci.Position 43120648 doesn't seem to be mutated. Here are the mutated foci.Position 43121268 doesn't seem to be mutated. Here are the mutated foci.Position 43125305 doesn't seem to be mutated. Here are the mutated foci.Position 43125566 doesn't seem to be mutated. Here are the mutated foci.Position 43128873 doesn't seem to be mutated. Here are the mutated foci.Position 43134262 doesn't seem to be mutated. Here are the mutated foci.Position 61897696 doesn't seem to be mutated. Here are the mutated foci.Position 61897982 doesn't seem to be mutated. Here are the mutated foci.Position 61899977 doesn't seem to be mutated. Here are the mutated foci.Position 61903377 doesn't seem to be mutated. Here are the mutated foci.Position 61909457 doesn't seem to be mutated. Here are the mutated foci.Position 61919732 doesn't seem to be mutated. Here are the mutated foci.Position 61936462 doesn't seem to be mutated. Here are the mutated foci.Position 61937424 doesn't seem to be mutated. Here are the mutated foci.Position 61937784 doesn't seem to be mutated. Here are the mutated foci.Position 61946920 doesn't seem to be mutated. Here are the mutated foci.Position 61963874 doesn't seem to be mutated. Here are the mutated foci.Position 61965000 doesn't seem to be mutated. Here are the mutated foci.Position 61966318 doesn't seem to be mutated. Here are the mutated foci.Position 61971414 doesn't seem to be mutated. Here are the mutated foci.Position 61974198 doesn't seem to be mutated. Here are the mutated foci.Position 61982714 doesn't seem to be mutated. Here are the mutated foci.Position 61992769 doesn't seem to be mutated. Here are the mutated foci.Position 61995631 doesn't seem to be mutated. Here are the mutated foci.Position 62012735 doesn't seem to be mutated. Here are the mutated foci.Position 62013944 doesn't seem to be mutated. Here are the mutated foci.Position 62014939 doesn't seem to be mutated. Here are the mutated foci.Position 62014965 doesn't seem to be mutated. Here are the mutated foci.Position 62016077 doesn't seem to be mutated. Here are the mutated foci.Position 62016479 doesn't seem to be mutated. Here are the mutated foci.Position 62016910 doesn't seem to be mutated. Here are the mutated foci.Position 62027659 doesn't seem to be mutated. Here are the mutated foci.Position 62044806 doesn't seem to be mutated. Here are the mutated foci.Position 62057512 doesn't seem to be mutated. Here are the mutated foci.Position 62058892 doesn't seem to be mutated. Here are the mutated foci.Position 62060135 doesn't seem to be mutated. Here are the mutated foci.Position 62061534 doesn't seem to be mutated. Here are the mutated foci.Position 62066120 doesn't seem to be mutated. Here are the mutated foci.Position 62069178 doesn't seem to be mutated. Here are the mutated foci.Position 62074630 doesn't seem to be mutated. Here are the mutated foci.Position 62074670 doesn't seem to be mutated. Here are the mutated foci.Position 62075044 doesn't seem to be mutated. Here are the mutated foci.Position 62075211 doesn't seem to be mutated. Here are the mutated foci.Position 62076585 doesn't seem to be mutated. Here are the mutated foci.Position 62080480 doesn't seem to be mutated. Here are the mutated foci.Position 62082727 doesn't seem to be mutated. Here are the mutated foci.Position 62085647 doesn't seem to be mutated. Here are the mutated foci.Position 62094917 doesn't seem to be mutated. Here are the mutated foci.Position 70594887 doesn't seem to be mutated. Here are the mutated foci.Position 70596388 doesn't seem to be mutated. Here are the mutated foci.Position 70597941 doesn't seem to be mutated. Here are the mutated foci.Position 70598310 doesn't seem to be mutated. Here are the mutated foci.Position 70602950 doesn't seem to be mutated. Here are the mutated foci.Position 70607581 doesn't seem to be mutated. Here are the mutated foci.Position 78029799 doesn't seem to be mutated. Here are the mutated foci.Position 78031398 doesn't seem to be mutated. Here are the mutated foci.Position 78032217 doesn't seem to be mutated. Here are the mutated foci.Position 78033720 doesn't seem to be mutated. Here are the mutated foci.Position 78036631 doesn't seem to be mutated. Here are the mutated foci.Position 78039520 doesn't seem to be mutated. Here are the mutated foci.Position 78045562 doesn't seem to be mutated. Here are the mutated foci.Position 78056067 doesn't seem to be mutated. Here are the mutated foci.Position 78058392 doesn't seem to be mutated. Here are the mutated foci.Position 78059087 doesn't seem to be mutated. Here are the mutated foci.Position 86758051 doesn't seem to be mutated. Here are the mutated foci.Position 86758179 doesn't seem to be mutated. Here are the mutated foci.Position 86761442 doesn't seem to be mutated. Here are the mutated foci.Position 86770467 doesn't seem to be mutated. Here are the mutated foci.Position 86771216 doesn't seem to be mutated. Here are the mutated foci.Position 86773371 doesn't seem to be mutated. Here are the mutated foci.Position 86777458 doesn't seem to be mutated. Here are the mutated foci.Position 86777683 doesn't seem to be mutated. Here are the mutated foci.Position 86779610 doesn't seem to be mutated. Here are the mutated foci.Position 86793772 doesn't seem to be mutated. Here are the mutated foci.Position 86800235 doesn't seem to be mutated. Here are the mutated foci.Position 86804992 doesn't seem to be mutated. Here are the mutated foci.Position 86806769 doesn't seem to be mutated. Here are the mutated foci.Position 86809615 doesn't seem to be mutated. Here are the mutated foci.Position 86813943 doesn't seem to be mutated. Here are the mutated foci.Position 86822213 doesn't seem to be mutated. Here are the mutated foci.Position 86823755 doesn't seem to be mutated. Here are the mutated foci.Position 86824390 doesn't seem to be mutated. Here are the mutated foci.Position 86827557 doesn't seem to be mutated. Here are the mutated foci.Position 86834883 doesn't seem to be mutated. Here are the mutated foci.Position 86838847 doesn't seem to be mutated. Here are the mutated foci.Position 86840392 doesn't seem to be mutated. Here are the mutated foci.Position 86840542 doesn't seem to be mutated. Here are the mutated foci.Position 86843127 doesn't seem to be mutated. Here are the mutated foci.Position 86850150 doesn't seem to be mutated. Here are the mutated foci.Position 86853062 doesn't seem to be mutated. Here are the mutated foci.Position 86861914 doesn't seem to be mutated. Here are the mutated foci.Position 86867437 doesn't seem to be mutated. Here are the mutated foci.Position 86867731 doesn't seem to be mutated. Here are the mutated foci.Position 86870589 doesn't seem to be mutated. Here are the mutated foci.Position 86878696 doesn't seem to be mutated. Here are the mutated foci.Position 86885953 doesn't seem to be mutated. Here are the mutated foci.Position 86894140 doesn't seem to be mutated. Here are the mutated foci.Position 86900170 doesn't seem to be mutated. Here are the mutated foci.Position 86910887 doesn't seem to be mutated. Here are the mutated foci.Position 86915498 doesn't seem to be mutated. Here are the mutated foci.Position 86920811 doesn't seem to be mutated. Here are the mutated foci.Position 86921131 doesn't seem to be mutated. Here are the mutated foci.Position 86921880 doesn't seem to be mutated. Here are the mutated foci.Position 86922797 doesn't seem to be mutated. Here are the mutated foci.Position 86923113 doesn't seem to be mutated. Here are the mutated foci.Position 86925997 doesn't seem to be mutated. Here are the mutated foci.Position 86932107 doesn't seem to be mutated. Here are the mutated foci.Position 87864509 doesn't seem to be mutated. Here are the mutated foci.Position 87866832 doesn't seem to be mutated. Here are the mutated foci.Position 87867326 doesn't seem to be mutated. Here are the mutated foci.Position 87867340 doesn't seem to be mutated. Here are the mutated foci.Position 87873489 doesn't seem to be mutated. Here are the mutated foci.Position 87878018 doesn't seem to be mutated. Here are the mutated foci.Position 87892817 doesn't seem to be mutated. Here are the mutated foci.Position 87899843 doesn't seem to be mutated. Here are the mutated foci.Position 87901490 doesn't seem to be mutated. Here are the mutated foci.Position 87905501 doesn't seem to be mutated. Here are the mutated foci.Position 87909000 doesn't seem to be mutated. Here are the mutated foci.Position 87917756 doesn't seem to be mutated. Here are the mutated foci.Position 87919658 doesn't seem to be mutated. Here are the mutated foci.Position 87919951 doesn't seem to be mutated. Here are the mutated foci.Position 87925531 doesn't seem to be mutated. Here are the mutated foci.Position 87926661 doesn't seem to be mutated. Here are the mutated foci.Position 87958957 doesn't seem to be mutated. Here are the mutated foci.Position 87971446 doesn't seem to be mutated. Here are the mutated foci.Position 88986203 doesn't seem to be mutated. Here are the mutated foci.Position 88991218 doesn't seem to be mutated. Here are the mutated foci.Position 88991783 doesn't seem to be mutated. Here are the mutated foci.Position 88995364 doesn't seem to be mutated. Here are the mutated foci.Position 89000051 doesn't seem to be mutated. Here are the mutated foci.Position 89007622 doesn't seem to be mutated. Here are the mutated foci.Position 89008662 doesn't seem to be mutated. Here are the mutated foci.Position 89009689 doesn't seem to be mutated. Here are the mutated foci.Position 102508282 doesn't seem to be mutated. Here are the mutated foci.Position 102509624 doesn't seem to be mutated. Here are the mutated foci.Position 102519096 doesn't seem to be mutated. Here are the mutated foci.Position 102521477 doesn't seem to be mutated. Here are the mutated foci.Position 102524481 doesn't seem to be mutated. Here are the mutated foci.Position 102532907 doesn't seem to be mutated. Here are the mutated foci.Position 102543689 doesn't seem to be mutated. Here are the mutated foci.Position 102551273 doesn't seem to be mutated. Here are the mutated foci.Position 102560295 doesn't seem to be mutated. Here are the mutated foci.Position 102562995 doesn't seem to be mutated. Here are the mutated foci.Position 102563463 doesn't seem to be mutated. Here are the mutated foci.Position 102565783 doesn't seem to be mutated. Here are the mutated foci.Position 102568090 doesn't seem to be mutated. Here are the mutated foci.Position 102570328 doesn't seem to be mutated. Here are the mutated foci.Position 102571625 doesn't seem to be mutated. Here are the mutated foci.Position 102573369 doesn't seem to be mutated. Here are the mutated foci.Position 102575244 doesn't seem to be mutated. Here are the mutated foci.Position 102579027 doesn't seem to be mutated. Here are the mutated foci.Position 102579545 doesn't seem to be mutated. Here are the mutated foci.Position 102582332 doesn't seem to be mutated. Here are the mutated foci.Position 102590737 doesn't seem to be mutated. Here are the mutated foci.Position 102598506 doesn't seem to be mutated. Here are the mutated foci.Position 102619107 doesn't seem to be mutated. Here are the mutated foci.Position 102628450 doesn't seem to be mutated. Here are the mutated foci.Position 102633966 doesn't seem to be mutated. Here are the mutated foci.Position 110934888 doesn't seem to be mutated. Here are the mutated foci.Position 110936885 doesn't seem to be mutated. Here are the mutated foci.Position 110938571 doesn't seem to be mutated. Here are the mutated foci.Position 110949327 doesn't seem to be mutated. Here are the mutated foci.Position 110956999 doesn't seem to be mutated. Here are the mutated foci.Position 110960837 doesn't seem to be mutated. Here are the mutated foci.Position 110961639 doesn't seem to be mutated. Here are the mutated foci.Position 110962906 doesn't seem to be mutated. Here are the mutated foci.Position 110964094 doesn't seem to be mutated. Here are the mutated foci.Position 110968557 doesn't seem to be mutated. Here are the mutated foci.Position 110971672 doesn't seem to be mutated. Here are the mutated foci.Position 110988882 doesn't seem to be mutated. Here are the mutated foci.Position 110996529 doesn't seem to be mutated. Here are the mutated foci.Position 111003101 doesn't seem to be mutated. Here are the mutated foci.Position 111005556 doesn't seem to be mutated. Here are the mutated foci.Position 111007352 doesn't seem to be mutated. Here are the mutated foci.Position 113546719 doesn't seem to be mutated. Here are the mutated foci.Position 113548211 doesn't seem to be mutated. Here are the mutated foci.Position 113548948 doesn't seem to be mutated. Here are the mutated foci.Position 113572171 doesn't seem to be mutated. Here are the mutated foci.Position 113575553 doesn't seem to be mutated. Here are the mutated foci.Position 113576417 doesn't seem to be mutated. Here are the mutated foci.Position 113577969 doesn't seem to be mutated. Here are the mutated foci.Position 113578406 doesn't seem to be mutated. Here are the mutated foci.Position 113579303 doesn't seem to be mutated. Here are the mutated foci.Position 113582085 doesn't seem to be mutated. Here are the mutated foci.Position 113586821 doesn't seem to be mutated. Here are the mutated foci.Position 121483702 doesn't seem to be mutated. Here are the mutated foci.Position 121484492 doesn't seem to be mutated. Here are the mutated foci.Position 121485533 doesn't seem to be mutated. Here are the mutated foci.Position 121486386 doesn't seem to be mutated. Here are the mutated foci.Position 121493604 doesn't seem to be mutated. Here are the mutated foci.Position 121496185 doesn't seem to be mutated. Here are the mutated foci.Position 121496455 doesn't seem to be mutated. Here are the mutated foci.Position 121498900 doesn't seem to be mutated. Here are the mutated foci.Position 121500249 doesn't seem to be mutated. Here are the mutated foci.Position 121500569 doesn't seem to be mutated. Here are the mutated foci.Position 121500610 doesn't seem to be mutated. Here are the mutated foci.Position 121502065 doesn't seem to be mutated. Here are the mutated foci.Position 121503252 doesn't seem to be mutated. Here are the mutated foci.Position 121509576 doesn't seem to be mutated. Here are the mutated foci.Position 121509602 doesn't seem to be mutated. Here are the mutated foci.Position 121511343 doesn't seem to be mutated. Here are the mutated foci.Position 121515089 doesn't seem to be mutated. Here are the mutated foci.Position 121515740 doesn't seem to be mutated. Here are the mutated foci.Position 121518021 doesn't seem to be mutated. Here are the mutated foci.Position 121522321 doesn't seem to be mutated. Here are the mutated foci.Position 121530819 doesn't seem to be mutated. Here are the mutated foci.Position 121537232 doesn't seem to be mutated. Here are the mutated foci.Position 121540623 doesn't seem to be mutated. Here are the mutated foci.Position 121541230 doesn't seem to be mutated. Here are the mutated foci.Position 121552825 doesn't seem to be mutated. Here are the mutated foci.Position 121555471 doesn't seem to be mutated. Here are the mutated foci.Position 121558169 doesn't seem to be mutated. Here are the mutated foci.Position 121562409 doesn't seem to be mutated. Here are the mutated foci.Position 121563160 doesn't seem to be mutated. Here are the mutated foci.Position 121565016 doesn't seem to be mutated. Here are the mutated foci.Position 121573838 doesn't seem to be mutated. Here are the mutated foci.Position 121589609 doesn't seem to be mutated. Here are the mutated foci.Position 121593786 doesn't seem to be mutated. Here are the mutated foci.Position 121598238 doesn't seem to be mutated. Here are the mutated foci.Position 121599529 doesn't seem to be mutated. Here are the mutated foci.Position 532614 doesn't seem to be mutated. Here are the mutated foci.Position 2887139 doesn't seem to be mutated. Here are the mutated foci.Position 22620756 doesn't seem to be mutated. Here are the mutated foci.Position 32385842 doesn't seem to be mutated. Here are the mutated foci.Position 32386626 doesn't seem to be mutated. Here are the mutated foci.Position 32389537 doesn't seem to be mutated. Here are the mutated foci.Position 32401227 doesn't seem to be mutated. Here are the mutated foci.Position 32405911 doesn't seem to be mutated. Here are the mutated foci.Position 32407015 doesn't seem to be mutated. Here are the mutated foci.Position 32411227 doesn't seem to be mutated. Here are the mutated foci.Position 32412234 doesn't seem to be mutated. Here are the mutated foci.Position 32423688 doesn't seem to be mutated. Here are the mutated foci.Position 32426647 doesn't seem to be mutated. Here are the mutated foci.Position 32426989 doesn't seem to be mutated. Here are the mutated foci.Position 32427838 doesn't seem to be mutated. Here are the mutated foci.Position 32428264 doesn't seem to be mutated. Here are the mutated foci.Position 32429545 doesn't seem to be mutated. Here are the mutated foci.Position 32435508 doesn't seem to be mutated. Here are the mutated foci.Position 32438602 doesn't seem to be mutated. Here are the mutated foci.Position 32439068 doesn't seem to be mutated. Here are the mutated foci.Position 44093690 doesn't seem to be mutated. Here are the mutated foci.Position 44106469 doesn't seem to be mutated. Here are the mutated foci.Position 44107435 doesn't seem to be mutated. Here are the mutated foci.Position 44110042 doesn't seem to be mutated. Here are the mutated foci.Position 44111252 doesn't seem to be mutated. Here are the mutated foci.Position 44112679 doesn't seem to be mutated. Here are the mutated foci.Position 44116023 doesn't seem to be mutated. Here are the mutated foci.Position 44118412 doesn't seem to be mutated. Here are the mutated foci.Position 44119943 doesn't seem to be mutated. Here are the mutated foci.Position 44122756 doesn't seem to be mutated. Here are the mutated foci.Position 44123646 doesn't seem to be mutated. Here are the mutated foci.Position 44126231 doesn't seem to be mutated. Here are the mutated foci.Position 44129340 doesn't seem to be mutated. Here are the mutated foci.Position 44135598 doesn't seem to be mutated. Here are the mutated foci.Position 44150048 doesn't seem to be mutated. Here are the mutated foci.Position 44151053 doesn't seem to be mutated. Here are the mutated foci.Position 44162285 doesn't seem to be mutated. Here are the mutated foci.Position 44170919 doesn't seem to be mutated. Here are the mutated foci.Position 44175260 doesn't seem to be mutated. Here are the mutated foci.Position 44175428 doesn't seem to be mutated. Here are the mutated foci.Position 44178674 doesn't seem to be mutated. Here are the mutated foci.Position 44183847 doesn't seem to be mutated. Here are the mutated foci.Position 44203485 doesn't seem to be mutated. Here are the mutated foci.Position 44205991 doesn't seem to be mutated. Here are the mutated foci.Position 44207860 doesn't seem to be mutated. Here are the mutated foci.Position 44214060 doesn't seem to be mutated. Here are the mutated foci.Position 44218544 doesn't seem to be mutated. Here are the mutated foci.Position 44222703 doesn't seem to be mutated. Here are the mutated foci.Position 44227253 doesn't seem to be mutated. Here are the mutated foci.Position 44228204 doesn't seem to be mutated. Here are the mutated foci.Position 44228432 doesn't seem to be mutated. Here are the mutated foci.Position 44229408 doesn't seem to be mutated. Here are the mutated foci.Position 44230336 doesn't seem to be mutated. Here are the mutated foci.Position 44234791 doesn't seem to be mutated. Here are the mutated foci.Position 44241176 doesn't seem to be mutated. Here are the mutated foci.Position 44242254 doesn't seem to be mutated. Here are the mutated foci.Position 44244131 doesn't seem to be mutated. Here are the mutated foci.Position 44248994 doesn't seem to be mutated. Here are the mutated foci.Position 47218072 doesn't seem to be mutated. Here are the mutated foci.Position 47219223 doesn't seem to be mutated. Here are the mutated foci.Position 47219703 doesn't seem to be mutated. Here are the mutated foci.Position 47221019 doesn't seem to be mutated. Here are the mutated foci.Position 47227233 doesn't seem to be mutated. Here are the mutated foci.Position 47232006 doesn't seem to be mutated. Here are the mutated foci.Position 47235767 doesn't seem to be mutated. Here are the mutated foci.Position 47236045 doesn't seem to be mutated. Here are the mutated foci.Position 61436026 doesn't seem to be mutated. Here are the mutated foci.Position 61437575 doesn't seem to be mutated. Here are the mutated foci.Position 61437593 doesn't seem to be mutated. Here are the mutated foci.Position 61444584 doesn't seem to be mutated. Here are the mutated foci.Position 61444745 doesn't seem to be mutated. Here are the mutated foci.Position 64804600 doesn't seem to be mutated. Here are the mutated foci.Position 64805267 doesn't seem to be mutated. Here are the mutated foci.Position 64809360 doesn't seem to be mutated. Here are the mutated foci.Position 64813068 doesn't seem to be mutated. Here are the mutated foci.Position 67481709 doesn't seem to be mutated. Here are the mutated foci.Position 67485491 doesn't seem to be mutated. Here are the mutated foci.Position 108225357 doesn't seem to be mutated. Here are the mutated foci.Position 108243970 doesn't seem to be mutated. Here are the mutated foci.Position 108245200 doesn't seem to be mutated. Here are the mutated foci.Position 108250007 doesn't seem to be mutated. Here are the mutated foci.Position 108250387 doesn't seem to be mutated. Here are the mutated foci.Position 108251699 doesn't seem to be mutated. Here are the mutated foci.Position 108260788 doesn't seem to be mutated. Here are the mutated foci.Position 108273787 doesn't seem to be mutated. Here are the mutated foci.Position 108276205 doesn't seem to be mutated. Here are the mutated foci.Position 108276852 doesn't seem to be mutated. Here are the mutated foci.Position 108277793 doesn't seem to be mutated. Here are the mutated foci.Position 108286977 doesn't seem to be mutated. Here are the mutated foci.Position 108290278 doesn't seem to be mutated. Here are the mutated foci.Position 108291939 doesn't seem to be mutated. Here are the mutated foci.Position 108296197 doesn't seem to be mutated. Here are the mutated foci.Position 108304370 doesn't seem to be mutated. Here are the mutated foci.Position 108308736 doesn't seem to be mutated. Here are the mutated foci.Position 108322712 doesn't seem to be mutated. Here are the mutated foci.Position 108326295 doesn't seem to be mutated. Here are the mutated foci.Position 108336142 doesn't seem to be mutated. Here are the mutated foci.Position 108345882 doesn't seem to be mutated. Here are the mutated foci.Position 108353671 doesn't seem to be mutated. Here are the mutated foci.Position 108356530 doesn't seem to be mutated. Here are the mutated foci.Position 108357424 doesn't seem to be mutated. Here are the mutated foci.Position 108358731 doesn't seem to be mutated. Here are the mutated foci.Position 108358834 doesn't seem to be mutated. Here are the mutated foci.Position 112089142 doesn't seem to be mutated. Here are the mutated foci.Position 112091525 doesn't seem to be mutated. Here are the mutated foci.Position 112092972 doesn't seem to be mutated. Here are the mutated foci.Position 119205345 doesn't seem to be mutated. Here are the mutated foci.Position 119213229 doesn't seem to be mutated. Here are the mutated foci.Position 119213613 doesn't seem to be mutated. Here are the mutated foci.Position 119213975 doesn't seem to be mutated. Here are the mutated foci.Position 119215298 doesn't seem to be mutated. Here are the mutated foci.Position 119219610 doesn't seem to be mutated. Here are the mutated foci.Position 119221520 doesn't seem to be mutated. Here are the mutated foci.Position 119222620 doesn't seem to be mutated. Here are the mutated foci.Position 119227279 doesn't seem to be mutated. Here are the mutated foci.Position 119228905 doesn't seem to be mutated. Here are the mutated foci.Position 119230497 doesn't seem to be mutated. Here are the mutated foci.Position 119234409 doesn't seem to be mutated. Here are the mutated foci.Position 119236214 doesn't seem to be mutated. Here are the mutated foci.Position 119240299 doesn't seem to be mutated. Here are the mutated foci.Position 119241525 doesn't seem to be mutated. Here are the mutated foci.Position 119241655 doesn't seem to be mutated. Here are the mutated foci.Position 119246004 doesn't seem to be mutated. Here are the mutated foci.Position 119257203 doesn't seem to be mutated. Here are the mutated foci.Position 119263058 doesn't seem to be mutated. Here are the mutated foci.Position 119264083 doesn't seem to be mutated. Here are the mutated foci.Position 119272324 doesn't seem to be mutated. Here are the mutated foci.Position 119274531 doesn't seem to be mutated. Here are the mutated foci.Position 119274614 doesn't seem to be mutated. Here are the mutated foci.Position 119276770 doesn't seem to be mutated. Here are the mutated foci.Position 119285756 doesn't seem to be mutated. Here are the mutated foci.Position 119291883 doesn't seem to be mutated. Here are the mutated foci.Position 119293361 doesn't seem to be mutated. Here are the mutated foci.Position 119294674 doesn't seem to be mutated. Here are the mutated foci.Position 119300035 doesn't seem to be mutated. Here are the mutated foci.Position 11646233 doesn't seem to be mutated. Here are the mutated foci.Position 11647483 doesn't seem to be mutated. Here are the mutated foci.Position 11649360 doesn't seem to be mutated. Here are the mutated foci.Position 11649650 doesn't seem to be mutated. Here are the mutated foci.Position 11662310 doesn't seem to be mutated. Here are the mutated foci.Position 11662778 doesn't seem to be mutated. Here are the mutated foci.Position 11675363 doesn't seem to be mutated. Here are the mutated foci.Position 11680262 doesn't seem to be mutated. Here are the mutated foci.Position 11682272 doesn't seem to be mutated. Here are the mutated foci.Position 11683232 doesn't seem to be mutated. Here are the mutated foci.Position 11686680 doesn't seem to be mutated. Here are the mutated foci.Position 11687469 doesn't seem to be mutated. Here are the mutated foci.Position 11689669 doesn't seem to be mutated. Here are the mutated foci.Position 11690175 doesn't seem to be mutated. Here are the mutated foci.Position 11697874 doesn't seem to be mutated. Here are the mutated foci.Position 11702093 doesn't seem to be mutated. Here are the mutated foci.Position 11707664 doesn't seem to be mutated. Here are the mutated foci.Position 11716187 doesn't seem to be mutated. Here are the mutated foci.Position 11716450 doesn't seem to be mutated. Here are the mutated foci.Position 11727158 doesn't seem to be mutated. Here are the mutated foci.Position 11738940 doesn't seem to be mutated. Here are the mutated foci.Position 11740425 doesn't seem to be mutated. Here are the mutated foci.Position 11740734 doesn't seem to be mutated. Here are the mutated foci.Position 11760386 doesn't seem to be mutated. Here are the mutated foci.Position 11760820 doesn't seem to be mutated. Here are the mutated foci.Position 11763126 doesn't seem to be mutated. Here are the mutated foci.Position 11767004 doesn't seem to be mutated. Here are the mutated foci.Position 11770804 doesn't seem to be mutated. Here are the mutated foci.Position 11776960 doesn't seem to be mutated. Here are the mutated foci.Position 11779097 doesn't seem to be mutated. Here are the mutated foci.Position 11784009 doesn't seem to be mutated. Here are the mutated foci.Position 11785256 doesn't seem to be mutated. Here are the mutated foci.Position 11803878 doesn't seem to be mutated. Here are the mutated foci.Position 11806591 doesn't seem to be mutated. Here are the mutated foci.Position 11807475 doesn't seem to be mutated. Here are the mutated foci.Position 11810100 doesn't seem to be mutated. Here are the mutated foci.Position 11810308 doesn't seem to be mutated. Here are the mutated foci.Position 11811365 doesn't seem to be mutated. Here are the mutated foci.Position 11824366 doesn't seem to be mutated. Here are the mutated foci.Position 11837049 doesn't seem to be mutated. Here are the mutated foci.Position 11841248 doesn't seem to be mutated. Here are the mutated foci.Position 11847918 doesn't seem to be mutated. Here are the mutated foci.Position 11849165 doesn't seem to be mutated. Here are the mutated foci.Position 11856594 doesn't seem to be mutated. Here are the mutated foci.Position 11857311 doesn't seem to be mutated. Here are the mutated foci.Position 11859751 doesn't seem to be mutated. Here are the mutated foci.Position 11867364 doesn't seem to be mutated. Here are the mutated foci.Position 11869836 doesn't seem to be mutated. Here are the mutated foci.Position 11887362 doesn't seem to be mutated. Here are the mutated foci.Position 11891037 doesn't seem to be mutated. Here are the mutated foci.Position 12710989 doesn't seem to be mutated. Here are the mutated foci.Position 12711120 doesn't seem to be mutated. Here are the mutated foci.Position 12721093 doesn't seem to be mutated. Here are the mutated foci.Position 12723119 doesn't seem to be mutated. Here are the mutated foci.Position 12723178 doesn't seem to be mutated. Here are the mutated foci.Position 25206824 doesn't seem to be mutated. Here are the mutated foci.Position 25208358 doesn't seem to be mutated. Here are the mutated foci.Position 25216478 doesn't seem to be mutated. Here are the mutated foci.Position 25218198 doesn't seem to be mutated. Here are the mutated foci.Position 25221597 doesn't seem to be mutated. Here are the mutated foci.Position 25221785 doesn't seem to be mutated. Here are the mutated foci.Position 25224832 doesn't seem to be mutated. Here are the mutated foci.Position 25225524 doesn't seem to be mutated. Here are the mutated foci.Position 25226853 doesn't seem to be mutated. Here are the mutated foci.Position 25227491 doesn't seem to be mutated. Here are the mutated foci.Position 25234553 doesn't seem to be mutated. Here are the mutated foci.Position 25239149 doesn't seem to be mutated. Here are the mutated foci.Position 25243719 doesn't seem to be mutated. Here are the mutated foci.Position 25247716 doesn't seem to be mutated. Here are the mutated foci.Position 25252293 doesn't seem to be mutated. Here are the mutated foci.Position 25254115 doesn't seem to be mutated. Here are the mutated foci.Position 111402336 doesn't seem to be mutated. Here are the mutated foci.Position 111407816 doesn't seem to be mutated. Here are the mutated foci.Position 111413326 doesn't seem to be mutated. Here are the mutated foci.Position 111414085 doesn't seem to be mutated. Here are the mutated foci.Position 111418702 doesn't seem to be mutated. Here are the mutated foci.Position 111418802 doesn't seem to be mutated. Here are the mutated foci.Position 111421947 doesn't seem to be mutated. Here are the mutated foci.Position 111425608 doesn't seem to be mutated. Here are the mutated foci.Position 111431143 doesn't seem to be mutated. Here are the mutated foci.Position 112417338 doesn't seem to be mutated. Here are the mutated foci.Position 112418285 doesn't seem to be mutated. Here are the mutated foci.Position 112419654 doesn't seem to be mutated. Here are the mutated foci.Position 112430940 doesn't seem to be mutated. Here are the mutated foci.Position 112432004 doesn't seem to be mutated. Here are the mutated foci.Position 112432021 doesn't seem to be mutated. Here are the mutated foci.Position 112434796 doesn't seem to be mutated. Here are the mutated foci.Position 112437332 doesn't seem to be mutated. Here are the mutated foci.Position 112441664 doesn't seem to be mutated. Here are the mutated foci.Position 112442669 doesn't seem to be mutated. Here are the mutated foci.Position 112446340 doesn't seem to be mutated. Here are the mutated foci.Position 112450394 doesn't seem to be mutated. Here are the mutated foci.Position 112450400 doesn't seem to be mutated. Here are the mutated foci.Position 112451989 doesn't seem to be mutated. Here are the mutated foci.Position 112454927 doesn't seem to be mutated. Here are the mutated foci.Position 112457674 doesn't seem to be mutated. Here are the mutated foci.Position 112463057 doesn't seem to be mutated. Here are the mutated foci.Position 112467489 doesn't seem to be mutated. Here are the mutated foci.Position 112473042 doesn't seem to be mutated. Here are the mutated foci.Position 112473958 doesn't seem to be mutated. Here are the mutated foci.Position 112474087 doesn't seem to be mutated. Here are the mutated foci.Position 112476082 doesn't seem to be mutated. Here are the mutated foci.Position 112487653 doesn't seem to be mutated. Here are the mutated foci.Position 112488466 doesn't seem to be mutated. Here are the mutated foci.Position 112499306 doesn't seem to be mutated. Here are the mutated foci.Position 112505522 doesn't seem to be mutated. Here are the mutated foci.Position 112508750 doesn't seem to be mutated. Here are the mutated foci.Position 132625213 doesn't seem to be mutated. Here are the mutated foci.Position 132626348 doesn't seem to be mutated. Here are the mutated foci.Position 132628598 doesn't seem to be mutated. Here are the mutated foci.Position 132628880 doesn't seem to be mutated. Here are the mutated foci.Position 132633522 doesn't seem to be mutated. Here are the mutated foci.Position 132634605 doesn't seem to be mutated. Here are the mutated foci.Position 132635708 doesn't seem to be mutated. Here are the mutated foci.Position 132636108 doesn't seem to be mutated. Here are the mutated foci.Position 132638256 doesn't seem to be mutated. Here are the mutated foci.Position 132638464 doesn't seem to be mutated. Here are the mutated foci.Position 132642072 doesn't seem to be mutated. Here are the mutated foci.Position 132644199 doesn't seem to be mutated. Here are the mutated foci.Position 132645536 doesn't seem to be mutated. Here are the mutated foci.Position 132649103 doesn't seem to be mutated. Here are the mutated foci.Position 132649322 doesn't seem to be mutated. Here are the mutated foci.Position 132650150 doesn't seem to be mutated. Here are the mutated foci.Position 132650571 doesn't seem to be mutated. Here are the mutated foci.Position 132652402 doesn't seem to be mutated. Here are the mutated foci.Position 132656551 doesn't seem to be mutated. Here are the mutated foci.Position 132656707 doesn't seem to be mutated. Here are the mutated foci.Position 132661779 doesn't seem to be mutated. Here are the mutated foci.Position 132662694 doesn't seem to be mutated. Here are the mutated foci.Position 132663142 doesn't seem to be mutated. Here are the mutated foci.Position 132666418 doesn't seem to be mutated. Here are the mutated foci.Position 132670161 doesn't seem to be mutated. Here are the mutated foci.Position 132670411 doesn't seem to be mutated. Here are the mutated foci.Position 132672410 doesn't seem to be mutated. Here are the mutated foci.Position 132673375 doesn't seem to be mutated. Here are the mutated foci.Position 132674382 doesn't seem to be mutated. Here are the mutated foci.Position 132674611 doesn't seem to be mutated. Here are the mutated foci.Position 132676565 doesn't seem to be mutated. Here are the mutated foci.Position 132677787 doesn't seem to be mutated. Here are the mutated foci.Position 20186256 doesn't seem to be mutated. Here are the mutated foci.Position 20191822 doesn't seem to be mutated. Here are the mutated foci.Position 20193086 doesn't seem to be mutated. Here are the mutated foci.Position 32319216 doesn't seem to be mutated. Here are the mutated foci.Position 32320220 doesn't seem to be mutated. Here are the mutated foci.Position 32322674 doesn't seem to be mutated. Here are the mutated foci.Position 32322943 doesn't seem to be mutated. Here are the mutated foci.Position 32333977 doesn't seem to be mutated. Here are the mutated foci.Position 32335505 doesn't seem to be mutated. Here are the mutated foci.Position 32337288 doesn't seem to be mutated. Here are the mutated foci.Position 32341305 doesn't seem to be mutated. Here are the mutated foci.Position 32345115 doesn't seem to be mutated. Here are the mutated foci.Position 32348303 doesn't seem to be mutated. Here are the mutated foci.Position 32349137 doesn't seem to be mutated. Here are the mutated foci.Position 32351825 doesn't seem to be mutated. Here are the mutated foci.Position 32353728 doesn't seem to be mutated. Here are the mutated foci.Position 32354663 doesn't seem to be mutated. Here are the mutated foci.Position 32362154 doesn't seem to be mutated. Here are the mutated foci.Position 32363886 doesn't seem to be mutated. Here are the mutated foci.Position 32364304 doesn't seem to be mutated. Here are the mutated foci.Position 32366451 doesn't seem to be mutated. Here are the mutated foci.Position 32369526 doesn't seem to be mutated. Here are the mutated foci.Position 32372821 doesn't seem to be mutated. Here are the mutated foci.Position 32377586 doesn't seem to be mutated. Here are the mutated foci.Position 32391021 doesn't seem to be mutated. Here are the mutated foci.Position 32394754 doesn't seem to be mutated. Here are the mutated foci.Position 32398040 doesn't seem to be mutated. Here are the mutated foci.Position 48307434 doesn't seem to be mutated. Here are the mutated foci.Position 48309313 doesn't seem to be mutated. Here are the mutated foci.Position 48314674 doesn't seem to be mutated. Here are the mutated foci.Position 48317763 doesn't seem to be mutated. Here are the mutated foci.Position 48323777 doesn't seem to be mutated. Here are the mutated foci.Position 48329034 doesn't seem to be mutated. Here are the mutated foci.Position 48333083 doesn't seem to be mutated. Here are the mutated foci.Position 48337976 doesn't seem to be mutated. Here are the mutated foci.Position 48340479 doesn't seem to be mutated. Here are the mutated foci.Position 48347361 doesn't seem to be mutated. Here are the mutated foci.Position 48347362 doesn't seem to be mutated. Here are the mutated foci.Position 48348680 doesn't seem to be mutated. Here are the mutated foci.Position 48364801 doesn't seem to be mutated. Here are the mutated foci.Position 48380147 doesn't seem to be mutated. Here are the mutated foci.Position 48383486 doesn't seem to be mutated. Here are the mutated foci.Position 48383655 doesn't seem to be mutated. Here are the mutated foci.Position 48383948 doesn't seem to be mutated. Here are the mutated foci.Position 48390390 doesn't seem to be mutated. Here are the mutated foci.Position 48392214 doesn't seem to be mutated. Here are the mutated foci.Position 48392621 doesn't seem to be mutated. Here are the mutated foci.Position 48415342 doesn't seem to be mutated. Here are the mutated foci.Position 48417760 doesn't seem to be mutated. Here are the mutated foci.Position 48430338 doesn't seem to be mutated. Here are the mutated foci.Position 48431958 doesn't seem to be mutated. Here are the mutated foci.Position 48437915 doesn't seem to be mutated. Here are the mutated foci.Position 48441201 doesn't seem to be mutated. Here are the mutated foci.Position 48446496 doesn't seem to be mutated. Here are the mutated foci.Position 48457509 doesn't seem to be mutated. Here are the mutated foci.Position 48465894 doesn't seem to be mutated. Here are the mutated foci.Position 48478944 doesn't seem to be mutated. Here are the mutated foci.Position 48544311 doesn't seem to be mutated. Here are the mutated foci.Position 48552618 doesn't seem to be mutated. Here are the mutated foci.Position 48555197 doesn't seem to be mutated. Here are the mutated foci.Position 48558174 doesn't seem to be mutated. Here are the mutated foci.Position 48558661 doesn't seem to be mutated. Here are the mutated foci.Position 48564129 doesn't seem to be mutated. Here are the mutated foci.Position 48583374 doesn't seem to be mutated. Here are the mutated foci.Position 48584069 doesn't seem to be mutated. Here are the mutated foci.Position 48584968 doesn't seem to be mutated. Here are the mutated foci.Position 48600840 doesn't seem to be mutated. Here are the mutated foci.Position 77892807 doesn't seem to be mutated. Here are the mutated foci.Position 77893022 doesn't seem to be mutated. Here are the mutated foci.Position 77894930 doesn't seem to be mutated. Here are the mutated foci.Position 77901714 doesn't seem to be mutated. Here are the mutated foci.Position 77903206 doesn't seem to be mutated. Here are the mutated foci.Position 77904710 doesn't seem to be mutated. Here are the mutated foci.Position 77908333 doesn't seem to be mutated. Here are the mutated foci.Position 77910397 doesn't seem to be mutated. Here are the mutated foci.Position 77915162 doesn't seem to be mutated. Here are the mutated foci.Position 77915208 doesn't seem to be mutated. Here are the mutated foci.Position 77921494 doesn't seem to be mutated. Here are the mutated foci.Position 77922912 doesn't seem to be mutated. Here are the mutated foci.Position 77924379 doesn't seem to be mutated. Here are the mutated foci.Position 102844346 doesn't seem to be mutated. Here are the mutated foci.Position 102857414 doesn't seem to be mutated. Here are the mutated foci.Position 102859607 doesn't seem to be mutated. Here are the mutated foci.Position 102870395 doesn't seem to be mutated. Here are the mutated foci.Position 102873081 doesn't seem to be mutated. Here are the mutated foci.Position 23117064 doesn't seem to be mutated. Here are the mutated foci.Position 23120374 doesn't seem to be mutated. Here are the mutated foci.Position 36520860 doesn't seem to be mutated. Here are the mutated foci.Position 36523348 doesn't seem to be mutated. Here are the mutated foci.Position 45140032 doesn't seem to be mutated. Here are the mutated foci.Position 45143764 doesn't seem to be mutated. Here are the mutated foci.Position 45148112 doesn't seem to be mutated. Here are the mutated foci.Position 45150746 doesn't seem to be mutated. Here are the mutated foci.Position 45151246 doesn't seem to be mutated. Here are the mutated foci.Position 45151409 doesn't seem to be mutated. Here are the mutated foci.Position 45159764 doesn't seem to be mutated. Here are the mutated foci.Position 45166734 doesn't seem to be mutated. Here are the mutated foci.Position 45168106 doesn't seem to be mutated. Here are the mutated foci.Position 45171111 doesn't seem to be mutated. Here are the mutated foci.Position 45174400 doesn't seem to be mutated. Here are the mutated foci.Position 45175238 doesn't seem to be mutated. Here are the mutated foci.Position 45180414 doesn't seem to be mutated. Here are the mutated foci.Position 45181071 doesn't seem to be mutated. Here are the mutated foci.Position 45184071 doesn't seem to be mutated. Here are the mutated foci.Position 45193073 doesn't seem to be mutated. Here are the mutated foci.Position 45193188 doesn't seem to be mutated. Here are the mutated foci.Position 45199870 doesn't seem to be mutated. Here are the mutated foci.Position 45200282 doesn't seem to be mutated. Here are the mutated foci.Position 45202430 doesn't seem to be mutated. Here are the mutated foci.Position 50123514 doesn't seem to be mutated. Here are the mutated foci.Position 50124197 doesn't seem to be mutated. Here are the mutated foci.Position 50131168 doesn't seem to be mutated. Here are the mutated foci.Position 50133496 doesn't seem to be mutated. Here are the mutated foci.Position 50135614 doesn't seem to be mutated. Here are the mutated foci.Position 50142780 doesn't seem to be mutated. Here are the mutated foci.Position 50151831 doesn't seem to be mutated. Here are the mutated foci.Position 50152620 doesn't seem to be mutated. Here are the mutated foci.Position 50153760 doesn't seem to be mutated. Here are the mutated foci.Position 50154521 doesn't seem to be mutated. Here are the mutated foci.Position 50156727 doesn't seem to be mutated. Here are the mutated foci.Position 50160078 doesn't seem to be mutated. Here are the mutated foci.Position 50164126 doesn't seem to be mutated. Here are the mutated foci.Position 50164472 doesn't seem to be mutated. Here are the mutated foci.Position 50165413 doesn't seem to be mutated. Here are the mutated foci.Position 50179879 doesn't seem to be mutated. Here are the mutated foci.Position 50197889 doesn't seem to be mutated. Here are the mutated foci.Position 50198079 doesn't seem to be mutated. Here are the mutated foci.Position 50199008 doesn't seem to be mutated. Here are the mutated foci.Position 50201248 doesn't seem to be mutated. Here are the mutated foci.Position 50203712 doesn't seem to be mutated. Here are the mutated foci.Position 50204632 doesn't seem to be mutated. Here are the mutated foci.Position 50208656 doesn't seem to be mutated. Here are the mutated foci.Position 50210772 doesn't seem to be mutated. Here are the mutated foci.Position 50213680 doesn't seem to be mutated. Here are the mutated foci.Position 50216690 doesn't seem to be mutated. Here are the mutated foci.Position 50217677 doesn't seem to be mutated. Here are the mutated foci.Position 50219894 doesn't seem to be mutated. Here are the mutated foci.Position 50221385 doesn't seem to be mutated. Here are the mutated foci.Position 50226125 doesn't seem to be mutated. Here are the mutated foci.Position 65077834 doesn't seem to be mutated. Here are the mutated foci.Position 65079293 doesn't seem to be mutated. Here are the mutated foci.Position 65089664 doesn't seem to be mutated. Here are the mutated foci.Position 65094730 doesn't seem to be mutated. Here are the mutated foci.Position 65095090 doesn't seem to be mutated. Here are the mutated foci.Position 65106459 doesn't seem to be mutated. Here are the mutated foci.Position 94376524 doesn't seem to be mutated. Here are the mutated foci.Position 94377240 doesn't seem to be mutated. Here are the mutated foci.Position 94382059 doesn't seem to be mutated. Here are the mutated foci.Position 94383135 doesn't seem to be mutated. Here are the mutated foci.Position 94386448 doesn't seem to be mutated. Here are the mutated foci.Position 94387017 doesn't seem to be mutated. Here are the mutated foci.Position 94392140 doesn't seem to be mutated. Here are the mutated foci.Position 94395115 doesn't seem to be mutated. Here are the mutated foci.Position 95085024 doesn't seem to be mutated. Here are the mutated foci.Position 95092886 doesn't seem to be mutated. Here are the mutated foci.Position 95093892 doesn't seem to be mutated. Here are the mutated foci.Position 95097959 doesn't seem to be mutated. Here are the mutated foci.Position 95109421 doesn't seem to be mutated. Here are the mutated foci.Position 95110163 doesn't seem to be mutated. Here are the mutated foci.Position 95116153 doesn't seem to be mutated. Here are the mutated foci.Position 95122406 doesn't seem to be mutated. Here are the mutated foci.Position 95124920 doesn't seem to be mutated. Here are the mutated foci.Position 95127528 doesn't seem to be mutated. Here are the mutated foci.Position 95129095 doesn't seem to be mutated. Here are the mutated foci.Position 95129449 doesn't seem to be mutated. Here are the mutated foci.Position 95132691 doesn't seem to be mutated. Here are the mutated foci.Position 95134007 doesn't seem to be mutated. Here are the mutated foci.Position 95145676 doesn't seem to be mutated. Here are the mutated foci.Position 95153430 doesn't seem to be mutated. Here are the mutated foci.Position 95155164 doesn't seem to be mutated. Here are the mutated foci.Position 95160731 doesn't seem to be mutated. Here are the mutated foci.Position 103698433 doesn't seem to be mutated. Here are the mutated foci.Position 104766624 doesn't seem to be mutated. Here are the mutated foci.Position 104768453 doesn't seem to be mutated. Here are the mutated foci.Position 104771840 doesn't seem to be mutated. Here are the mutated foci.Position 104789894 doesn't seem to be mutated. Here are the mutated foci.Position 32713287 doesn't seem to be mutated. Here are the mutated foci.Position 32720412 doesn't seem to be mutated. Here are the mutated foci.Position 32730931 doesn't seem to be mutated. Here are the mutated foci.Position 32733306 doesn't seem to be mutated. Here are the mutated foci.Position 32734594 doesn't seem to be mutated. Here are the mutated foci.Position 32735965 doesn't seem to be mutated. Here are the mutated foci.Position 32736922 doesn't seem to be mutated. Here are the mutated foci.Position 32737139 doesn't seem to be mutated. Here are the mutated foci.Position 32747753 doesn't seem to be mutated. Here are the mutated foci.Position 32747984 doesn't seem to be mutated. Here are the mutated foci.Position 32749774 doesn't seem to be mutated. Here are the mutated foci.Position 34338715 doesn't seem to be mutated. Here are the mutated foci.Position 34338935 doesn't seem to be mutated. Here are the mutated foci.Position 38250860 doesn't seem to be mutated. Here are the mutated foci.Position 38252867 doesn't seem to be mutated. Here are the mutated foci.Position 38253325 doesn't seem to be mutated. Here are the mutated foci.Position 38255609 doesn't seem to be mutated. Here are the mutated foci.Position 38256822 doesn't seem to be mutated. Here are the mutated foci.Position 38260506 doesn't seem to be mutated. Here are the mutated foci.Position 38261660 doesn't seem to be mutated. Here are the mutated foci.Position 38267431 doesn't seem to be mutated. Here are the mutated foci.Position 38270912 doesn't seem to be mutated. Here are the mutated foci.Position 38276738 doesn't seem to be mutated. Here are the mutated foci.Position 38281753 doesn't seem to be mutated. Here are the mutated foci.Position 38295602 doesn't seem to be mutated. Here are the mutated foci.Position 38297480 doesn't seem to be mutated. Here are the mutated foci.Position 38297883 doesn't seem to be mutated. Here are the mutated foci.Position 38316344 doesn't seem to be mutated. Here are the mutated foci.Position 38319541 doesn't seem to be mutated. Here are the mutated foci.Position 38331845 doesn't seem to be mutated. Here are the mutated foci.Position 38333734 doesn't seem to be mutated. Here are the mutated foci.Position 38346725 doesn't seem to be mutated. Here are the mutated foci.Position 38347284 doesn't seem to be mutated. Here are the mutated foci.Position 38348151 doesn't seem to be mutated. Here are the mutated foci.Position 38351039 doesn't seem to be mutated. Here are the mutated foci.Position 40156798 doesn't seem to be mutated. Here are the mutated foci.Position 40160703 doesn't seem to be mutated. Here are the mutated foci.Position 40161221 doesn't seem to be mutated. Here are the mutated foci.Position 40163616 doesn't seem to be mutated. Here are the mutated foci.Position 40165739 doesn't seem to be mutated. Here are the mutated foci.Position 40175986 doesn't seem to be mutated. Here are the mutated foci.Position 40176944 doesn't seem to be mutated. Here are the mutated foci.Position 40177607 doesn't seem to be mutated. Here are the mutated foci.Position 40179975 doesn't seem to be mutated. Here are the mutated foci.Position 40180719 doesn't seem to be mutated. Here are the mutated foci.Position 40191149 doesn't seem to be mutated. Here are the mutated foci.Position 40192149 doesn't seem to be mutated. Here are the mutated foci.Position 40194986 doesn't seem to be mutated. Here are the mutated foci.Position 40199115 doesn't seem to be mutated. Here are the mutated foci.Position 40212511 doesn't seem to be mutated. Here are the mutated foci.Position 40214009 doesn't seem to be mutated. Here are the mutated foci.Position 40214846 doesn't seem to be mutated. Here are the mutated foci.Position 40217522 doesn't seem to be mutated. Here are the mutated foci.Position 40219141 doesn't seem to be mutated. Here are the mutated foci.Position 40700866 doesn't seem to be mutated. Here are the mutated foci.Position 40701419 doesn't seem to be mutated. Here are the mutated foci.Position 40701479 doesn't seem to be mutated. Here are the mutated foci.Position 40701538 doesn't seem to be mutated. Here are the mutated foci.Position 40705005 doesn't seem to be mutated. Here are the mutated foci.Position 40705636 doesn't seem to be mutated. Here are the mutated foci.Position 40708615 doesn't seem to be mutated. Here are the mutated foci.Position 40723327 doesn't seem to be mutated. Here are the mutated foci.Position 40729195 doesn't seem to be mutated. Here are the mutated foci.Position 40731771 doesn't seem to be mutated. Here are the mutated foci.Position 40731859 doesn't seem to be mutated. Here are the mutated foci.Position 66385529 doesn't seem to be mutated. Here are the mutated foci.Position 66392095 doesn't seem to be mutated. Here are the mutated foci.Position 66399455 doesn't seem to be mutated. Here are the mutated foci.Position 66406097 doesn't seem to be mutated. Here are the mutated foci.Position 66409929 doesn't seem to be mutated. Here are the mutated foci.Position 66427977 doesn't seem to be mutated. Here are the mutated foci.Position 66435575 doesn't seem to be mutated. Here are the mutated foci.Position 66442598 doesn't seem to be mutated. Here are the mutated foci.Position 66444621 doesn't seem to be mutated. Here are the mutated foci.Position 66446436 doesn't seem to be mutated. Here are the mutated foci.Position 66449667 doesn't seem to be mutated. Here are the mutated foci.Position 66449857 doesn't seem to be mutated. Here are the mutated foci.Position 66466202 doesn't seem to be mutated. Here are the mutated foci.Position 66473591 doesn't seem to be mutated. Here are the mutated foci.Position 66481297 doesn't seem to be mutated. Here are the mutated foci.Position 80153604 doesn't seem to be mutated. Here are the mutated foci.Position 80154512 doesn't seem to be mutated. Here are the mutated foci.Position 80155426 doesn't seem to be mutated. Here are the mutated foci.Position 80155578 doesn't seem to be mutated. Here are the mutated foci.Position 80157135 doesn't seem to be mutated. Here are the mutated foci.Position 80159825 doesn't seem to be mutated. Here are the mutated foci.Position 80161541 doesn't seem to be mutated. Here are the mutated foci.Position 80167708 doesn't seem to be mutated. Here are the mutated foci.Position 80169696 doesn't seem to be mutated. Here are the mutated foci.Position 80178326 doesn't seem to be mutated. Here are the mutated foci.Position 80181634 doesn't seem to be mutated. Here are the mutated foci.Position 80184892 doesn't seem to be mutated. Here are the mutated foci.Position 80186110 doesn't seem to be mutated. Here are the mutated foci.Position 80191942 doesn't seem to be mutated. Here are the mutated foci.Position 89240817 doesn't seem to be mutated. Here are the mutated foci.Position 89251504 doesn't seem to be mutated. Here are the mutated foci.Position 89255377 doesn't seem to be mutated. Here are the mutated foci.Position 89257856 doesn't seem to be mutated. Here are the mutated foci.Position 89258807 doesn't seem to be mutated. Here are the mutated foci.Position 89268171 doesn't seem to be mutated. Here are the mutated foci.Position 89276186 doesn't seem to be mutated. Here are the mutated foci.Position 89280354 doesn't seem to be mutated. Here are the mutated foci.Position 89280923 doesn't seem to be mutated. Here are the mutated foci.Position 89285821 doesn't seem to be mutated. Here are the mutated foci.Position 89287682 doesn't seem to be mutated. Here are the mutated foci.Position 89288737 doesn't seem to be mutated. Here are the mutated foci.Position 89289039 doesn't seem to be mutated. Here are the mutated foci.Position 89293386 doesn't seem to be mutated. Here are the mutated foci.Position 89294440 doesn't seem to be mutated. Here are the mutated foci.Position 89297877 doesn't seem to be mutated. Here are the mutated foci.Position 89308399 doesn't seem to be mutated. Here are the mutated foci.Position 89312630 doesn't seem to be mutated. Here are the mutated foci.Position 90714790 doesn't seem to be mutated. Here are the mutated foci.Position 90718967 doesn't seem to be mutated. Here are the mutated foci.Position 90726590 doesn't seem to be mutated. Here are the mutated foci.Position 90727250 doesn't seem to be mutated. Here are the mutated foci.Position 90734885 doesn't seem to be mutated. Here are the mutated foci.Position 90736154 doesn't seem to be mutated. Here are the mutated foci.Position 90738442 doesn't seem to be mutated. Here are the mutated foci.Position 90747090 doesn't seem to be mutated. Here are the mutated foci.Position 90748351 doesn't seem to be mutated. Here are the mutated foci.Position 90759709 doesn't seem to be mutated. Here are the mutated foci.Position 90763139 doesn't seem to be mutated. Here are the mutated foci.Position 90765400 doesn't seem to be mutated. Here are the mutated foci.Position 90771795 doesn't seem to be mutated. Here are the mutated foci.Position 90773294 doesn't seem to be mutated. Here are the mutated foci.Position 90774097 doesn't seem to be mutated. Here are the mutated foci.Position 90775316 doesn't seem to be mutated. Here are the mutated foci.Position 90779395 doesn't seem to be mutated. Here are the mutated foci.Position 90780187 doesn't seem to be mutated. Here are the mutated foci.Position 90783365 doesn't seem to be mutated. Here are the mutated foci.Position 90784999 doesn't seem to be mutated. Here are the mutated foci.Position 90785748 doesn't seem to be mutated. Here are the mutated foci.Position 90787184 doesn't seem to be mutated. Here are the mutated foci.Position 90797189 doesn't seem to be mutated. Here are the mutated foci.Position 90797324 doesn't seem to be mutated. Here are the mutated foci.Position 90801039 doesn't seem to be mutated. Here are the mutated foci.Position 90803578 doesn't seem to be mutated. Here are the mutated foci.Position 90805085 doesn't seem to be mutated. Here are the mutated foci.Position 90807014 doesn't seem to be mutated. Here are the mutated foci.Position 90811520 doesn't seem to be mutated. Here are the mutated foci.Position 90811653 doesn't seem to be mutated. Here are the mutated foci.Position 90814449 doesn't seem to be mutated. Here are the mutated foci.Position 90814807 doesn't seem to be mutated. Here are the mutated foci.Position 90815703 doesn't seem to be mutated. Here are the mutated foci.Position 90817615 doesn't seem to be mutated. Here are the mutated foci.Position 90817796 doesn't seem to be mutated. Here are the mutated foci.Position 90818428 doesn't seem to be mutated. Here are the mutated foci.Position 90820098 doesn't seem to be mutated. Here are the mutated foci.Position 2039088 doesn't seem to be mutated. Here are the mutated foci.Position 2039217 doesn't seem to be mutated. Here are the mutated foci.Position 2040507 doesn't seem to be mutated. Here are the mutated foci.Position 2042188 doesn't seem to be mutated. Here are the mutated foci.Position 2050979 doesn't seem to be mutated. Here are the mutated foci.Position 2051791 doesn't seem to be mutated. Here are the mutated foci.Position 2058626 doesn't seem to be mutated. Here are the mutated foci.Position 2060160 doesn't seem to be mutated. Here are the mutated foci.Position 2062689 doesn't seem to be mutated. Here are the mutated foci.Position 2068047 doesn't seem to be mutated. Here are the mutated foci.Position 2069892 doesn't seem to be mutated. Here are the mutated foci.Position 2070793 doesn't seem to be mutated. Here are the mutated foci.Position 2073131 doesn't seem to be mutated. Here are the mutated foci.Position 2075293 doesn't seem to be mutated. Here are the mutated foci.Position 2076182 doesn't seem to be mutated. Here are the mutated foci.Position 2076800 doesn't seem to be mutated. Here are the mutated foci.Position 2081007 doesn't seem to be mutated. Here are the mutated foci.Position 2086705 doesn't seem to be mutated. Here are the mutated foci.Position 2088300 doesn't seem to be mutated. Here are the mutated foci.Position 3584977 doesn't seem to be mutated. Here are the mutated foci.Position 3597156 doesn't seem to be mutated. Here are the mutated foci.Position 3600188 doesn't seem to be mutated. Here are the mutated foci.Position 3600690 doesn't seem to be mutated. Here are the mutated foci.Position 3603865 doesn't seem to be mutated. Here are the mutated foci.Position 3606252 doesn't seem to be mutated. Here are the mutated foci.Position 3610699 doesn't seem to be mutated. Here are the mutated foci.Position 3729577 doesn't seem to be mutated. Here are the mutated foci.Position 3730369 doesn't seem to be mutated. Here are the mutated foci.Position 3735589 doesn't seem to be mutated. Here are the mutated foci.Position 3739075 doesn't seem to be mutated. Here are the mutated foci.Position 3742067 doesn't seem to be mutated. Here are the mutated foci.Position 3750849 doesn't seem to be mutated. Here are the mutated foci.Position 3752851 doesn't seem to be mutated. Here are the mutated foci.Position 3757631 doesn't seem to be mutated. Here are the mutated foci.Position 3761596 doesn't seem to be mutated. Here are the mutated foci.Position 3762935 doesn't seem to be mutated. Here are the mutated foci.Position 3773978 doesn't seem to be mutated. Here are the mutated foci.Position 3774205 doesn't seem to be mutated. Here are the mutated foci.Position 3776358 doesn't seem to be mutated. Here are the mutated foci.Position 3777313 doesn't seem to be mutated. Here are the mutated foci.Position 3777877 doesn't seem to be mutated. Here are the mutated foci.Position 3780317 doesn't seem to be mutated. Here are the mutated foci.Position 3783108 doesn't seem to be mutated. Here are the mutated foci.Position 3783812 doesn't seem to be mutated. Here are the mutated foci.Position 3789040 doesn't seem to be mutated. Here are the mutated foci.Position 3795470 doesn't seem to be mutated. Here are the mutated foci.Position 3803226 doesn't seem to be mutated. Here are the mutated foci.Position 3803917 doesn't seem to be mutated. Here are the mutated foci.Position 3806390 doesn't seem to be mutated. Here are the mutated foci.Position 3807859 doesn't seem to be mutated. Here are the mutated foci.Position 3810799 doesn't seem to be mutated. Here are the mutated foci.Position 3812225 doesn't seem to be mutated. Here are the mutated foci.Position 3815722 doesn't seem to be mutated. Here are the mutated foci.Position 3825591 doesn't seem to be mutated. Here are the mutated foci.Position 3826457 doesn't seem to be mutated. Here are the mutated foci.Position 3829981 doesn't seem to be mutated. Here are the mutated foci.Position 3833421 doesn't seem to be mutated. Here are the mutated foci.Position 3835119 doesn't seem to be mutated. Here are the mutated foci.Position 3841363 doesn't seem to be mutated. Here are the mutated foci.Position 3849711 doesn't seem to be mutated. Here are the mutated foci.Position 3854339 doesn't seem to be mutated. Here are the mutated foci.Position 3865946 doesn't seem to be mutated. Here are the mutated foci.Position 3882728 doesn't seem to be mutated. Here are the mutated foci.Position 13915343 doesn't seem to be mutated. Here are the mutated foci.Position 13918961 doesn't seem to be mutated. Here are the mutated foci.Position 13923492 doesn't seem to be mutated. Here are the mutated foci.Position 13932687 doesn't seem to be mutated. Here are the mutated foci.Position 13937510 doesn't seem to be mutated. Here are the mutated foci.Position 13947661 doesn't seem to be mutated. Here are the mutated foci.Position 13948560 doesn't seem to be mutated. Here are the mutated foci.Position 13950261 doesn't seem to be mutated. Here are the mutated foci.Position 13950523 doesn't seem to be mutated. Here are the mutated foci.Position 13952667 doesn't seem to be mutated. Here are the mutated foci.Position 13956959 doesn't seem to be mutated. Here are the mutated foci.Position 23605073 doesn't seem to be mutated. Here are the mutated foci.Position 23608211 doesn't seem to be mutated. Here are the mutated foci.Position 23613715 doesn't seem to be mutated. Here are the mutated foci.Position 23616291 doesn't seem to be mutated. Here are the mutated foci.Position 23621309 doesn't seem to be mutated. Here are the mutated foci.Position 23624558 doesn't seem to be mutated. Here are the mutated foci.Position 23631211 doesn't seem to be mutated. Here are the mutated foci.Position 23632759 doesn't seem to be mutated. Here are the mutated foci.Position 23639732 doesn't seem to be mutated. Here are the mutated foci.Position 50741033 doesn't seem to be mutated. Here are the mutated foci.Position 50746643 doesn't seem to be mutated. Here are the mutated foci.Position 50761378 doesn't seem to be mutated. Here are the mutated foci.Position 50775549 doesn't seem to be mutated. Here are the mutated foci.Position 50783684 doesn't seem to be mutated. Here are the mutated foci.Position 50787902 doesn't seem to be mutated. Here are the mutated foci.Position 50792838 doesn't seem to be mutated. Here are the mutated foci.Position 50794294 doesn't seem to be mutated. Here are the mutated foci.Position 50795000 doesn't seem to be mutated. Here are the mutated foci.Position 50798222 doesn't seem to be mutated. Here are the mutated foci.Position 68738441 doesn't seem to be mutated. Here are the mutated foci.Position 68749751 doesn't seem to be mutated. Here are the mutated foci.Position 68751339 doesn't seem to be mutated. Here are the mutated foci.Position 68756493 doesn't seem to be mutated. Here are the mutated foci.Position 68763825 doesn't seem to be mutated. Here are the mutated foci.Position 68765226 doesn't seem to be mutated. Here are the mutated foci.Position 68765428 doesn't seem to be mutated. Here are the mutated foci.Position 68765863 doesn't seem to be mutated. Here are the mutated foci.Position 68766645 doesn't seem to be mutated. Here are the mutated foci.Position 68768951 doesn't seem to be mutated. Here are the mutated foci.Position 68771581 doesn't seem to be mutated. Here are the mutated foci.Position 68772559 doesn't seem to be mutated. Here are the mutated foci.Position 68777876 doesn't seem to be mutated. Here are the mutated foci.Position 68780715 doesn't seem to be mutated. Here are the mutated foci.Position 68787346 doesn't seem to be mutated. Here are the mutated foci.Position 68788054 doesn't seem to be mutated. Here are the mutated foci.Position 68789316 doesn't seem to be mutated. Here are the mutated foci.Position 68790274 doesn't seem to be mutated. Here are the mutated foci.Position 68803038 doesn't seem to be mutated. Here are the mutated foci.Position 68810488 doesn't seem to be mutated. Here are the mutated foci.Position 68813961 doesn't seem to be mutated. Here are the mutated foci.Position 68816210 doesn't seem to be mutated. Here are the mutated foci.Position 68818320 doesn't seem to be mutated. Here are the mutated foci.Position 68820859 doesn't seem to be mutated. Here are the mutated foci.Position 68827518 doesn't seem to be mutated. Here are the mutated foci.Position 68828480 doesn't seem to be mutated. Here are the mutated foci.Position 68830004 doesn't seem to be mutated. Here are the mutated foci.Position 89745792 doesn't seem to be mutated. Here are the mutated foci.Position 89750484 doesn't seem to be mutated. Here are the mutated foci.Position 89754773 doesn't seem to be mutated. Here are the mutated foci.Position 89756843 doesn't seem to be mutated. Here are the mutated foci.Position 89757992 doesn't seem to be mutated. Here are the mutated foci.Position 89769939 doesn't seem to be mutated. Here are the mutated foci.Position 89770392 doesn't seem to be mutated. Here are the mutated foci.Position 89774931 doesn't seem to be mutated. Here are the mutated foci.Position 89776986 doesn't seem to be mutated. Here are the mutated foci.Position 89777477 doesn't seem to be mutated. Here are the mutated foci.Position 89779140 doesn't seem to be mutated. Here are the mutated foci.Position 89787706 doesn't seem to be mutated. Here are the mutated foci.Position 89797895 doesn't seem to be mutated. Here are the mutated foci.Position 89799969 doesn't seem to be mutated. Here are the mutated foci.Position 89804815 doesn't seem to be mutated. Here are the mutated foci.Position 89805025 doesn't seem to be mutated. Here are the mutated foci.Position 89808739 doesn't seem to be mutated. Here are the mutated foci.Position 89814383 doesn't seem to be mutated. Here are the mutated foci.Position 7666054 doesn't seem to be mutated. Here are the mutated foci.Position 7666069 doesn't seem to be mutated. Here are the mutated foci.Position 7673803 doesn't seem to be mutated. Here are the mutated foci.Position 7675057 doesn't seem to be mutated. Here are the mutated foci.Position 7677348 doesn't seem to be mutated. Here are the mutated foci.Position 7678732 doesn't seem to be mutated. Here are the mutated foci.Position 7682355 doesn't seem to be mutated. Here are the mutated foci.Position 7696639 doesn't seem to be mutated. Here are the mutated foci.Position 7702593 doesn't seem to be mutated. Here are the mutated foci.Position 7703096 doesn't seem to be mutated. Here are the mutated foci.Position 17214900 doesn't seem to be mutated. Here are the mutated foci.Position 17215194 doesn't seem to be mutated. Here are the mutated foci.Position 17216415 doesn't seem to be mutated. Here are the mutated foci.Position 17216439 doesn't seem to be mutated. Here are the mutated foci.Position 17217815 doesn't seem to be mutated. Here are the mutated foci.Position 17218332 doesn't seem to be mutated. Here are the mutated foci.Position 17222702 doesn't seem to be mutated. Here are the mutated foci.Position 17224077 doesn't seem to be mutated. Here are the mutated foci.Position 17226368 doesn't seem to be mutated. Here are the mutated foci.Position 17228227 doesn't seem to be mutated. Here are the mutated foci.Position 17239005 doesn't seem to be mutated. Here are the mutated foci.Position 31091590 doesn't seem to be mutated. Here are the mutated foci.Position 31092342 doesn't seem to be mutated. Here are the mutated foci.Position 31096956 doesn't seem to be mutated. Here are the mutated foci.Position 31105549 doesn't seem to be mutated. Here are the mutated foci.Position 31109346 doesn't seem to be mutated. Here are the mutated foci.Position 31109819 doesn't seem to be mutated. Here are the mutated foci.Position 31123673 doesn't seem to be mutated. Here are the mutated foci.Position 31126024 doesn't seem to be mutated. Here are the mutated foci.Position 31126067 doesn't seem to be mutated. Here are the mutated foci.Position 31127561 doesn't seem to be mutated. Here are the mutated foci.Position 31135364 doesn't seem to be mutated. Here are the mutated foci.Position 31138272 doesn't seem to be mutated. Here are the mutated foci.Position 31153568 doesn't seem to be mutated. Here are the mutated foci.Position 31157048 doesn't seem to be mutated. Here are the mutated foci.Position 31162192 doesn't seem to be mutated. Here are the mutated foci.Position 31168024 doesn't seem to be mutated. Here are the mutated foci.Position 31192431 doesn't seem to be mutated. Here are the mutated foci.Position 31204842 doesn't seem to be mutated. Here are the mutated foci.Position 31205945 doesn't seem to be mutated. Here are the mutated foci.Position 31214049 doesn't seem to be mutated. Here are the mutated foci.Position 31221207 doesn't seem to be mutated. Here are the mutated foci.Position 31224094 doesn't seem to be mutated. Here are the mutated foci.Position 31228843 doesn't seem to be mutated. Here are the mutated foci.Position 31239005 doesn't seem to be mutated. Here are the mutated foci.Position 31240439 doesn't seem to be mutated. Here are the mutated foci.Position 31254931 doesn't seem to be mutated. Here are the mutated foci.Position 31263856 doesn't seem to be mutated. Here are the mutated foci.Position 31265317 doesn't seem to be mutated. Here are the mutated foci.Position 31272652 doesn't seem to be mutated. Here are the mutated foci.Position 31273296 doesn't seem to be mutated. Here are the mutated foci.Position 31276409 doesn't seem to be mutated. Here are the mutated foci.Position 31290921 doesn't seem to be mutated. Here are the mutated foci.Position 31293335 doesn't seem to be mutated. Here are the mutated foci.Position 31315177 doesn't seem to be mutated. Here are the mutated foci.Position 31327331 doesn't seem to be mutated. Here are the mutated foci.Position 31328480 doesn't seem to be mutated. Here are the mutated foci.Position 31330722 doesn't seem to be mutated. Here are the mutated foci.Position 31342817 doesn't seem to be mutated. Here are the mutated foci.Position 31343015 doesn't seem to be mutated. Here are the mutated foci.Position 31343756 doesn't seem to be mutated. Here are the mutated foci.Position 31347562 doesn't seem to be mutated. Here are the mutated foci.Position 31350456 doesn't seem to be mutated. Here are the mutated foci.Position 31352271 doesn't seem to be mutated. Here are the mutated foci.Position 31352466 doesn't seem to be mutated. Here are the mutated foci.Position 31352624 doesn't seem to be mutated. Here are the mutated foci.Position 31354276 doesn't seem to be mutated. Here are the mutated foci.Position 31354285 doesn't seem to be mutated. Here are the mutated foci.Position 31354710 doesn't seem to be mutated. Here are the mutated foci.Position 31357245 doesn't seem to be mutated. Here are the mutated foci.Position 31361985 doesn't seem to be mutated. Here are the mutated foci.Position 31365065 doesn't seem to be mutated. Here are the mutated foci.Position 31367481 doesn't seem to be mutated. Here are the mutated foci.Position 31372032 doesn't seem to be mutated. Here are the mutated foci.Position 31372896 doesn't seem to be mutated. Here are the mutated foci.Position 31375254 doesn't seem to be mutated. Here are the mutated foci.Position 35095800 doesn't seem to be mutated. Here are the mutated foci.Position 35096871 doesn't seem to be mutated. Here are the mutated foci.Position 35100317 doesn't seem to be mutated. Here are the mutated foci.Position 35107439 doesn't seem to be mutated. Here are the mutated foci.Position 35111118 doesn't seem to be mutated. Here are the mutated foci.Position 35114266 doesn't seem to be mutated. Here are the mutated foci.Position 35120801 doesn't seem to be mutated. Here are the mutated foci.Position 39200339 doesn't seem to be mutated. Here are the mutated foci.Position 39205592 doesn't seem to be mutated. Here are the mutated foci.Position 39206334 doesn't seem to be mutated. Here are the mutated foci.Position 39206600 doesn't seem to be mutated. Here are the mutated foci.Position 40621098 doesn't seem to be mutated. Here are the mutated foci.Position 40621537 doesn't seem to be mutated. Here are the mutated foci.Position 40633288 doesn't seem to be mutated. Here are the mutated foci.Position 40635303 doesn't seem to be mutated. Here are the mutated foci.Position 40636524 doesn't seem to be mutated. Here are the mutated foci.Position 40638572 doesn't seem to be mutated. Here are the mutated foci.Position 40638587 doesn't seem to be mutated. Here are the mutated foci.Position 40644324 doesn't seem to be mutated. Here are the mutated foci.Position 40645755 doesn't seem to be mutated. Here are the mutated foci.Position 40645866 doesn't seem to be mutated. Here are the mutated foci.Position 40648976 doesn't seem to be mutated. Here are the mutated foci.Position 40652452 doesn't seem to be mutated. Here are the mutated foci.Position 42312305 doesn't seem to be mutated. Here are the mutated foci.Position 42314681 doesn't seem to be mutated. Here are the mutated foci.Position 42316385 doesn't seem to be mutated. Here are the mutated foci.Position 42318030 doesn't seem to be mutated. Here are the mutated foci.Position 42323434 doesn't seem to be mutated. Here are the mutated foci.Position 42327906 doesn't seem to be mutated. Here are the mutated foci.Position 42331803 doesn't seem to be mutated. Here are the mutated foci.Position 42347670 doesn't seem to be mutated. Here are the mutated foci.Position 42349427 doesn't seem to be mutated. Here are the mutated foci.Position 42352073 doesn't seem to be mutated. Here are the mutated foci.Position 42360378 doesn't seem to be mutated. Here are the mutated foci.Position 42369837 doesn't seem to be mutated. Here are the mutated foci.Position 42371391 doesn't seem to be mutated. Here are the mutated foci.Position 42375389 doesn't seem to be mutated. Here are the mutated foci.Position 42377111 doesn't seem to be mutated. Here are the mutated foci.Position 42381872 doesn't seem to be mutated. Here are the mutated foci.Position 42386318 doesn't seem to be mutated. Here are the mutated foci.Position 42387423 doesn't seem to be mutated. Here are the mutated foci.Position 43039799 doesn't seem to be mutated. Here are the mutated foci.Position 43043401 doesn't seem to be mutated. Here are the mutated foci.Position 43046648 doesn't seem to be mutated. Here are the mutated foci.Position 43048610 doesn't seem to be mutated. Here are the mutated foci.Position 43048874 doesn't seem to be mutated. Here are the mutated foci.Position 43051237 doesn't seem to be mutated. Here are the mutated foci.Position 43056350 doesn't seem to be mutated. Here are the mutated foci.Position 43056550 doesn't seem to be mutated. Here are the mutated foci.Position 43060291 doesn't seem to be mutated. Here are the mutated foci.Position 43061980 doesn't seem to be mutated. Here are the mutated foci.Position 43062153 doesn't seem to be mutated. Here are the mutated foci.Position 43064389 doesn't seem to be mutated. Here are the mutated foci.Position 43064629 doesn't seem to be mutated. Here are the mutated foci.Position 43067254 doesn't seem to be mutated. Here are the mutated foci.Position 43072830 doesn't seem to be mutated. Here are the mutated foci.Position 43084192 doesn't seem to be mutated. Here are the mutated foci.Position 43084413 doesn't seem to be mutated. Here are the mutated foci.Position 43089476 doesn't seem to be mutated. Here are the mutated foci.Position 43099114 doesn't seem to be mutated. Here are the mutated foci.Position 43104070 doesn't seem to be mutated. Here are the mutated foci.Position 43112378 doesn't seem to be mutated. Here are the mutated foci.Position 43113566 doesn't seem to be mutated. Here are the mutated foci.Position 43123064 doesn't seem to be mutated. Here are the mutated foci.Position 43150733 doesn't seem to be mutated. Here are the mutated foci.Position 44067882 doesn't seem to be mutated. Here are the mutated foci.Position 44067971 doesn't seem to be mutated. Here are the mutated foci.Position 44068970 doesn't seem to be mutated. Here are the mutated foci.Position 58692822 doesn't seem to be mutated. Here are the mutated foci.Position 58701837 doesn't seem to be mutated. Here are the mutated foci.Position 58706061 doesn't seem to be mutated. Here are the mutated foci.Position 58706797 doesn't seem to be mutated. Here are the mutated foci.Position 58707799 doesn't seem to be mutated. Here are the mutated foci.Position 58708652 doesn't seem to be mutated. Here are the mutated foci.Position 58712818 doesn't seem to be mutated. Here are the mutated foci.Position 58717651 doesn't seem to be mutated. Here are the mutated foci.Position 58717739 doesn't seem to be mutated. Here are the mutated foci.Position 58720404 doesn't seem to be mutated. Here are the mutated foci.Position 58727471 doesn't seem to be mutated. Here are the mutated foci.Position 58727923 doesn't seem to be mutated. Here are the mutated foci.Position 58729467 doesn't seem to be mutated. Here are the mutated foci.Position 58730549 doesn't seem to be mutated. Here are the mutated foci.Position 58730669 doesn't seem to be mutated. Here are the mutated foci.Position 58739074 doesn't seem to be mutated. Here are the mutated foci.Position 58739937 doesn't seem to be mutated. Here are the mutated foci.Position 59001554 doesn't seem to be mutated. Here are the mutated foci.Position 59005094 doesn't seem to be mutated. Here are the mutated foci.Position 59006614 doesn't seem to be mutated. Here are the mutated foci.Position 59006798 doesn't seem to be mutated. Here are the mutated foci.Position 59017388 doesn't seem to be mutated. Here are the mutated foci.Position 59027223 doesn't seem to be mutated. Here are the mutated foci.Position 59042951 doesn't seem to be mutated. Here are the mutated foci.Position 59043382 doesn't seem to be mutated. Here are the mutated foci.Position 59044304 doesn't seem to be mutated. Here are the mutated foci.Position 59049764 doesn't seem to be mutated. Here are the mutated foci.Position 59052721 doesn't seem to be mutated. Here are the mutated foci.Position 59062445 doesn't seem to be mutated. Here are the mutated foci.Position 59062832 doesn't seem to be mutated. Here are the mutated foci.Position 59063472 doesn't seem to be mutated. Here are the mutated foci.Position 59070080 doesn't seem to be mutated. Here are the mutated foci.Position 59073340 doesn't seem to be mutated. Here are the mutated foci.Position 59077670 doesn't seem to be mutated. Here are the mutated foci.Position 59087658 doesn't seem to be mutated. Here are the mutated foci.Position 59091114 doesn't seem to be mutated. Here are the mutated foci.Position 59106819 doesn't seem to be mutated. Here are the mutated foci.Position 59108426 doesn't seem to be mutated. Here are the mutated foci.Position 61681362 doesn't seem to be mutated. Here are the mutated foci.Position 61687564 doesn't seem to be mutated. Here are the mutated foci.Position 61691568 doesn't seem to be mutated. Here are the mutated foci.Position 61695414 doesn't seem to be mutated. Here are the mutated foci.Position 61698118 doesn't seem to be mutated. Here are the mutated foci.Position 61700142 doesn't seem to be mutated. Here are the mutated foci.Position 61705134 doesn't seem to be mutated. Here are the mutated foci.Position 61707991 doesn't seem to be mutated. Here are the mutated foci.Position 61711783 doesn't seem to be mutated. Here are the mutated foci.Position 61720851 doesn't seem to be mutated. Here are the mutated foci.Position 61725838 doesn't seem to be mutated. Here are the mutated foci.Position 61729018 doesn't seem to be mutated. Here are the mutated foci.Position 61733809 doesn't seem to be mutated. Here are the mutated foci.Position 61737275 doesn't seem to be mutated. Here are the mutated foci.Position 61737301 doesn't seem to be mutated. Here are the mutated foci.Position 61740430 doesn't seem to be mutated. Here are the mutated foci.Position 61741229 doesn't seem to be mutated. Here are the mutated foci.Position 61744909 doesn't seem to be mutated. Here are the mutated foci.Position 61751851 doesn't seem to be mutated. Here are the mutated foci.Position 61758101 doesn't seem to be mutated. Here are the mutated foci.Position 61764976 doesn't seem to be mutated. Here are the mutated foci.Position 61775964 doesn't seem to be mutated. Here are the mutated foci.Position 61786775 doesn't seem to be mutated. Here are the mutated foci.Position 61804979 doesn't seem to be mutated. Here are the mutated foci.Position 61821643 doesn't seem to be mutated. Here are the mutated foci.Position 61822102 doesn't seem to be mutated. Here are the mutated foci.Position 61825545 doesn't seem to be mutated. Here are the mutated foci.Position 61825941 doesn't seem to be mutated. Here are the mutated foci.Position 61826949 doesn't seem to be mutated. Here are the mutated foci.Position 61830703 doesn't seem to be mutated. Here are the mutated foci.Position 61832200 doesn't seem to be mutated. Here are the mutated foci.Position 61838477 doesn't seem to be mutated. Here are the mutated foci.Position 61848016 doesn't seem to be mutated. Here are the mutated foci.Position 61851792 doesn't seem to be mutated. Here are the mutated foci.Position 65525805 doesn't seem to be mutated. Here are the mutated foci.Position 65532524 doesn't seem to be mutated. Here are the mutated foci.Position 65538223 doesn't seem to be mutated. Here are the mutated foci.Position 65539831 doesn't seem to be mutated. Here are the mutated foci.Position 65541829 doesn't seem to be mutated. Here are the mutated foci.Position 65547623 doesn't seem to be mutated. Here are the mutated foci.Position 65547805 doesn't seem to be mutated. Here are the mutated foci.Position 65553664 doesn't seem to be mutated. Here are the mutated foci.Position 65557635 doesn't seem to be mutated. Here are the mutated foci.Position 65558744 doesn't seem to be mutated. Here are the mutated foci.Position 65564358 doesn't seem to be mutated. Here are the mutated foci.Position 68517969 doesn't seem to be mutated. Here are the mutated foci.Position 68518098 doesn't seem to be mutated. Here are the mutated foci.Position 68518592 doesn't seem to be mutated. Here are the mutated foci.Position 68532881 doesn't seem to be mutated. Here are the mutated foci.Position 76476884 doesn't seem to be mutated. Here are the mutated foci.Position 76480859 doesn't seem to be mutated. Here are the mutated foci.Position 76485326 doesn't seem to be mutated. Here are the mutated foci.Position 76490370 doesn't seem to be mutated. Here are the mutated foci.Position 76499613 doesn't seem to be mutated. Here are the mutated foci.Position 76503647 doesn't seem to be mutated. Here are the mutated foci.Position 51029431 doesn't seem to be mutated. Here are the mutated foci.Position 51032916 doesn't seem to be mutated. Here are the mutated foci.Position 51034667 doesn't seem to be mutated. Here are the mutated foci.Position 51038813 doesn't seem to be mutated. Here are the mutated foci.Position 51043706 doesn't seem to be mutated. Here are the mutated foci.Position 51047295 doesn't seem to be mutated. Here are the mutated foci.Position 51047671 doesn't seem to be mutated. Here are the mutated foci.Position 51048086 doesn't seem to be mutated. Here are the mutated foci.Position 51049286 doesn't seem to be mutated. Here are the mutated foci.Position 51053923 doesn't seem to be mutated. Here are the mutated foci.Position 51054625 doesn't seem to be mutated. Here are the mutated foci.Position 51061535 doesn't seem to be mutated. Here are the mutated foci.Position 51065406 doesn't seem to be mutated. Here are the mutated foci.Position 51067388 doesn't seem to be mutated. Here are the mutated foci.Position 51080709 doesn't seem to be mutated. Here are the mutated foci.Position 51083272 doesn't seem to be mutated. Here are the mutated foci.Position 51083509 doesn't seem to be mutated. Here are the mutated foci.Position 51089346 doesn't seem to be mutated. Here are the mutated foci.Position 51089659 doesn't seem to be mutated. Here are the mutated foci.Position 851101 doesn't seem to be mutated. Here are the mutated foci.Position 851651 doesn't seem to be mutated. Here are the mutated foci.Position 853590 doesn't seem to be mutated. Here are the mutated foci.Position 854469 doesn't seem to be mutated. Here are the mutated foci.Position 854863 doesn't seem to be mutated. Here are the mutated foci.Position 855440 doesn't seem to be mutated. Here are the mutated foci.Position 856851 doesn't seem to be mutated. Here are the mutated foci.Position 1179613 doesn't seem to be mutated. Here are the mutated foci.Position 1179759 doesn't seem to be mutated. Here are the mutated foci.Position 1179982 doesn't seem to be mutated. Here are the mutated foci.Position 1181290 doesn't seem to be mutated. Here are the mutated foci.Position 1186532 doesn't seem to be mutated. Here are the mutated foci.Position 1187090 doesn't seem to be mutated. Here are the mutated foci.Position 1188208 doesn't seem to be mutated. Here are the mutated foci.Position 1192324 doesn't seem to be mutated. Here are the mutated foci.Position 1193761 doesn't seem to be mutated. Here are the mutated foci.Position 1202242 doesn't seem to be mutated. Here are the mutated foci.Position 1204754 doesn't seem to be mutated. Here are the mutated foci.Position 1206797 doesn't seem to be mutated. Here are the mutated foci.Position 1209546 doesn't seem to be mutated. Here are the mutated foci.Position 1213157 doesn't seem to be mutated. Here are the mutated foci.Position 1215354 doesn't seem to be mutated. Here are the mutated foci.Position 1217603 doesn't seem to be mutated. Here are the mutated foci.Position 1217783 doesn't seem to be mutated. Here are the mutated foci.Position 1219086 doesn't seem to be mutated. Here are the mutated foci.Position 1220729 doesn't seem to be mutated. Here are the mutated foci.Position 1225510 doesn't seem to be mutated. Here are the mutated foci.Position 1226583 doesn't seem to be mutated. Here are the mutated foci.Position 4089081 doesn't seem to be mutated. Here are the mutated foci.Position 4089870 doesn't seem to be mutated. Here are the mutated foci.Position 4091760 doesn't seem to be mutated. Here are the mutated foci.Position 4092797 doesn't seem to be mutated. Here are the mutated foci.Position 4094872 doesn't seem to be mutated. Here are the mutated foci.Position 4102835 doesn't seem to be mutated. Here are the mutated foci.Position 4109640 doesn't seem to be mutated. Here are the mutated foci.Position 4113015 doesn't seem to be mutated. Here are the mutated foci.Position 4123865 doesn't seem to be mutated. Here are the mutated foci.Position 4124238 doesn't seem to be mutated. Here are the mutated foci.Position 4127009 doesn't seem to be mutated. Here are the mutated foci.Position 10957085 doesn't seem to be mutated. Here are the mutated foci.Position 10958299 doesn't seem to be mutated. Here are the mutated foci.Position 10963809 doesn't seem to be mutated. Here are the mutated foci.Position 10964317 doesn't seem to be mutated. Here are the mutated foci.Position 10965771 doesn't seem to be mutated. Here are the mutated foci.Position 10975469 doesn't seem to be mutated. Here are the mutated foci.Position 10976098 doesn't seem to be mutated. Here are the mutated foci.Position 10977683 doesn't seem to be mutated. Here are the mutated foci.Position 10981404 doesn't seem to be mutated. Here are the mutated foci.Position 10986129 doesn't seem to be mutated. Here are the mutated foci.Position 10988960 doesn't seem to be mutated. Here are the mutated foci.Position 10993640 doesn't seem to be mutated. Here are the mutated foci.Position 10994387 doesn't seem to be mutated. Here are the mutated foci.Position 10994885 doesn't seem to be mutated. Here are the mutated foci.Position 10995556 doesn't seem to be mutated. Here are the mutated foci.Position 10997026 doesn't seem to be mutated. Here are the mutated foci.Position 10998433 doesn't seem to be mutated. Here are the mutated foci.Position 10999005 doesn't seem to be mutated. Here are the mutated foci.Position 11010239 doesn't seem to be mutated. Here are the mutated foci.Position 11013012 doesn't seem to be mutated. Here are the mutated foci.Position 11013144 doesn't seem to be mutated. Here are the mutated foci.Position 11021633 doesn't seem to be mutated. Here are the mutated foci.Position 11021724 doesn't seem to be mutated. Here are the mutated foci.Position 11026225 doesn't seem to be mutated. Here are the mutated foci.Position 11029556 doesn't seem to be mutated. Here are the mutated foci.Position 11030423 doesn't seem to be mutated. Here are the mutated foci.Position 11035172 doesn't seem to be mutated. Here are the mutated foci.Position 11036756 doesn't seem to be mutated. Here are the mutated foci.Position 11037167 doesn't seem to be mutated. Here are the mutated foci.Position 11039821 doesn't seem to be mutated. Here are the mutated foci.Position 11042289 doesn't seem to be mutated. Here are the mutated foci.Position 11042874 doesn't seem to be mutated. Here are the mutated foci.Position 11044743 doesn't seem to be mutated. Here are the mutated foci.Position 11045387 doesn't seem to be mutated. Here are the mutated foci.Position 11048227 doesn't seem to be mutated. Here are the mutated foci.Position 11052331 doesn't seem to be mutated. Here are the mutated foci.Position 11052651 doesn't seem to be mutated. Here are the mutated foci.Position 11061533 doesn't seem to be mutated. Here are the mutated foci.Position 11065834 doesn't seem to be mutated. Here are the mutated foci.Position 11065884 doesn't seem to be mutated. Here are the mutated foci.Position 11071579 doesn't seem to be mutated. Here are the mutated foci.Position 11073830 doesn't seem to be mutated. Here are the mutated foci.Position 11074369 doesn't seem to be mutated. Here are the mutated foci.Position 11074641 doesn't seem to be mutated. Here are the mutated foci.Position 33298684 doesn't seem to be mutated. Here are the mutated foci.Position 41856502 doesn't seem to be mutated. Here are the mutated foci.Position 41861403 doesn't seem to be mutated. Here are the mutated foci.Position 45351707 doesn't seem to be mutated. Here are the mutated foci.Position 45353713 doesn't seem to be mutated. Here are the mutated foci.Position 45359927 doesn't seem to be mutated. Here are the mutated foci.Position 45364536 doesn't seem to be mutated. Here are the mutated foci.Position 45364638 doesn't seem to be mutated. Here are the mutated foci.Position 45369791 doesn't seem to be mutated. Here are the mutated foci.Position 45413567 doesn't seem to be mutated. Here are the mutated foci.Position 45416389 doesn't seem to be mutated. Here are the mutated foci.Position 45420890 doesn't seem to be mutated. Here are the mutated foci.Position 45421796 doesn't seem to be mutated. Here are the mutated foci.Position 45422283 doesn't seem to be mutated. Here are the mutated foci.Position 45427518 doesn't seem to be mutated. Here are the mutated foci.Position 45446858 doesn't seem to be mutated. Here are the mutated foci.Position 45449874 doesn't seem to be mutated. Here are the mutated foci.Position 45452323 doesn't seem to be mutated. Here are the mutated foci.Position 45462161 doesn't seem to be mutated. Here are the mutated foci.Position 50386376 doesn't seem to be mutated. Here are the mutated foci.Position 50390902 doesn't seem to be mutated. Here are the mutated foci.Position 50401284 doesn't seem to be mutated. Here are the mutated foci.Position 50403810 doesn't seem to be mutated. Here are the mutated foci.Position 50411483 doesn't seem to be mutated. Here are the mutated foci.Position 50412015 doesn't seem to be mutated. Here are the mutated foci.Position 50414352 doesn't seem to be mutated. Here are the mutated foci.Position 50417125 doesn't seem to be mutated. Here are the mutated foci.Position 32353734 doesn't seem to be mutated. Here are the mutated foci.Position 32358182 doesn't seem to be mutated. Here are the mutated foci.Position 32363018 doesn't seem to be mutated. Here are the mutated foci.Position 32364423 doesn't seem to be mutated. Here are the mutated foci.Position 32377344 doesn't seem to be mutated. Here are the mutated foci.Position 32378809 doesn't seem to be mutated. Here are the mutated foci.Position 32389196 doesn't seem to be mutated. Here are the mutated foci.Position 32391071 doesn't seem to be mutated. Here are the mutated foci.Position 32393761 doesn't seem to be mutated. Here are the mutated foci.Position 32407067 doesn't seem to be mutated. Here are the mutated foci.Position 32411955 doesn't seem to be mutated. Here are the mutated foci.Position 32424228 doesn't seem to be mutated. Here are the mutated foci.Position 32425068 doesn't seem to be mutated. Here are the mutated foci.Position 32427204 doesn't seem to be mutated. Here are the mutated foci.Position 32433597 doesn't seem to be mutated. Here are the mutated foci.Position 58848779 doesn't seem to be mutated. Here are the mutated foci.Position 58850161 doesn't seem to be mutated. Here are the mutated foci.Position 58854647 doesn't seem to be mutated. Here are the mutated foci.Position 58857954 doesn't seem to be mutated. Here are the mutated foci.Position 58858457 doesn't seem to be mutated. Here are the mutated foci.Position 58860689 doesn't seem to be mutated. Here are the mutated foci.Position 58862311 doesn't seem to be mutated. Here are the mutated foci.Position 58864503 doesn't seem to be mutated. Here are the mutated foci.Position 58864649 doesn't seem to be mutated. Here are the mutated foci.Position 58865960 doesn't seem to be mutated. Here are the mutated foci.Position 58866547 doesn't seem to be mutated. Here are the mutated foci.Position 58869146 doesn't seem to be mutated. Here are the mutated foci.Position 58882709 doesn't seem to be mutated. Here are the mutated foci.Position 58884399 doesn't seem to be mutated. Here are the mutated foci.Position 58884488 doesn't seem to be mutated. Here are the mutated foci.Position 58890070 doesn't seem to be mutated. Here are the mutated foci.Position 58899166 doesn't seem to be mutated. Here are the mutated foci.Position 58902192 doesn't seem to be mutated. Here are the mutated foci.Position 58909210 doesn't seem to be mutated. Here are the mutated foci.Position 58909360 doesn't seem to be mutated. Here are the mutated foci.Position 58910711 doesn't seem to be mutated. Here are the mutated foci.Position 58913689 doesn't seem to be mutated. Here are the mutated foci.Position 34783106 doesn't seem to be mutated. Here are the mutated foci.Position 34787158 doesn't seem to be mutated. Here are the mutated foci.Position 34788253 doesn't seem to be mutated. Here are the mutated foci.Position 34796770 doesn't seem to be mutated. Here are the mutated foci.Position 34798700 doesn't seem to be mutated. Here are the mutated foci.Position 34803967 doesn't seem to be mutated. Here are the mutated foci.Position 34804907 doesn't seem to be mutated. Here are the mutated foci.Position 34810327 doesn't seem to be mutated. Here are the mutated foci.Position 34812611 doesn't seem to be mutated. Here are the mutated foci.Position 34822358 doesn't seem to be mutated. Here are the mutated foci.Position 34827178 doesn't seem to be mutated. Here are the mutated foci.Position 34827753 doesn't seem to be mutated. Here are the mutated foci.Position 34840042 doesn't seem to be mutated. Here are the mutated foci.Position 34849979 doesn't seem to be mutated. Here are the mutated foci.Position 34851101 doesn't seem to be mutated. Here are the mutated foci.Position 34851382 doesn't seem to be mutated. Here are the mutated foci.Position 34852509 doesn't seem to be mutated. Here are the mutated foci.Position 34853526 doesn't seem to be mutated. Here are the mutated foci.Position 34857643 doesn't seem to be mutated. Here are the mutated foci.Position 34859824 doesn't seem to be mutated. Here are the mutated foci.Position 34861297 doesn't seem to be mutated. Here are the mutated foci.Position 34861739 doesn't seem to be mutated. Here are the mutated foci.Position 34873090 doesn't seem to be mutated. Here are the mutated foci.Position 34873621 doesn't seem to be mutated. Here are the mutated foci.Position 34874421 doesn't seem to be mutated. Here are the mutated foci.Position 34875179 doesn't seem to be mutated. Here are the mutated foci.Position 34877647 doesn't seem to be mutated. Here are the mutated foci.Position 34882680 doesn't seem to be mutated. Here are the mutated foci.Position 34896708 doesn't seem to be mutated. Here are the mutated foci.Position 34900956 doesn't seem to be mutated. Here are the mutated foci.Position 34913952 doesn't seem to be mutated. Here are the mutated foci.Position 34914019 doesn't seem to be mutated. Here are the mutated foci.Position 34918429 doesn't seem to be mutated. Here are the mutated foci.Position 34918821 doesn't seem to be mutated. Here are the mutated foci.Position 34922089 doesn't seem to be mutated. Here are the mutated foci.Position 34939357 doesn't seem to be mutated. Here are the mutated foci.Position 34939654 doesn't seem to be mutated. Here are the mutated foci.Position 34939836 doesn't seem to be mutated. Here are the mutated foci.Position 34940983 doesn't seem to be mutated. Here are the mutated foci.Position 34942603 doesn't seem to be mutated. Here are the mutated foci.Position 34947533 doesn't seem to be mutated. Here are the mutated foci.Position 34947931 doesn't seem to be mutated. Here are the mutated foci.Position 34955865 doesn't seem to be mutated. Here are the mutated foci.Position 34956699 doesn't seem to be mutated. Here are the mutated foci.Position 34958525 doesn't seem to be mutated. Here are the mutated foci.Position 34960640 doesn't seem to be mutated. Here are the mutated foci.Position 34962871 doesn't seem to be mutated. Here are the mutated foci.Position 34966721 doesn't seem to be mutated. Here are the mutated foci.Position 34968606 doesn't seem to be mutated. Here are the mutated foci.Position 34970111 doesn't seem to be mutated. Here are the mutated foci.Position 34975789 doesn't seem to be mutated. Here are the mutated foci.Position 34984500 doesn't seem to be mutated. Here are the mutated foci.Position 34991438 doesn't seem to be mutated. Here are the mutated foci.Position 34998505 doesn't seem to be mutated. Here are the mutated foci.Position 35003383 doesn't seem to be mutated. Here are the mutated foci.Position 35003941 doesn't seem to be mutated. Here are the mutated foci.Position 35004137 doesn't seem to be mutated. Here are the mutated foci.Position 35011528 doesn't seem to be mutated. Here are the mutated foci.Position 35014036 doesn't seem to be mutated. Here are the mutated foci.Position 35017081 doesn't seem to be mutated. Here are the mutated foci.Position 35019921 doesn't seem to be mutated. Here are the mutated foci.Position 35020730 doesn't seem to be mutated. Here are the mutated foci.Position 35021823 doesn't seem to be mutated. Here are the mutated foci.Position 35024059 doesn't seem to be mutated. Here are the mutated foci.Position 35030967 doesn't seem to be mutated. Here are the mutated foci.Position 35040693 doesn't seem to be mutated. Here are the mutated foci.Position 35042135 doesn't seem to be mutated. Here are the mutated foci.Position 35043271 doesn't seem to be mutated. Here are the mutated foci.Position 35044865 doesn't seem to be mutated. Here are the mutated foci.Position 35045186 doesn't seem to be mutated. Here are the mutated foci.Position 35047794 doesn't seem to be mutated. Here are the mutated foci.Position 35049140 doesn't seem to be mutated. Here are the mutated foci.Position 35055787 doesn't seem to be mutated. Here are the mutated foci.Position 35056246 doesn't seem to be mutated. Here are the mutated foci.Position 35057692 doesn't seem to be mutated. Here are the mutated foci.Position 35062201 doesn't seem to be mutated. Here are the mutated foci.Position 35062349 doesn't seem to be mutated. Here are the mutated foci.Position 35067413 doesn't seem to be mutated. Here are the mutated foci.Position 35068344 doesn't seem to be mutated. Here are the mutated foci.Position 35071724 doesn't seem to be mutated. Here are the mutated foci.Position 35076086 doesn't seem to be mutated. Here are the mutated foci.Position 35081270 doesn't seem to be mutated. Here are the mutated foci.Position 35084067 doesn't seem to be mutated. Here are the mutated foci.Position 35085036 doesn't seem to be mutated. Here are the mutated foci.Position 35091590 doesn't seem to be mutated. Here are the mutated foci.Position 35099845 doesn't seem to be mutated. Here are the mutated foci.Position 35102571 doesn't seem to be mutated. Here are the mutated foci.Position 35108697 doesn't seem to be mutated. Here are the mutated foci.Position 35109389 doesn't seem to be mutated. Here are the mutated foci.Position 35109707 doesn't seem to be mutated. Here are the mutated foci.Position 35112312 doesn't seem to be mutated. Here are the mutated foci.Position 35114497 doesn't seem to be mutated. Here are the mutated foci.Position 35115162 doesn't seem to be mutated. Here are the mutated foci.Position 35118413 doesn't seem to be mutated. Here are the mutated foci.Position 35124965 doesn't seem to be mutated. Here are the mutated foci.Position 35128521 doesn't seem to be mutated. Here are the mutated foci.Position 35128949 doesn't seem to be mutated. Here are the mutated foci.Position 35150019 doesn't seem to be mutated. Here are the mutated foci.Position 35155658 doesn't seem to be mutated. Here are the mutated foci.Position 35158277 doesn't seem to be mutated. Here are the mutated foci.Position 35159260 doesn't seem to be mutated. Here are the mutated foci.Position 35159667 doesn't seem to be mutated. Here are the mutated foci.Position 35161249 doesn't seem to be mutated. Here are the mutated foci.Position 35182598 doesn't seem to be mutated. Here are the mutated foci.Position 35183163 doesn't seem to be mutated. Here are the mutated foci.Position 35188864 doesn't seem to be mutated. Here are the mutated foci.Position 35195284 doesn't seem to be mutated. Here are the mutated foci.Position 35195556 doesn't seem to be mutated. Here are the mutated foci.Position 35198452 doesn't seem to be mutated. Here are the mutated foci.Position 35205135 doesn't seem to be mutated. Here are the mutated foci.Position 35206963 doesn't seem to be mutated. Here are the mutated foci.Position 35211457 doesn't seem to be mutated. Here are the mutated foci.Position 35212414 doesn't seem to be mutated. Here are the mutated foci.Position 35215744 doesn't seem to be mutated. Here are the mutated foci.Position 35217554 doesn't seem to be mutated. Here are the mutated foci.Position 35219402 doesn't seem to be mutated. Here are the mutated foci.Position 35220664 doesn't seem to be mutated. Here are the mutated foci.Position 35221690 doesn't seem to be mutated. Here are the mutated foci.Position 35228010 doesn't seem to be mutated. Here are the mutated foci.Position 35230082 doesn't seem to be mutated. Here are the mutated foci.Position 35236552 doesn't seem to be mutated. Here are the mutated foci.Position 35239957 doesn't seem to be mutated. Here are the mutated foci.Position 35247475 doesn't seem to be mutated. Here are the mutated foci.Position 35249103 doesn't seem to be mutated. Here are the mutated foci.Position 35252458 doesn't seem to be mutated. Here are the mutated foci.Position 35255539 doesn't seem to be mutated. Here are the mutated foci.Position 35258184 doesn't seem to be mutated. Here are the mutated foci.Position 35258851 doesn't seem to be mutated. Here are the mutated foci.Position 35259106 doesn't seem to be mutated. Here are the mutated foci.Position 35260700 doesn't seem to be mutated. Here are the mutated foci.Position 35262513 doesn't seem to be mutated. Here are the mutated foci.Position 35264141 doesn't seem to be mutated. Here are the mutated foci.Position 35269402 doesn't seem to be mutated. Here are the mutated foci.Position 35272785 doesn't seem to be mutated. Here are the mutated foci.Position 35273162 doesn't seem to be mutated. Here are the mutated foci.Position 35273337 doesn't seem to be mutated. Here are the mutated foci.Position 35279573 doesn't seem to be mutated. Here are the mutated foci.Position 35281492 doesn't seem to be mutated. Here are the mutated foci.Position 35282314 doesn't seem to be mutated. Here are the mutated foci.Position 35282550 doesn't seem to be mutated. Here are the mutated foci.Position 35284052 doesn't seem to be mutated. Here are the mutated foci.Position 35287759 doesn't seem to be mutated. Here are the mutated foci.Position 35289331 doesn't seem to be mutated. Here are the mutated foci.Position 35289414 doesn't seem to be mutated. Here are the mutated foci.Position 35299314 doesn't seem to be mutated. Here are the mutated foci.Position 35299332 doesn't seem to be mutated. Here are the mutated foci.Position 35305035 doesn't seem to be mutated. Here are the mutated foci.Position 35308430 doesn't seem to be mutated. Here are the mutated foci.Position 35315234 doesn't seem to be mutated. Here are the mutated foci.Position 35317610 doesn't seem to be mutated. Here are the mutated foci.Position 35318904 doesn't seem to be mutated. Here are the mutated foci.Position 35319158 doesn't seem to be mutated. Here are the mutated foci.Position 35319208 doesn't seem to be mutated. Here are the mutated foci.Position 35324761 doesn't seem to be mutated. Here are the mutated foci.Position 35325425 doesn't seem to be mutated. Here are the mutated foci.Position 35327178 doesn't seem to be mutated. Here are the mutated foci.Position 35335104 doesn't seem to be mutated. Here are the mutated foci.Position 35346845 doesn't seem to be mutated. Here are the mutated foci.Position 35352054 doesn't seem to be mutated. Here are the mutated foci.Position 35353100 doesn't seem to be mutated. Here are the mutated foci.Position 35360766 doesn't seem to be mutated. Here are the mutated foci.Position 35361507 doesn't seem to be mutated. Here are the mutated foci.Position 35364281 doesn't seem to be mutated. Here are the mutated foci.Position 35366739 doesn't seem to be mutated. Here are the mutated foci.Position 35367900 doesn't seem to be mutated. Here are the mutated foci.Position 35369195 doesn't seem to be mutated. Here are the mutated foci.Position 35371537 doesn't seem to be mutated. Here are the mutated foci.Position 35372057 doesn't seem to be mutated. Here are the mutated foci.Position 35372246 doesn't seem to be mutated. Here are the mutated foci.Position 35373493 doesn't seem to be mutated. Here are the mutated foci.Position 35379726 doesn't seem to be mutated. Here are the mutated foci.Position 35380649 doesn't seem to be mutated. Here are the mutated foci.Position 35381760 doesn't seem to be mutated. Here are the mutated foci.Position 35383439 doesn't seem to be mutated. Here are the mutated foci.Position 35388563 doesn't seem to be mutated. Here are the mutated foci.Position 35392115 doesn't seem to be mutated. Here are the mutated foci.Position 35393090 doesn't seem to be mutated. Here are the mutated foci.Position 35395627 doesn't seem to be mutated. Here are the mutated foci.Position 35395908 doesn't seem to be mutated. Here are the mutated foci.Position 35407066 doesn't seem to be mutated. Here are the mutated foci.Position 35407832 doesn't seem to be mutated. Here are the mutated foci.Position 35416926 doesn't seem to be mutated. Here are the mutated foci.Position 35422744 doesn't seem to be mutated. Here are the mutated foci.Position 35431324 doesn't seem to be mutated. Here are the mutated foci.Position 35433190 doesn't seem to be mutated. Here are the mutated foci.Position 35433588 doesn't seem to be mutated. Here are the mutated foci.Position 35444360 doesn't seem to be mutated. Here are the mutated foci.Position 35447736 doesn't seem to be mutated. Here are the mutated foci.Position 35451913 doesn't seem to be mutated. Here are the mutated foci.Position 35456020 doesn't seem to be mutated. Here are the mutated foci.Position 35459842 doesn't seem to be mutated. Here are the mutated foci.Position 35489923 doesn't seem to be mutated. Here are the mutated foci.Position 35490407 doesn't seem to be mutated. Here are the mutated foci.Position 35493283 doesn't seem to be mutated. Here are the mutated foci.Position 35497115 doesn't seem to be mutated. Here are the mutated foci.Position 35503965 doesn't seem to be mutated. Here are the mutated foci.Position 35505019 doesn't seem to be mutated. Here are the mutated foci.Position 35507814 doesn't seem to be mutated. Here are the mutated foci.Position 35509155 doesn't seem to be mutated. Here are the mutated foci.Position 35512815 doesn't seem to be mutated. Here are the mutated foci.Position 35524025 doesn't seem to be mutated. Here are the mutated foci.Position 35526125 doesn't seem to be mutated. Here are the mutated foci.Position 35528728 doesn't seem to be mutated. Here are the mutated foci.Position 35538712 doesn't seem to be mutated. Here are the mutated foci.Position 35539379 doesn't seem to be mutated. Here are the mutated foci.Position 35541780 doesn't seem to be mutated. Here are the mutated foci.Position 35551837 doesn't seem to be mutated. Here are the mutated foci.Position 35557908 doesn't seem to be mutated. Here are the mutated foci.Position 35560994 doesn't seem to be mutated. Here are the mutated foci.Position 35564647 doesn't seem to be mutated. Here are the mutated foci.Position 35567575 doesn't seem to be mutated. Here are the mutated foci.Position 35567759 doesn't seem to be mutated. Here are the mutated foci.Position 35576662 doesn't seem to be mutated. Here are the mutated foci.Position 35586212 doesn't seem to be mutated. Here are the mutated foci.Position 35592265 doesn't seem to be mutated. Here are the mutated foci.Position 35611682 doesn't seem to be mutated. Here are the mutated foci.Position 35613278 doesn't seem to be mutated. Here are the mutated foci.Position 35633461 doesn't seem to be mutated. Here are the mutated foci.Position 35634413 doesn't seem to be mutated. Here are the mutated foci.Position 35635132 doesn't seem to be mutated. Here are the mutated foci.Position 35638990 doesn't seem to be mutated. Here are the mutated foci.Position 35645633 doesn't seem to be mutated. Here are the mutated foci.Position 35648510 doesn't seem to be mutated. Here are the mutated foci.Position 35654578 doesn't seem to be mutated. Here are the mutated foci.Position 35655411 doesn't seem to be mutated. Here are the mutated foci.Position 35661157 doesn't seem to be mutated. Here are the mutated foci.Position 35669778 doesn't seem to be mutated. Here are the mutated foci.Position 35671806 doesn't seem to be mutated. Here are the mutated foci.Position 35675276 doesn't seem to be mutated. Here are the mutated foci.Position 35685254 doesn't seem to be mutated. Here are the mutated foci.Position 35695932 doesn't seem to be mutated. Here are the mutated foci.Position 35697683 doesn't seem to be mutated. Here are the mutated foci.Position 35699119 doesn't seem to be mutated. Here are the mutated foci.Position 35703314 doesn't seem to be mutated. Here are the mutated foci.Position 35707175 doesn't seem to be mutated. Here are the mutated foci.Position 35742319 doesn't seem to be mutated. Here are the mutated foci.Position 35742546 doesn't seem to be mutated. Here are the mutated foci.Position 35744341 doesn't seem to be mutated. Here are the mutated foci.Position 35752171 doesn't seem to be mutated. Here are the mutated foci.Position 35757799 doesn't seem to be mutated. Here are the mutated foci.Position 35762872 doesn't seem to be mutated. Here are the mutated foci.Position 35768015 doesn't seem to be mutated. Here are the mutated foci.Position 35781907 doesn't seem to be mutated. Here are the mutated foci.Position 35798116 doesn't seem to be mutated. Here are the mutated foci.Position 35802096 doesn't seem to be mutated. Here are the mutated foci.Position 35803024 doesn't seem to be mutated. Here are the mutated foci.Position 35810195 doesn't seem to be mutated. Here are the mutated foci.Position 35812879 doesn't seem to be mutated. Here are the mutated foci.Position 35813877 doesn't seem to be mutated. Here are the mutated foci.Position 35816222 doesn't seem to be mutated. Here are the mutated foci.Position 35821772 doesn't seem to be mutated. Here are the mutated foci.Position 35823666 doesn't seem to be mutated. Here are the mutated foci.Position 35828508 doesn't seem to be mutated. Here are the mutated foci.Position 35830126 doesn't seem to be mutated. Here are the mutated foci.Position 35833634 doesn't seem to be mutated. Here are the mutated foci.Position 35839968 doesn't seem to be mutated. Here are the mutated foci.Position 35840482 doesn't seem to be mutated. Here are the mutated foci.Position 35841101 doesn't seem to be mutated. Here are the mutated foci.Position 35848579 doesn't seem to be mutated. Here are the mutated foci.Position 35848866 doesn't seem to be mutated. Here are the mutated foci.Position 35849186 doesn't seem to be mutated. Here are the mutated foci.Position 35851873 doesn't seem to be mutated. Here are the mutated foci.Position 35858858 doesn't seem to be mutated. Here are the mutated foci.Position 35863457 doesn't seem to be mutated. Here are the mutated foci.Position 35866352 doesn't seem to be mutated. Here are the mutated foci.Position 35867171 doesn't seem to be mutated. Here are the mutated foci.Position 35868993 doesn't seem to be mutated. Here are the mutated foci.Position 35871942 doesn't seem to be mutated. Here are the mutated foci.Position 35872633 doesn't seem to be mutated. Here are the mutated foci.Position 35872694 doesn't seem to be mutated. Here are the mutated foci.Position 35874631 doesn't seem to be mutated. Here are the mutated foci.Position 35877157 doesn't seem to be mutated. Here are the mutated foci.Position 35879511 doesn't seem to be mutated. Here are the mutated foci.Position 35893578 doesn't seem to be mutated. Here are the mutated foci.Position 35893667 doesn't seem to be mutated. Here are the mutated foci.Position 35894856 doesn't seem to be mutated. Here are the mutated foci.Position 35895537 doesn't seem to be mutated. Here are the mutated foci.Position 35904456 doesn't seem to be mutated. Here are the mutated foci.Position 35908608 doesn't seem to be mutated. Here are the mutated foci.Position 35911284 doesn't seem to be mutated. Here are the mutated foci.Position 35916273 doesn't seem to be mutated. Here are the mutated foci.Position 35919026 doesn't seem to be mutated. Here are the mutated foci.Position 35929700 doesn't seem to be mutated. Here are the mutated foci.Position 35934299 doesn't seem to be mutated. Here are the mutated foci.Position 35944379 doesn't seem to be mutated. Here are the mutated foci.Position 35946438 doesn't seem to be mutated. Here are the mutated foci.Position 35954159 doesn't seem to be mutated. Here are the mutated foci.Position 35954862 doesn't seem to be mutated. Here are the mutated foci.Position 35955128 doesn't seem to be mutated. Here are the mutated foci.Position 35970300 doesn't seem to be mutated. Here are the mutated foci.Position 35972216 doesn't seem to be mutated. Here are the mutated foci.Position 35975449 doesn't seem to be mutated. Here are the mutated foci.Position 35975876 doesn't seem to be mutated. Here are the mutated foci.Position 35978096 doesn't seem to be mutated. Here are the mutated foci.Position 35978220 doesn't seem to be mutated. Here are the mutated foci.Position 35979160 doesn't seem to be mutated. Here are the mutated foci.Position 35979605 doesn't seem to be mutated. Here are the mutated foci.Position 35979715 doesn't seem to be mutated. Here are the mutated foci.Position 35981089 doesn't seem to be mutated. Here are the mutated foci.Position 35984787 doesn't seem to be mutated. Here are the mutated foci.Position 35987143 doesn't seem to be mutated. Here are the mutated foci.Position 35994854 doesn't seem to be mutated. Here are the mutated foci.Position 35999145 doesn't seem to be mutated. Here are the mutated foci.Position 35999685 doesn't seem to be mutated. Here are the mutated foci.Position 35999884 doesn't seem to be mutated. Here are the mutated foci.Position 36000213 doesn't seem to be mutated. Here are the mutated foci.Position 20982866 doesn't seem to be mutated. Here are the mutated foci.Position 20985374 doesn't seem to be mutated. Here are the mutated foci.Position 20992096 doesn't seem to be mutated. Here are the mutated foci.Position 20993640 doesn't seem to be mutated. Here are the mutated foci.Position 20995619 doesn't seem to be mutated. Here are the mutated foci.Position 20995948 doesn't seem to be mutated. Here are the mutated foci.Position 23788255 doesn't seem to be mutated. Here are the mutated foci.Position 23788416 doesn't seem to be mutated. Here are the mutated foci.Position 23792252 doesn't seem to be mutated. Here are the mutated foci.Position 23793572 doesn't seem to be mutated. Here are the mutated foci.Position 23797553 doesn't seem to be mutated. Here are the mutated foci.Position 23799785 doesn't seem to be mutated. Here are the mutated foci.Position 23802226 doesn't seem to be mutated. Here are the mutated foci.Position 23805784 doesn't seem to be mutated. Here are the mutated foci.Position 23807696 doesn't seem to be mutated. Here are the mutated foci.Position 23808343 doesn't seem to be mutated. Here are the mutated foci.Position 23808676 doesn't seem to be mutated. Here are the mutated foci.Position 23811767 doesn't seem to be mutated. Here are the mutated foci.Position 23813933 doesn't seem to be mutated. Here are the mutated foci.Position 23820988 doesn't seem to be mutated. Here are the mutated foci.Position 23832893 doesn't seem to be mutated. Here are the mutated foci.Position 23833411 doesn't seem to be mutated. Here are the mutated foci.Position 23833943 doesn't seem to be mutated. Here are the mutated foci.Position 23834272 doesn't seem to be mutated. Here are the mutated foci.Position 28683690 doesn't seem to be mutated. Here are the mutated foci.Position 28685257 doesn't seem to be mutated. Here are the mutated foci.Position 28696949 doesn't seem to be mutated. Here are the mutated foci.Position 28702713 doesn't seem to be mutated. Here are the mutated foci.Position 28724569 doesn't seem to be mutated. Here are the mutated foci.Position 28727813 doesn't seem to be mutated. Here are the mutated foci.Position 28729499 doesn't seem to be mutated. Here are the mutated foci.Position 28735257 doesn't seem to be mutated. Here are the mutated foci.Position 28739454 doesn't seem to be mutated. Here are the mutated foci.Position 29599971 doesn't seem to be mutated. Here are the mutated foci.Position 29602045 doesn't seem to be mutated. Here are the mutated foci.Position 29611918 doesn't seem to be mutated. Here are the mutated foci.Position 29614134 doesn't seem to be mutated. Here are the mutated foci.Position 29622301 doesn't seem to be mutated. Here are the mutated foci.Position 29622944 doesn't seem to be mutated. Here are the mutated foci.Position 29625863 doesn't seem to be mutated. Here are the mutated foci.Position 29633687 doesn't seem to be mutated. Here are the mutated foci.Position 29634121 doesn't seem to be mutated. Here are the mutated foci.Position 29636982 doesn't seem to be mutated. Here are the mutated foci.Position 29641169 doesn't seem to be mutated. Here are the mutated foci.Position 29654958 doesn't seem to be mutated. Here are the mutated foci.Position 29665152 doesn't seem to be mutated. Here are the mutated foci.Position 29665216 doesn't seem to be mutated. Here are the mutated foci.Position 29665822 doesn't seem to be mutated. Here are the mutated foci.Position 29671258 doesn't seem to be mutated. Here are the mutated foci.Position 29672764 doesn't seem to be mutated. Here are the mutated foci.Position 29678070 doesn't seem to be mutated. Here are the mutated foci.Position 29683526 doesn't seem to be mutated. Here are the mutated foci.Position 29690054 doesn't seem to be mutated. Here are the mutated foci.Position 29694153 doesn't seem to be mutated. Here are the mutated foci.Position 29694514 doesn't seem to be mutated. Here are the mutated foci.Position 29697059 doesn't seem to be mutated. Here are the mutated foci.Position 37975245 doesn't seem to be mutated. Here are the mutated foci.Position 37982663 doesn't seem to be mutated. Here are the mutated foci.Position 37983899 doesn't seem to be mutated. Here are the mutated foci.Position 37984204 doesn't seem to be mutated. Here are the mutated foci.Position 41098081 doesn't seem to be mutated. Here are the mutated foci.Position 41098365 doesn't seem to be mutated. Here are the mutated foci.Position 41104527 doesn't seem to be mutated. Here are the mutated foci.Position 41135697 doesn't seem to be mutated. Here are the mutated foci.Position 41142462 doesn't seem to be mutated. Here are the mutated foci.Position 41142754 doesn't seem to be mutated. Here are the mutated foci.Position 41148647 doesn't seem to be mutated. Here are the mutated foci.Position 41151079 doesn't seem to be mutated. Here are the mutated foci.Position 41161413 doesn't seem to be mutated. Here are the mutated foci.Position 41164482 doesn't seem to be mutated. Here are the mutated foci.Position 41166128 doesn't seem to be mutated. Here are the mutated foci.Position 41166714 doesn't seem to be mutated. Here are the mutated foci.Position 41172920 doesn't seem to be mutated. Here are the mutated foci.Position 14867644 doesn't seem to be mutated. Here are the mutated foci.Position 14873001 doesn't seem to be mutated. Here are the mutated foci.Position 48676724 doesn't seem to be mutated. Here are the mutated foci.Position 48678868 doesn't seem to be mutated. Here are the mutated foci.Position 48682516 doesn't seem to be mutated. Here are the mutated foci.Position 48683902 doesn't seem to be mutated. Here are the mutated foci.Position 48687901 doesn't seem to be mutated. Here are the mutated foci.Position 77518207 doesn't seem to be mutated. Here are the mutated foci.Position 77523448 doesn't seem to be mutated. Here are the mutated foci.Position 77526983 doesn't seem to be mutated. Here are the mutated foci.Position 77528478 doesn't seem to be mutated. Here are the mutated foci.Position 77533115 doesn't seem to be mutated. Here are the mutated foci.Position 77534236 doesn't seem to be mutated. Here are the mutated foci.Position 77535187 doesn't seem to be mutated. Here are the mutated foci.Position 77559271 doesn't seem to be mutated. Here are the mutated foci.Position 77564760 doesn't seem to be mutated. Here are the mutated foci.Position 77565922 doesn't seem to be mutated. Here are the mutated foci.Position 77566541 doesn't seem to be mutated. Here are the mutated foci.Position 77574491 doesn't seem to be mutated. Here are the mutated foci.Position 77604403 doesn't seem to be mutated. Here are the mutated foci.Position 77605491 doesn't seem to be mutated. Here are the mutated foci.Position 77621298 doesn't seem to be mutated. Here are the mutated foci.Position 77630072 doesn't seem to be mutated. Here are the mutated foci.Position 77640090 doesn't seem to be mutated. Here are the mutated foci.Position 77652549 doesn't seem to be mutated. Here are the mutated foci.Position 77663548 doesn't seem to be mutated. Here are the mutated foci.Position 77663746 doesn't seem to be mutated. Here are the mutated foci.Position 77673285 doesn't seem to be mutated. Here are the mutated foci.Position 77680579 doesn't seem to be mutated. Here are the mutated foci.Position 77697558 doesn't seem to be mutated. Here are the mutated foci.Position 77702619 doesn't seem to be mutated. Here are the mutated foci.Position 77728799 doesn't seem to be mutated. Here are the mutated foci.Position 77734067 doesn't seem to be mutated. Here are the mutated foci.Position 77741963 doesn't seem to be mutated. Here are the mutated foci.Position 77752219 doesn't seem to be mutated. Here are the mutated foci.Position 77753537 doesn't seem to be mutated. Here are the mutated foci.Position 77754077 doesn't seem to be mutated. Here are the mutated foci.Position 77764051 doesn't seem to be mutated. Here are the mutated foci.Position 77770708 doesn't seem to be mutated. Here are the mutated foci.Position 77776612 doesn't seem to be mutated. Here are the mutated foci.Position 77778652 doesn't seem to be mutated. Here are the mutated foci.Position 77779685 doesn't seem to be mutated. Here are the mutated foci.Position 77781298 doesn't seem to be mutated. Here are the mutated foci.Position 124347142 doesn't seem to be mutated. Here are the mutated foci.Position 124359994 doesn't seem to be mutated. Here are the mutated foci.Position 124363512 doesn't seem to be mutated. Here are the mutated foci.Position 124364680 doesn't seem to be mutated. Here are the mutated foci.Position 124372377 doesn't seem to be mutated. Here are the mutated foci.Position 133295332 doesn't seem to be mutated. Here are the mutated foci.Position 133301448 doesn't seem to be mutated. Here are the mutated foci.Position 133305965 doesn't seem to be mutated. Here are the mutated foci.Position 133315426 doesn't seem to be mutated. Here are the mutated foci.Position 133316982 doesn't seem to be mutated. Here are the mutated foci.Position 133321348 doesn't seem to be mutated. Here are the mutated foci.Position 133331688 doesn't seem to be mutated. Here are the mutated foci.Position 133336694 doesn't seem to be mutated. Here are the mutated foci.Position 133337567 doesn't seem to be mutated. Here are the mutated foci.Position 133344346 doesn't seem to be mutated. Here are the mutated foci.Position 133347198 doesn't seem to be mutated. Here are the mutated foci.Position 133357876 doesn't seem to be mutated. Here are the mutated foci.Position 133364911 doesn't seem to be mutated. Here are the mutated foci.Position 133365979 doesn't seem to be mutated. Here are the mutated foci.Position 133366846 doesn't seem to be mutated. Here are the mutated foci.Position 133369917 doesn't seem to be mutated. Here are the mutated foci.Position 133382927 doesn't seem to be mutated. Here are the mutated foci.Position 133385766 doesn't seem to be mutated. Here are the mutated foci.Position 133386566 doesn't seem to be mutated. Here are the mutated foci.Position 133397921 doesn't seem to be mutated. Here are the mutated foci.Position 133405493 doesn't seem to be mutated. Here are the mutated foci.Position 133415692 doesn't seem to be mutated. Here are the mutated foci.Position 133539053 doesn't seem to be mutated. Here are the mutated foci.Position 133541258 doesn't seem to be mutated. Here are the mutated foci.Position 133551184 doesn't seem to be mutated. Here are the mutated foci.Position 133551411 doesn't seem to be mutated. Here are the mutated foci.Position 133558231 doesn't seem to be mutated. Here are the mutated foci.Position 133558376 doesn't seem to be mutated. Here are the mutated foci.Position 133559265 doesn't seem to be mutated. Here are the mutated foci.Position 133560371 doesn't seem to be mutated. Here are the mutated foci.Position 133562837 doesn't seem to be mutated. Here are the mutated foci.Position 133572004 doesn't seem to be mutated. Here are the mutated foci.Position 133577092 doesn't seem to be mutated. Here are the mutated foci.Position 133582268 doesn't seem to be mutated. Here are the mutated foci.Position 133584599 doesn't seem to be mutated. Here are the mutated foci.Position 133586886 doesn't seem to be mutated. Here are the mutated foci.Position 133611719 doesn't seem to be mutated. Here are the mutated foci.Position 133625804 doesn't seem to be mutated. Here are the mutated foci.Position 133636623 doesn't seem to be mutated. Here are the mutated foci.Position 133646267 doesn't seem to be mutated. Here are the mutated foci.Position 133669447 doesn't seem to be mutated. Here are the mutated foci.Position 133673537 doesn't seem to be mutated. Here are the mutated foci.Position 133678571 doesn't seem to be mutated. Here are the mutated foci.Position 133682657 doesn't seem to be mutated. Here are the mutated foci.Position 133686808 doesn't seem to be mutated. Here are the mutated foci.Position 133700754 doesn't seem to be mutated. Here are the mutated foci.Position 133702931 doesn't seem to be mutated. Here are the mutated foci.Position 133707908 doesn't seem to be mutated. Here are the mutated foci.Position 133711729 doesn't seem to be mutated. Here are the mutated foci.Position 133717753 doesn't seem to be mutated. Here are the mutated foci.Position 133718167 doesn't seem to be mutated. Here are the mutated foci.Position 133721570 doesn't seem to be mutated. Here are the mutated foci.Position 133729312 doesn't seem to be mutated. Here are the mutated foci.Position 133742372 doesn't seem to be mutated. Here are the mutated foci.Position 133747152 doesn't seem to be mutated. Here are the mutated foci.Position 133754778 doesn't seem to be mutated. Here are the mutated foci.Position 133762383 doesn't seem to be mutated. Here are the mutated foci.Position 133768243 doesn't seem to be mutated. Here are the mutated foci.Position 133768300 doesn't seem to be mutated. Here are the mutated foci.Position 133770906 doesn't seem to be mutated. Here are the mutated foci.Position 133775114 doesn't seem to be mutated. Here are the mutated foci.Position 133781623 doesn't seem to be mutated. Here are the mutated foci.Position 133792995 doesn't seem to be mutated. Here are the mutated foci.Position 133796867 doesn't seem to be mutated. Here are the mutated foci.Position 133808839 doesn't seem to be mutated. Here are the mutated foci.Position 133811829 doesn't seem to be mutated. Here are the mutated foci.Position 133822549 doesn't seem to be mutated. Here are the mutated foci.Position 133840093 doesn't seem to be mutated. Here are the mutated foci.Position 133850120 doesn't seem to be mutated. Here are the mutated foci.Position 133859704 doesn't seem to be mutated. Here are the mutated foci.Position 133876542 doesn't seem to be mutated. Here are the mutated foci.Position 133882849 doesn't seem to be mutated. Here are the mutated foci.Position 133887570 doesn't seem to be mutated. Here are the mutated foci.Position 133893775 doesn't seem to be mutated. Here are the mutated foci.Position 133898256 doesn't seem to be mutated. Here are the mutated foci.Position 133916059 doesn't seem to be mutated. Here are the mutated foci.Position 133945278 doesn't seem to be mutated. Here are the mutated foci.Position 133951685 doesn't seem to be mutated. Here are the mutated foci.Position 133969766 doesn't seem to be mutated. Here are the mutated foci.Position 147910402 doesn't seem to be mutated. Here are the mutated foci.Position 147921461 doesn't seem to be mutated. Here are the mutated foci.Position 147923726 doesn't seem to be mutated. Here are the mutated foci.Position 147926754 doesn't seem to be mutated. Here are the mutated foci.Position 147929391 doesn't seem to be mutated. Here are the mutated foci.Position 147935422 doesn't seem to be mutated. Here are the mutated foci.Position 147938289 doesn't seem to be mutated. Here are the mutated foci.Position 147940330 doesn't seem to be mutated. Here are the mutated foci.Position 147946399 doesn't seem to be mutated. Here are the mutated foci.Position 147950495 doesn't seem to be mutated. Here are the mutated foci.Position 147953244 doesn't seem to be mutated. Here are the mutated foci.Position 154761795 doesn't seem to be mutated. Here are the mutated foci.Position 154768493 doesn't seem to be mutated. Here are the mutated foci.Position 2791971 doesn't seem to be mutated. Here are the mutated foci.Position 2792022 doesn't seem to be mutated. Here are the mutated foci.Position 2792506 doesn't seem to be mutated. Here are the mutated foci.Position 179234297 doesn't seem to be mutated. Here are the mutated foci.Position 56931723 doesn't seem to be mutated. Here are the mutated foci.Position 42002056 doesn't seem to be mutated. Here are the mutated foci.Position 36962779 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 121591012 doesn't seem to be mutated. Here are the mutated foci.Position 11828562 doesn't seem to be mutated. Here are the mutated foci.Position 29695100 doesn't seem to be mutated. Here are the mutated foci.Position 138718785 doesn't seem to be mutated. Here are the mutated foci.Position 117799568 doesn't seem to be mutated. Here are the mutated foci.Position 36936831 doesn't seem to be mutated. Here are the mutated foci.Position 102540560 doesn't seem to be mutated. Here are the mutated foci.Position 44093426 doesn't seem to be mutated. Here are the mutated foci.Position 36519724 doesn't seem to be mutated. Here are the mutated foci.Position 41110417 doesn't seem to be mutated. Here are the mutated foci.Position 10296664 doesn't seem to be mutated. Here are the mutated foci.Position 23695907 doesn't seem to be mutated. Here are the mutated foci.Position 45014576 doesn't seem to be mutated. Here are the mutated foci.Position 114716176 doesn't seem to be mutated. Here are the mutated foci.Position 161357067 doesn't seem to be mutated. Here are the mutated foci.Position 47470525 doesn't seem to be mutated. Here are the mutated foci.Position 48564420 doesn't seem to be mutated. Here are the mutated foci.Position 48567023 doesn't seem to be mutated. Here are the mutated foci.Position 48567636 doesn't seem to be mutated. Here are the mutated foci.Position 48570968 doesn't seem to be mutated. Here are the mutated foci.Position 48572045 doesn't seem to be mutated. Here are the mutated foci.Position 48574863 doesn't seem to be mutated. Here are the mutated foci.Position 48581483 doesn't seem to be mutated. Here are the mutated foci.Position 48585856 doesn't seem to be mutated. Here are the mutated foci.Position 48589470 doesn't seem to be mutated. Here are the mutated foci.Position 48590354 doesn't seem to be mutated. Here are the mutated foci.Position 48592015 doesn't seem to be mutated. Here are the mutated foci.Position 48592698 doesn't seem to be mutated. Here are the mutated foci.Position 48592939 doesn't seem to be mutated. Here are the mutated foci.Position 52403299 doesn't seem to be mutated. Here are the mutated foci.Position 52406907 doesn't seem to be mutated. Here are the mutated foci.Position 128489322 doesn't seem to be mutated. Here are the mutated foci.Position 56908846 doesn't seem to be mutated. Here are the mutated foci.Position 56908972 doesn't seem to be mutated. Here are the mutated foci.Position 1295407 doesn't seem to be mutated. Here are the mutated foci.Position 132603488 doesn't seem to be mutated. Here are the mutated foci.Position 177513484 doesn't seem to be mutated. Here are the mutated foci.Position 55201355 doesn't seem to be mutated. Here are the mutated foci.Position 38417417 doesn't seem to be mutated. Here are the mutated foci.Position 38417992 doesn't seem to be mutated. Here are the mutated foci.Position 19376388 doesn't seem to be mutated. Here are the mutated foci.Position 19378514 doesn't seem to be mutated. Here are the mutated foci.Position 95337030 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 78035417 doesn't seem to be mutated. Here are the mutated foci.Position 2884503 doesn't seem to be mutated. Here are the mutated foci.Position 57751090 doesn't seem to be mutated. Here are the mutated foci.Position 111447218 doesn't seem to be mutated. Here are the mutated foci.Position 48328209 doesn't seem to be mutated. Here are the mutated foci.Position 48328245 doesn't seem to be mutated. Here are the mutated foci.Position 48328255 doesn't seem to be mutated. Here are the mutated foci.Position 48328363 doesn't seem to be mutated. Here are the mutated foci.Position 104770421 doesn't seem to be mutated. Here are the mutated foci.Position 104773380 doesn't seem to be mutated. Here are the mutated foci.Position 104775003 doesn't seem to be mutated. Here are the mutated foci.Position 2040047 doesn't seem to be mutated. Here are the mutated foci.Position 2079195 doesn't seem to be mutated. Here are the mutated foci.Position 2079427 doesn't seem to be mutated. Here are the mutated foci.Position 7675237 doesn't seem to be mutated. Here are the mutated foci.Position 42322490 doesn't seem to be mutated. Here are the mutated foci.Position 42324847 doesn't seem to be mutated. Here are the mutated foci.Position 42329458 doesn't seem to be mutated. Here are the mutated foci.Position 76479010 doesn't seem to be mutated. Here are the mutated foci.Position 1220504 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 50402125 doesn't seem to be mutated. Here are the mutated foci.Position 58903586 doesn't seem to be mutated. Here are the mutated foci.Position 58909424 doesn't seem to be mutated. Here are the mutated foci.Position 58909803 doesn't seem to be mutated. Here are the mutated foci.Position 58910081 doesn't seem to be mutated. Here are the mutated foci.Position 58910401 doesn't seem to be mutated. Here are the mutated foci.Position 41172664 doesn't seem to be mutated. Here are the mutated foci.Position 133671312 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 10022698 doesn't seem to be mutated. Here are the mutated foci.Position 157229560 doesn't seem to be mutated. Here are the mutated foci.Position 119223177 doesn't seem to be mutated. Here are the mutated foci.Position 1215744 doesn't seem to be mutated. Here are the mutated foci.Position 114713909 doesn't seem to be mutated. Here are the mutated foci.Position 193118259 doesn't seem to be mutated. Here are the mutated foci.Position 1297846 doesn't seem to be mutated. Here are the mutated foci.Position 112731954 doesn't seem to be mutated. Here are the mutated foci.Position 112731958 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 142753563 doesn't seem to be mutated. Here are the mutated foci.Position 36851770 doesn't seem to be mutated. Here are the mutated foci.Position 95487444 doesn't seem to be mutated. Here are the mutated foci.Position 95493676 doesn't seem to be mutated. Here are the mutated foci.Position 32386706 doesn't seem to be mutated. Here are the mutated foci.Position 108243547 doesn't seem to be mutated. Here are the mutated foci.Position 112507202 doesn't seem to be mutated. Here are the mutated foci.Position 32744191 doesn't seem to be mutated. Here are the mutated foci.Position 31226319 doesn't seem to be mutated. Here are the mutated foci.Position 40626865 doesn't seem to be mutated. Here are the mutated foci.Position 29636815 doesn't seem to be mutated. Here are the mutated foci.Position 77683641 doesn't seem to be mutated. Here are the mutated foci.Position 133545910 doesn't seem to be mutated. Here are the mutated foci.Position 12663660 doesn't seem to be mutated. Here are the mutated foci.Position 93120978 doesn't seem to be mutated. Here are the mutated foci.Position 320156 doesn't seem to be mutated. Here are the mutated foci.Position 110973881 doesn't seem to be mutated. Here are the mutated foci.Position 35312694 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 133882536 doesn't seem to be mutated. Here are the mutated foci.Position 133965897 doesn't seem to be mutated. Here are the mutated foci.Position 10212805 doesn't seem to be mutated. Here are the mutated foci.Position 10251735 doesn't seem to be mutated. Here are the mutated foci.Position 10251780 doesn't seem to be mutated. Here are the mutated foci.Position 10256126 doesn't seem to be mutated. Here are the mutated foci.Position 10298761 doesn't seem to be mutated. Here are the mutated foci.Position 10318075 doesn't seem to be mutated. Here are the mutated foci.Position 10319104 doesn't seem to be mutated. Here are the mutated foci.Position 10336157 doesn't seem to be mutated. Here are the mutated foci.Position 10348332 doesn't seem to be mutated. Here are the mutated foci.Position 17023953 doesn't seem to be mutated. Here are the mutated foci.Position 17026928 doesn't seem to be mutated. Here are the mutated foci.Position 23688761 doesn't seem to be mutated. Here are the mutated foci.Position 23694363 doesn't seem to be mutated. Here are the mutated foci.Position 43335660 doesn't seem to be mutated. Here are the mutated foci.Position 43345209 doesn't seem to be mutated. Here are the mutated foci.Position 44827440 doesn't seem to be mutated. Here are the mutated foci.Position 44831685 doesn't seem to be mutated. Here are the mutated foci.Position 45329541 doesn't seem to be mutated. Here are the mutated foci.Position 92840563 doesn't seem to be mutated. Here are the mutated foci.Position 114706062 doesn't seem to be mutated. Here are the mutated foci.Position 156822541 doesn't seem to be mutated. Here are the mutated foci.Position 156831945 doesn't seem to be mutated. Here are the mutated foci.Position 156866178 doesn't seem to be mutated. Here are the mutated foci.Position 161311446 doesn't seem to be mutated. Here are the mutated foci.Position 161320631 doesn't seem to be mutated. Here are the mutated foci.Position 161362302 doesn't seem to be mutated. Here are the mutated foci.Position 161378041 doesn't seem to be mutated. Here are the mutated foci.Position 193134692 doesn't seem to be mutated. Here are the mutated foci.Position 193166652 doesn't seem to be mutated. Here are the mutated foci.Position 193203490 doesn't seem to be mutated. Here are the mutated foci.Position 193236946 doesn't seem to be mutated. Here are the mutated foci.Position 231388903 doesn't seem to be mutated. Here are the mutated foci.Position 231406030 doesn't seem to be mutated. Here are the mutated foci.Position 29201884 doesn't seem to be mutated. Here are the mutated foci.Position 29214087 doesn't seem to be mutated. Here are the mutated foci.Position 29215456 doesn't seem to be mutated. Here are the mutated foci.Position 29219578 doesn't seem to be mutated. Here are the mutated foci.Position 29221124 doesn't seem to be mutated. Here are the mutated foci.Position 29246527 doesn't seem to be mutated. Here are the mutated foci.Position 29251053 doesn't seem to be mutated. Here are the mutated foci.Position 29254292 doesn't seem to be mutated. Here are the mutated foci.Position 29260800 doesn't seem to be mutated. Here are the mutated foci.Position 29261907 doesn't seem to be mutated. Here are the mutated foci.Position 29341624 doesn't seem to be mutated. Here are the mutated foci.Position 29366232 doesn't seem to be mutated. Here are the mutated foci.Position 29396696 doesn't seem to be mutated. Here are the mutated foci.Position 29414595 doesn't seem to be mutated. Here are the mutated foci.Position 29427304 doesn't seem to be mutated. Here are the mutated foci.Position 29441442 doesn't seem to be mutated. Here are the mutated foci.Position 29451631 doesn't seem to be mutated. Here are the mutated foci.Position 29455428 doesn't seem to be mutated. Here are the mutated foci.Position 29574982 doesn't seem to be mutated. Here are the mutated foci.Position 29627159 doesn't seem to be mutated. Here are the mutated foci.Position 29701008 doesn't seem to be mutated. Here are the mutated foci.Position 29718154 doesn't seem to be mutated. Here are the mutated foci.Position 29775538 doesn't seem to be mutated. Here are the mutated foci.Position 29809043 doesn't seem to be mutated. Here are the mutated foci.Position 29830442 doesn't seem to be mutated. Here are the mutated foci.Position 29855529 doesn't seem to be mutated. Here are the mutated foci.Position 29896804 doesn't seem to be mutated. Here are the mutated foci.Position 29907955 doesn't seem to be mutated. Here are the mutated foci.Position 29922981 doesn't seem to be mutated. Here are the mutated foci.Position 38991225 doesn't seem to be mutated. Here are the mutated foci.Position 39080752 doesn't seem to be mutated. Here are the mutated foci.Position 39106276 doesn't seem to be mutated. Here are the mutated foci.Position 39106569 doesn't seem to be mutated. Here are the mutated foci.Position 47353824 doesn't seem to be mutated. Here are the mutated foci.Position 47354357 doesn't seem to be mutated. Here are the mutated foci.Position 47366981 doesn't seem to be mutated. Here are the mutated foci.Position 47373743 doesn't seem to be mutated. Here are the mutated foci.Position 47384421 doesn't seem to be mutated. Here are the mutated foci.Position 47402751 doesn't seem to be mutated. Here are the mutated foci.Position 47416608 doesn't seem to be mutated. Here are the mutated foci.Position 47417224 doesn't seem to be mutated. Here are the mutated foci.Position 47423445 doesn't seem to be mutated. Here are the mutated foci.Position 47442231 doesn't seem to be mutated. Here are the mutated foci.Position 47449160 doesn't seem to be mutated. Here are the mutated foci.Position 47450173 doesn't seem to be mutated. Here are the mutated foci.Position 47452223 doesn't seem to be mutated. Here are the mutated foci.Position 47497941 doesn't seem to be mutated. Here are the mutated foci.Position 47505412 doesn't seem to be mutated. Here are the mutated foci.Position 47505489 doesn't seem to be mutated. Here are the mutated foci.Position 47612211 doesn't seem to be mutated. Here are the mutated foci.Position 47628903 doesn't seem to be mutated. Here are the mutated foci.Position 47632083 doesn't seem to be mutated. Here are the mutated foci.Position 47637966 doesn't seem to be mutated. Here are the mutated foci.Position 47655535 doesn't seem to be mutated. Here are the mutated foci.Position 47723734 doesn't seem to be mutated. Here are the mutated foci.Position 47749992 doesn't seem to be mutated. Here are the mutated foci.Position 47763391 doesn't seem to be mutated. Here are the mutated foci.Position 47786338 doesn't seem to be mutated. Here are the mutated foci.Position 47799327 doesn't seem to be mutated. Here are the mutated foci.Position 58160449 doesn't seem to be mutated. Here are the mutated foci.Position 58166015 doesn't seem to be mutated. Here are the mutated foci.Position 58170695 doesn't seem to be mutated. Here are the mutated foci.Position 58172735 doesn't seem to be mutated. Here are the mutated foci.Position 58188771 doesn't seem to be mutated. Here are the mutated foci.Position 58191128 doesn't seem to be mutated. Here are the mutated foci.Position 96248067 doesn't seem to be mutated. Here are the mutated foci.Position 96250740 doesn't seem to be mutated. Here are the mutated foci.Position 96260613 doesn't seem to be mutated. Here are the mutated foci.Position 127263954 doesn't seem to be mutated. Here are the mutated foci.Position 127267702 doesn't seem to be mutated. Here are the mutated foci.Position 144408936 doesn't seem to be mutated. Here are the mutated foci.Position 144415063 doesn't seem to be mutated. Here are the mutated foci.Position 144420935 doesn't seem to be mutated. Here are the mutated foci.Position 144432840 doesn't seem to be mutated. Here are the mutated foci.Position 144482752 doesn't seem to be mutated. Here are the mutated foci.Position 144484240 doesn't seem to be mutated. Here are the mutated foci.Position 168941730 doesn't seem to be mutated. Here are the mutated foci.Position 168949488 doesn't seem to be mutated. Here are the mutated foci.Position 168954514 doesn't seem to be mutated. Here are the mutated foci.Position 168959960 doesn't seem to be mutated. Here are the mutated foci.Position 168967693 doesn't seem to be mutated. Here are the mutated foci.Position 168978815 doesn't seem to be mutated. Here are the mutated foci.Position 168996032 doesn't seem to be mutated. Here are the mutated foci.Position 169002092 doesn't seem to be mutated. Here are the mutated foci.Position 169016933 doesn't seem to be mutated. Here are the mutated foci.Position 169022555 doesn't seem to be mutated. Here are the mutated foci.Position 169028367 doesn't seem to be mutated. Here are the mutated foci.Position 169031637 doesn't seem to be mutated. Here are the mutated foci.Position 214771730 doesn't seem to be mutated. Here are the mutated foci.Position 214777608 doesn't seem to be mutated. Here are the mutated foci.Position 231976526 doesn't seem to be mutated. Here are the mutated foci.Position 231985244 doesn't seem to be mutated. Here are the mutated foci.Position 231994816 doesn't seem to be mutated. Here are the mutated foci.Position 232010524 doesn't seem to be mutated. Here are the mutated foci.Position 232024582 doesn't seem to be mutated. Here are the mutated foci.Position 232044597 doesn't seem to be mutated. Here are the mutated foci.Position 232052030 doesn't seem to be mutated. Here are the mutated foci.Position 232064332 doesn't seem to be mutated. Here are the mutated foci.Position 232087627 doesn't seem to be mutated. Here are the mutated foci.Position 232090927 doesn't seem to be mutated. Here are the mutated foci.Position 232092315 doesn't seem to be mutated. Here are the mutated foci.Position 232094759 doesn't seem to be mutated. Here are the mutated foci.Position 232174456 doesn't seem to be mutated. Here are the mutated foci.Position 232182603 doesn't seem to be mutated. Here are the mutated foci.Position 232198962 doesn't seem to be mutated. Here are the mutated foci.Position 232233952 doesn't seem to be mutated. Here are the mutated foci.Position 232250393 doesn't seem to be mutated. Here are the mutated foci.Position 232285114 doesn't seem to be mutated. Here are the mutated foci.Position 232310209 doesn't seem to be mutated. Here are the mutated foci.Position 232321864 doesn't seem to be mutated. Here are the mutated foci.Position 10035158 doesn't seem to be mutated. Here are the mutated foci.Position 10092432 doesn't seem to be mutated. Here are the mutated foci.Position 10142432 doesn't seem to be mutated. Here are the mutated foci.Position 10147929 doesn't seem to be mutated. Here are the mutated foci.Position 10151801 doesn't seem to be mutated. Here are the mutated foci.Position 12610769 doesn't seem to be mutated. Here are the mutated foci.Position 12614414 doesn't seem to be mutated. Here are the mutated foci.Position 12641368 doesn't seem to be mutated. Here are the mutated foci.Position 12655000 doesn't seem to be mutated. Here are the mutated foci.Position 12662026 doesn't seem to be mutated. Here are the mutated foci.Position 12666086 doesn't seem to be mutated. Here are the mutated foci.Position 37003119 doesn't seem to be mutated. Here are the mutated foci.Position 48581801 doesn't seem to be mutated. Here are the mutated foci.Position 69779640 doesn't seem to be mutated. Here are the mutated foci.Position 69800632 doesn't seem to be mutated. Here are the mutated foci.Position 69899032 doesn't seem to be mutated. Here are the mutated foci.Position 69902874 doesn't seem to be mutated. Here are the mutated foci.Position 69917263 doesn't seem to be mutated. Here are the mutated foci.Position 69920249 doesn't seem to be mutated. Here are the mutated foci.Position 69971283 doesn't seem to be mutated. Here are the mutated foci.Position 122212644 doesn't seem to be mutated. Here are the mutated foci.Position 122233371 doesn't seem to be mutated. Here are the mutated foci.Position 122236548 doesn't seem to be mutated. Here are the mutated foci.Position 122236881 doesn't seem to be mutated. Here are the mutated foci.Position 122276229 doesn't seem to be mutated. Here are the mutated foci.Position 128497227 doesn't seem to be mutated. Here are the mutated foci.Position 158598053 doesn't seem to be mutated. Here are the mutated foci.Position 179144763 doesn't seem to be mutated. Here are the mutated foci.Position 179145409 doesn't seem to be mutated. Here are the mutated foci.Position 179172848 doesn't seem to be mutated. Here are the mutated foci.Position 179234718 doesn't seem to be mutated. Here are the mutated foci.Position 41742433 doesn't seem to be mutated. Here are the mutated foci.Position 41744263 doesn't seem to be mutated. Here are the mutated foci.Position 54264835 doesn't seem to be mutated. Here are the mutated foci.Position 54269810 doesn't seem to be mutated. Here are the mutated foci.Position 54302548 doesn't seem to be mutated. Here are the mutated foci.Position 54656384 doesn't seem to be mutated. Here are the mutated foci.Position 54659330 doesn't seem to be mutated. Here are the mutated foci.Position 54669212 doesn't seem to be mutated. Here are the mutated foci.Position 54674508 doesn't seem to be mutated. Here are the mutated foci.Position 54687207 doesn't seem to be mutated. Here are the mutated foci.Position 54744277 doesn't seem to be mutated. Here are the mutated foci.Position 56916636 doesn't seem to be mutated. Here are the mutated foci.Position 56941586 doesn't seem to be mutated. Here are the mutated foci.Position 234302 doesn't seem to be mutated. Here are the mutated foci.Position 237128 doesn't seem to be mutated. Here are the mutated foci.Position 239728 doesn't seem to be mutated. Here are the mutated foci.Position 240343 doesn't seem to be mutated. Here are the mutated foci.Position 906775 doesn't seem to be mutated. Here are the mutated foci.Position 1266020 doesn't seem to be mutated. Here are the mutated foci.Position 1270911 doesn't seem to be mutated. Here are the mutated foci.Position 1280681 doesn't seem to be mutated. Here are the mutated foci.Position 1281333 doesn't seem to be mutated. Here are the mutated foci.Position 1292518 doesn't seem to be mutated. Here are the mutated foci.Position 37815520 doesn't seem to be mutated. Here are the mutated foci.Position 37834421 doesn't seem to be mutated. Here are the mutated foci.Position 80655285 doesn't seem to be mutated. Here are the mutated foci.Position 80657652 doesn't seem to be mutated. Here are the mutated foci.Position 80662627 doesn't seem to be mutated. Here are the mutated foci.Position 80673172 doesn't seem to be mutated. Here are the mutated foci.Position 80680422 doesn't seem to be mutated. Here are the mutated foci.Position 80694029 doesn't seem to be mutated. Here are the mutated foci.Position 80700565 doesn't seem to be mutated. Here are the mutated foci.Position 80702622 doesn't seem to be mutated. Here are the mutated foci.Position 80725215 doesn't seem to be mutated. Here are the mutated foci.Position 80729363 doesn't seem to be mutated. Here are the mutated foci.Position 80773420 doesn't seem to be mutated. Here are the mutated foci.Position 80776194 doesn't seem to be mutated. Here are the mutated foci.Position 80776521 doesn't seem to be mutated. Here are the mutated foci.Position 80778097 doesn't seem to be mutated. Here are the mutated foci.Position 80792674 doesn't seem to be mutated. Here are the mutated foci.Position 80834997 doesn't seem to be mutated. Here are the mutated foci.Position 80848497 doesn't seem to be mutated. Here are the mutated foci.Position 80859120 doesn't seem to be mutated. Here are the mutated foci.Position 80862761 doesn't seem to be mutated. Here are the mutated foci.Position 112712991 doesn't seem to be mutated. Here are the mutated foci.Position 112727710 doesn't seem to be mutated. Here are the mutated foci.Position 112728083 doesn't seem to be mutated. Here are the mutated foci.Position 112749912 doesn't seem to be mutated. Here are the mutated foci.Position 112757672 doesn't seem to be mutated. Here are the mutated foci.Position 112776863 doesn't seem to be mutated. Here are the mutated foci.Position 112798894 doesn't seem to be mutated. Here are the mutated foci.Position 112806604 doesn't seem to be mutated. Here are the mutated foci.Position 112814957 doesn't seem to be mutated. Here are the mutated foci.Position 112845240 doesn't seem to be mutated. Here are the mutated foci.Position 132576574 doesn't seem to be mutated. Here are the mutated foci.Position 132611345 doesn't seem to be mutated. Here are the mutated foci.Position 138635697 doesn't seem to be mutated. Here are the mutated foci.Position 138656941 doesn't seem to be mutated. Here are the mutated foci.Position 138657858 doesn't seem to be mutated. Here are the mutated foci.Position 138667300 doesn't seem to be mutated. Here are the mutated foci.Position 138673277 doesn't seem to be mutated. Here are the mutated foci.Position 138694102 doesn't seem to be mutated. Here are the mutated foci.Position 138710724 doesn't seem to be mutated. Here are the mutated foci.Position 138711623 doesn't seem to be mutated. Here are the mutated foci.Position 138735685 doesn't seem to be mutated. Here are the mutated foci.Position 138764788 doesn't seem to be mutated. Here are the mutated foci.Position 138798640 doesn't seem to be mutated. Here are the mutated foci.Position 138801314 doesn't seem to be mutated. Here are the mutated foci.Position 138833357 doesn't seem to be mutated. Here are the mutated foci.Position 138838155 doesn't seem to be mutated. Here are the mutated foci.Position 138848735 doesn't seem to be mutated. Here are the mutated foci.Position 138859436 doesn't seem to be mutated. Here are the mutated foci.Position 138863151 doesn't seem to be mutated. Here are the mutated foci.Position 138867950 doesn't seem to be mutated. Here are the mutated foci.Position 138903491 doesn't seem to be mutated. Here are the mutated foci.Position 138932514 doesn't seem to be mutated. Here are the mutated foci.Position 157151059 doesn't seem to be mutated. Here are the mutated foci.Position 157155739 doesn't seem to be mutated. Here are the mutated foci.Position 157185243 doesn't seem to be mutated. Here are the mutated foci.Position 157189337 doesn't seem to be mutated. Here are the mutated foci.Position 157191116 doesn't seem to be mutated. Here are the mutated foci.Position 157201628 doesn't seem to be mutated. Here are the mutated foci.Position 157219019 doesn't seem to be mutated. Here are the mutated foci.Position 157224284 doesn't seem to be mutated. Here are the mutated foci.Position 157237370 doesn't seem to be mutated. Here are the mutated foci.Position 177135257 doesn't seem to be mutated. Here are the mutated foci.Position 177171307 doesn't seem to be mutated. Here are the mutated foci.Position 177175880 doesn't seem to be mutated. Here are the mutated foci.Position 177179186 doesn't seem to be mutated. Here are the mutated foci.Position 177201425 doesn't seem to be mutated. Here are the mutated foci.Position 177228939 doesn't seem to be mutated. Here are the mutated foci.Position 177257229 doesn't seem to be mutated. Here are the mutated foci.Position 177282449 doesn't seem to be mutated. Here are the mutated foci.Position 177516070 doesn't seem to be mutated. Here are the mutated foci.Position 26086499 doesn't seem to be mutated. Here are the mutated foci.Position 26101479 doesn't seem to be mutated. Here are the mutated foci.Position 35447682 doesn't seem to be mutated. Here are the mutated foci.Position 35449809 doesn't seem to be mutated. Here are the mutated foci.Position 35456520 doesn't seem to be mutated. Here are the mutated foci.Position 35457677 doesn't seem to be mutated. Here are the mutated foci.Position 43592607 doesn't seem to be mutated. Here are the mutated foci.Position 43615660 doesn't seem to be mutated. Here are the mutated foci.Position 104769845 doesn't seem to be mutated. Here are the mutated foci.Position 104782179 doesn't seem to be mutated. Here are the mutated foci.Position 104784585 doesn't seem to be mutated. Here are the mutated foci.Position 104809566 doesn't seem to be mutated. Here are the mutated foci.Position 104844345 doesn't seem to be mutated. Here are the mutated foci.Position 104848230 doesn't seem to be mutated. Here are the mutated foci.Position 5982023 doesn't seem to be mutated. Here are the mutated foci.Position 6002964 doesn't seem to be mutated. Here are the mutated foci.Position 41956463 doesn't seem to be mutated. Here are the mutated foci.Position 41956928 doesn't seem to be mutated. Here are the mutated foci.Position 41981391 doesn't seem to be mutated. Here are the mutated foci.Position 42015472 doesn't seem to be mutated. Here are the mutated foci.Position 42019654 doesn't seem to be mutated. Here are the mutated foci.Position 42094581 doesn't seem to be mutated. Here are the mutated foci.Position 42097026 doesn't seem to be mutated. Here are the mutated foci.Position 42098366 doesn't seem to be mutated. Here are the mutated foci.Position 42105282 doesn't seem to be mutated. Here are the mutated foci.Position 42149666 doesn't seem to be mutated. Here are the mutated foci.Position 42155825 doesn't seem to be mutated. Here are the mutated foci.Position 42182820 doesn't seem to be mutated. Here are the mutated foci.Position 42205099 doesn't seem to be mutated. Here are the mutated foci.Position 42210178 doesn't seem to be mutated. Here are the mutated foci.Position 42237118 doesn't seem to be mutated. Here are the mutated foci.Position 42238003 doesn't seem to be mutated. Here are the mutated foci.Position 50307593 doesn't seem to be mutated. Here are the mutated foci.Position 50313943 doesn't seem to be mutated. Here are the mutated foci.Position 50315078 doesn't seem to be mutated. Here are the mutated foci.Position 50327718 doesn't seem to be mutated. Here are the mutated foci.Position 50342648 doesn't seem to be mutated. Here are the mutated foci.Position 50345937 doesn't seem to be mutated. Here are the mutated foci.Position 50357028 doesn't seem to be mutated. Here are the mutated foci.Position 50382728 doesn't seem to be mutated. Here are the mutated foci.Position 50387707 doesn't seem to be mutated. Here are the mutated foci.Position 50393304 doesn't seem to be mutated. Here are the mutated foci.Position 55016555 doesn't seem to be mutated. Here are the mutated foci.Position 55016946 doesn't seem to be mutated. Here are the mutated foci.Position 55026883 doesn't seem to be mutated. Here are the mutated foci.Position 55032423 doesn't seem to be mutated. Here are the mutated foci.Position 55047618 doesn't seem to be mutated. Here are the mutated foci.Position 55093089 doesn't seem to be mutated. Here are the mutated foci.Position 55101381 doesn't seem to be mutated. Here are the mutated foci.Position 55109566 doesn't seem to be mutated. Here are the mutated foci.Position 55118497 doesn't seem to be mutated. Here are the mutated foci.Position 55131608 doesn't seem to be mutated. Here are the mutated foci.Position 55169567 doesn't seem to be mutated. Here are the mutated foci.Position 55202342 doesn't seem to be mutated. Here are the mutated foci.Position 66993007 doesn't seem to be mutated. Here are the mutated foci.Position 93109009 doesn't seem to be mutated. Here are the mutated foci.Position 93116202 doesn't seem to be mutated. Here are the mutated foci.Position 93133335 doesn't seem to be mutated. Here are the mutated foci.Position 93135796 doesn't seem to be mutated. Here are the mutated foci.Position 96142883 doesn't seem to be mutated. Here are the mutated foci.Position 96157417 doesn't seem to be mutated. Here are the mutated foci.Position 96159217 doesn't seem to be mutated. Here are the mutated foci.Position 96173051 doesn't seem to be mutated. Here are the mutated foci.Position 96173441 doesn't seem to be mutated. Here are the mutated foci.Position 96173607 doesn't seem to be mutated. Here are the mutated foci.Position 96197953 doesn't seem to be mutated. Here are the mutated foci.Position 96218840 doesn't seem to be mutated. Here are the mutated foci.Position 96294901 doesn't seem to be mutated. Here are the mutated foci.Position 96296483 doesn't seem to be mutated. Here are the mutated foci.Position 96297249 doesn't seem to be mutated. Here are the mutated foci.Position 96298082 doesn't seem to be mutated. Here are the mutated foci.Position 96300248 doesn't seem to be mutated. Here are the mutated foci.Position 116702501 doesn't seem to be mutated. Here are the mutated foci.Position 116708902 doesn't seem to be mutated. Here are the mutated foci.Position 116712406 doesn't seem to be mutated. Here are the mutated foci.Position 116731334 doesn't seem to be mutated. Here are the mutated foci.Position 116756473 doesn't seem to be mutated. Here are the mutated foci.Position 116800662 doesn't seem to be mutated. Here are the mutated foci.Position 116801987 doesn't seem to be mutated. Here are the mutated foci.Position 124823294 doesn't seem to be mutated. Here are the mutated foci.Position 124829516 doesn't seem to be mutated. Here are the mutated foci.Position 124831765 doesn't seem to be mutated. Here are the mutated foci.Position 124841072 doesn't seem to be mutated. Here are the mutated foci.Position 124865237 doesn't seem to be mutated. Here are the mutated foci.Position 124865526 doesn't seem to be mutated. Here are the mutated foci.Position 124876390 doesn't seem to be mutated. Here are the mutated foci.Position 124903283 doesn't seem to be mutated. Here are the mutated foci.Position 124903605 doesn't seem to be mutated. Here are the mutated foci.Position 124912250 doesn't seem to be mutated. Here are the mutated foci.Position 124927935 doesn't seem to be mutated. Here are the mutated foci.Position 124928252 doesn't seem to be mutated. Here are the mutated foci.Position 140730630 doesn't seem to be mutated. Here are the mutated foci.Position 140737596 doesn't seem to be mutated. Here are the mutated foci.Position 140739893 doesn't seem to be mutated. Here are the mutated foci.Position 140741724 doesn't seem to be mutated. Here are the mutated foci.Position 140771771 doesn't seem to be mutated. Here are the mutated foci.Position 140796325 doesn't seem to be mutated. Here are the mutated foci.Position 140830769 doesn't seem to be mutated. Here are the mutated foci.Position 140838581 doesn't seem to be mutated. Here are the mutated foci.Position 140847924 doesn't seem to be mutated. Here are the mutated foci.Position 140851443 doesn't seem to be mutated. Here are the mutated foci.Position 140854492 doesn't seem to be mutated. Here are the mutated foci.Position 140881908 doesn't seem to be mutated. Here are the mutated foci.Position 140900643 doesn't seem to be mutated. Here are the mutated foci.Position 140905940 doesn't seem to be mutated. Here are the mutated foci.Position 140917387 doesn't seem to be mutated. Here are the mutated foci.Position 142747514 doesn't seem to be mutated. Here are the mutated foci.Position 148836711 doesn't seem to be mutated. Here are the mutated foci.Position 148839965 doesn't seem to be mutated. Here are the mutated foci.Position 148848926 doesn't seem to be mutated. Here are the mutated foci.Position 148853418 doesn't seem to be mutated. Here are the mutated foci.Position 148868666 doesn't seem to be mutated. Here are the mutated foci.Position 148887635 doesn't seem to be mutated. Here are the mutated foci.Position 31060242 doesn't seem to be mutated. Here are the mutated foci.Position 31065308 doesn't seem to be mutated. Here are the mutated foci.Position 31065882 doesn't seem to be mutated. Here are the mutated foci.Position 31123625 doesn't seem to be mutated. Here are the mutated foci.Position 31133060 doesn't seem to be mutated. Here are the mutated foci.Position 38425146 doesn't seem to be mutated. Here are the mutated foci.Position 38427106 doesn't seem to be mutated. Here are the mutated foci.Position 38429964 doesn't seem to be mutated. Here are the mutated foci.Position 38430712 doesn't seem to be mutated. Here are the mutated foci.Position 38440576 doesn't seem to be mutated. Here are the mutated foci.Position 89935586 doesn't seem to be mutated. Here are the mutated foci.Position 89936139 doesn't seem to be mutated. Here are the mutated foci.Position 89936670 doesn't seem to be mutated. Here are the mutated foci.Position 89938374 doesn't seem to be mutated. Here are the mutated foci.Position 89954536 doesn't seem to be mutated. Here are the mutated foci.Position 89988164 doesn't seem to be mutated. Here are the mutated foci.Position 117800515 doesn't seem to be mutated. Here are the mutated foci.Position 117851379 doesn't seem to be mutated. Here are the mutated foci.Position 117872398 doesn't seem to be mutated. Here are the mutated foci.Position 117873834 doesn't seem to be mutated. Here are the mutated foci.Position 117898962 doesn't seem to be mutated. Here are the mutated foci.Position 117912552 doesn't seem to be mutated. Here are the mutated foci.Position 117919194 doesn't seem to be mutated. Here are the mutated foci.Position 118004526 doesn't seem to be mutated. Here are the mutated foci.Position 118045792 doesn't seem to be mutated. Here are the mutated foci.Position 118081704 doesn't seem to be mutated. Here are the mutated foci.Position 219897 doesn't seem to be mutated. Here are the mutated foci.Position 242901 doesn't seem to be mutated. Here are the mutated foci.Position 243663 doesn't seem to be mutated. Here are the mutated foci.Position 322812 doesn't seem to be mutated. Here are the mutated foci.Position 334017 doesn't seem to be mutated. Here are the mutated foci.Position 356058 doesn't seem to be mutated. Here are the mutated foci.Position 371350 doesn't seem to be mutated. Here are the mutated foci.Position 409105 doesn't seem to be mutated. Here are the mutated foci.Position 412050 doesn't seem to be mutated. Here are the mutated foci.Position 414197 doesn't seem to be mutated. Here are the mutated foci.Position 455850 doesn't seem to be mutated. Here are the mutated foci.Position 2029070 doesn't seem to be mutated. Here are the mutated foci.Position 2030408 doesn't seem to be mutated. Here are the mutated foci.Position 2045826 doesn't seem to be mutated. Here are the mutated foci.Position 2128691 doesn't seem to be mutated. Here are the mutated foci.Position 2133635 doesn't seem to be mutated. Here are the mutated foci.Position 2133774 doesn't seem to be mutated. Here are the mutated foci.Position 2146179 doesn't seem to be mutated. Here are the mutated foci.Position 2157283 doesn't seem to be mutated. Here are the mutated foci.Position 2157814 doesn't seem to be mutated. Here are the mutated foci.Position 2176329 doesn't seem to be mutated. Here are the mutated foci.Position 21814296 doesn't seem to be mutated. Here are the mutated foci.Position 21833198 doesn't seem to be mutated. Here are the mutated foci.Position 36832401 doesn't seem to be mutated. Here are the mutated foci.Position 36860035 doesn't seem to be mutated. Here are the mutated foci.Position 36869334 doesn't seem to be mutated. Here are the mutated foci.Position 36876710 doesn't seem to be mutated. Here are the mutated foci.Position 36889942 doesn't seem to be mutated. Here are the mutated foci.Position 36898831 doesn't seem to be mutated. Here are the mutated foci.Position 36909293 doesn't seem to be mutated. Here are the mutated foci.Position 36917684 doesn't seem to be mutated. Here are the mutated foci.Position 36983617 doesn't seem to be mutated. Here are the mutated foci.Position 36985597 doesn't seem to be mutated. Here are the mutated foci.Position 37009042 doesn't seem to be mutated. Here are the mutated foci.Position 37034107 doesn't seem to be mutated. Here are the mutated foci.Position 37034882 doesn't seem to be mutated. Here are the mutated foci.Position 95104883 doesn't seem to be mutated. Here are the mutated foci.Position 95111011 doesn't seem to be mutated. Here are the mutated foci.Position 95121572 doesn't seem to be mutated. Here are the mutated foci.Position 95149074 doesn't seem to be mutated. Here are the mutated foci.Position 95154821 doesn't seem to be mutated. Here are the mutated foci.Position 95159034 doesn't seem to be mutated. Here are the mutated foci.Position 95190501 doesn't seem to be mutated. Here are the mutated foci.Position 95201211 doesn't seem to be mutated. Here are the mutated foci.Position 95222531 doesn't seem to be mutated. Here are the mutated foci.Position 95347466 doesn't seem to be mutated. Here are the mutated foci.Position 95348802 doesn't seem to be mutated. Here are the mutated foci.Position 95386677 doesn't seem to be mutated. Here are the mutated foci.Position 95421937 doesn't seem to be mutated. Here are the mutated foci.Position 95456483 doesn't seem to be mutated. Here are the mutated foci.Position 95468642 doesn't seem to be mutated. Here are the mutated foci.Position 97678463 doesn't seem to be mutated. Here are the mutated foci.Position 108903675 doesn't seem to be mutated. Here are the mutated foci.Position 108906965 doesn't seem to be mutated. Here are the mutated foci.Position 132898823 doesn't seem to be mutated. Here are the mutated foci.Position 132908902 doesn't seem to be mutated. Here are the mutated foci.Position 132910302 doesn't seem to be mutated. Here are the mutated foci.Position 132926301 doesn't seem to be mutated. Here are the mutated foci.Position 43123873 doesn't seem to be mutated. Here are the mutated foci.Position 61900966 doesn't seem to be mutated. Here are the mutated foci.Position 61901974 doesn't seem to be mutated. Here are the mutated foci.Position 61902701 doesn't seem to be mutated. Here are the mutated foci.Position 61938462 doesn't seem to be mutated. Here are the mutated foci.Position 61943741 doesn't seem to be mutated. Here are the mutated foci.Position 61969420 doesn't seem to be mutated. Here are the mutated foci.Position 62001532 doesn't seem to be mutated. Here are the mutated foci.Position 62035217 doesn't seem to be mutated. Here are the mutated foci.Position 62074084 doesn't seem to be mutated. Here are the mutated foci.Position 62076562 doesn't seem to be mutated. Here are the mutated foci.Position 62079002 doesn't seem to be mutated. Here are the mutated foci.Position 62087533 doesn't seem to be mutated. Here are the mutated foci.Position 86774436 doesn't seem to be mutated. Here are the mutated foci.Position 86799696 doesn't seem to be mutated. Here are the mutated foci.Position 86828740 doesn't seem to be mutated. Here are the mutated foci.Position 86880829 doesn't seem to be mutated. Here are the mutated foci.Position 86881391 doesn't seem to be mutated. Here are the mutated foci.Position 86882597 doesn't seem to be mutated. Here are the mutated foci.Position 87880163 doesn't seem to be mutated. Here are the mutated foci.Position 87920827 doesn't seem to be mutated. Here are the mutated foci.Position 87927345 doesn't seem to be mutated. Here are the mutated foci.Position 89001173 doesn't seem to be mutated. Here are the mutated foci.Position 89007438 doesn't seem to be mutated. Here are the mutated foci.Position 102515736 doesn't seem to be mutated. Here are the mutated foci.Position 102517124 doesn't seem to be mutated. Here are the mutated foci.Position 102549819 doesn't seem to be mutated. Here are the mutated foci.Position 102557520 doesn't seem to be mutated. Here are the mutated foci.Position 102560841 doesn't seem to be mutated. Here are the mutated foci.Position 102576332 doesn't seem to be mutated. Here are the mutated foci.Position 102603632 doesn't seem to be mutated. Here are the mutated foci.Position 102609395 doesn't seem to be mutated. Here are the mutated foci.Position 102627695 doesn't seem to be mutated. Here are the mutated foci.Position 102636075 doesn't seem to be mutated. Here are the mutated foci.Position 110936096 doesn't seem to be mutated. Here are the mutated foci.Position 110948912 doesn't seem to be mutated. Here are the mutated foci.Position 110952451 doesn't seem to be mutated. Here are the mutated foci.Position 110974715 doesn't seem to be mutated. Here are the mutated foci.Position 113574491 doesn't seem to be mutated. Here are the mutated foci.Position 113577602 doesn't seem to be mutated. Here are the mutated foci.Position 121489392 doesn't seem to be mutated. Here are the mutated foci.Position 121505754 doesn't seem to be mutated. Here are the mutated foci.Position 121507654 doesn't seem to be mutated. Here are the mutated foci.Position 121508303 doesn't seem to be mutated. Here are the mutated foci.Position 121535181 doesn't seem to be mutated. Here are the mutated foci.Position 121553808 doesn't seem to be mutated. Here are the mutated foci.Position 121559367 doesn't seem to be mutated. Here are the mutated foci.Position 121562285 doesn't seem to be mutated. Here are the mutated foci.Position 121563767 doesn't seem to be mutated. Here are the mutated foci.Position 121579751 doesn't seem to be mutated. Here are the mutated foci.Position 121588962 doesn't seem to be mutated. Here are the mutated foci.Position 121598270 doesn't seem to be mutated. Here are the mutated foci.Position 2885649 doesn't seem to be mutated. Here are the mutated foci.Position 22624194 doesn't seem to be mutated. Here are the mutated foci.Position 32386163 doesn't seem to be mutated. Here are the mutated foci.Position 32395413 doesn't seem to be mutated. Here are the mutated foci.Position 32401279 doesn't seem to be mutated. Here are the mutated foci.Position 32404483 doesn't seem to be mutated. Here are the mutated foci.Position 32409071 doesn't seem to be mutated. Here are the mutated foci.Position 32411312 doesn't seem to be mutated. Here are the mutated foci.Position 32413524 doesn't seem to be mutated. Here are the mutated foci.Position 32427305 doesn't seem to be mutated. Here are the mutated foci.Position 44097762 doesn't seem to be mutated. Here are the mutated foci.Position 44123350 doesn't seem to be mutated. Here are the mutated foci.Position 44179050 doesn't seem to be mutated. Here are the mutated foci.Position 44188946 doesn't seem to be mutated. Here are the mutated foci.Position 44204165 doesn't seem to be mutated. Here are the mutated foci.Position 44209193 doesn't seem to be mutated. Here are the mutated foci.Position 44241724 doesn't seem to be mutated. Here are the mutated foci.Position 44242171 doesn't seem to be mutated. Here are the mutated foci.Position 44243054 doesn't seem to be mutated. Here are the mutated foci.Position 64812409 doesn't seem to be mutated. Here are the mutated foci.Position 67480683 doesn't seem to be mutated. Here are the mutated foci.Position 67489557 doesn't seem to be mutated. Here are the mutated foci.Position 108271229 doesn't seem to be mutated. Here are the mutated foci.Position 108342093 doesn't seem to be mutated. Here are the mutated foci.Position 112090695 doesn't seem to be mutated. Here are the mutated foci.Position 119221245 doesn't seem to be mutated. Here are the mutated foci.Position 119235667 doesn't seem to be mutated. Here are the mutated foci.Position 119268653 doesn't seem to be mutated. Here are the mutated foci.Position 11670739 doesn't seem to be mutated. Here are the mutated foci.Position 11699709 doesn't seem to be mutated. Here are the mutated foci.Position 11720455 doesn't seem to be mutated. Here are the mutated foci.Position 11740939 doesn't seem to be mutated. Here are the mutated foci.Position 11742302 doesn't seem to be mutated. Here are the mutated foci.Position 11747320 doesn't seem to be mutated. Here are the mutated foci.Position 11797849 doesn't seem to be mutated. Here are the mutated foci.Position 11800937 doesn't seem to be mutated. Here are the mutated foci.Position 11808445 doesn't seem to be mutated. Here are the mutated foci.Position 11880229 doesn't seem to be mutated. Here are the mutated foci.Position 11883651 doesn't seem to be mutated. Here are the mutated foci.Position 12713812 doesn't seem to be mutated. Here are the mutated foci.Position 25218832 doesn't seem to be mutated. Here are the mutated foci.Position 111401598 doesn't seem to be mutated. Here are the mutated foci.Position 111439042 doesn't seem to be mutated. Here are the mutated foci.Position 111439516 doesn't seem to be mutated. Here are the mutated foci.Position 112433957 doesn't seem to be mutated. Here are the mutated foci.Position 112436710 doesn't seem to be mutated. Here are the mutated foci.Position 112440966 doesn't seem to be mutated. Here are the mutated foci.Position 112441845 doesn't seem to be mutated. Here are the mutated foci.Position 112471378 doesn't seem to be mutated. Here are the mutated foci.Position 112506947 doesn't seem to be mutated. Here are the mutated foci.Position 112510364 doesn't seem to be mutated. Here are the mutated foci.Position 132628228 doesn't seem to be mutated. Here are the mutated foci.Position 132635905 doesn't seem to be mutated. Here are the mutated foci.Position 132642943 doesn't seem to be mutated. Here are the mutated foci.Position 20194774 doesn't seem to be mutated. Here are the mutated foci.Position 32350753 doesn't seem to be mutated. Here are the mutated foci.Position 32373472 doesn't seem to be mutated. Here are the mutated foci.Position 32390339 doesn't seem to be mutated. Here are the mutated foci.Position 48312789 doesn't seem to be mutated. Here are the mutated foci.Position 48339123 doesn't seem to be mutated. Here are the mutated foci.Position 48343972 doesn't seem to be mutated. Here are the mutated foci.Position 48357089 doesn't seem to be mutated. Here are the mutated foci.Position 48375478 doesn't seem to be mutated. Here are the mutated foci.Position 48432058 doesn't seem to be mutated. Here are the mutated foci.Position 48434742 doesn't seem to be mutated. Here are the mutated foci.Position 48556593 doesn't seem to be mutated. Here are the mutated foci.Position 48557684 doesn't seem to be mutated. Here are the mutated foci.Position 48564006 doesn't seem to be mutated. Here are the mutated foci.Position 48564899 doesn't seem to be mutated. Here are the mutated foci.Position 77892289 doesn't seem to be mutated. Here are the mutated foci.Position 102841565 doesn't seem to be mutated. Here are the mutated foci.Position 45141074 doesn't seem to be mutated. Here are the mutated foci.Position 45172584 doesn't seem to be mutated. Here are the mutated foci.Position 45179623 doesn't seem to be mutated. Here are the mutated foci.Position 45199662 doesn't seem to be mutated. Here are the mutated foci.Position 45203092 doesn't seem to be mutated. Here are the mutated foci.Position 50127817 doesn't seem to be mutated. Here are the mutated foci.Position 50183762 doesn't seem to be mutated. Here are the mutated foci.Position 50190182 doesn't seem to be mutated. Here are the mutated foci.Position 50195463 doesn't seem to be mutated. Here are the mutated foci.Position 50207901 doesn't seem to be mutated. Here are the mutated foci.Position 50224364 doesn't seem to be mutated. Here are the mutated foci.Position 50228044 doesn't seem to be mutated. Here are the mutated foci.Position 65071710 doesn't seem to be mutated. Here are the mutated foci.Position 65072235 doesn't seem to be mutated. Here are the mutated foci.Position 65106031 doesn't seem to be mutated. Here are the mutated foci.Position 95101716 doesn't seem to be mutated. Here are the mutated foci.Position 95103234 doesn't seem to be mutated. Here are the mutated foci.Position 95106987 doesn't seem to be mutated. Here are the mutated foci.Position 95122512 doesn't seem to be mutated. Here are the mutated foci.Position 95123010 doesn't seem to be mutated. Here are the mutated foci.Position 95125257 doesn't seem to be mutated. Here are the mutated foci.Position 95134145 doesn't seem to be mutated. Here are the mutated foci.Position 95136086 doesn't seem to be mutated. Here are the mutated foci.Position 32741421 doesn't seem to be mutated. Here are the mutated foci.Position 38277194 doesn't seem to be mutated. Here are the mutated foci.Position 38278394 doesn't seem to be mutated. Here are the mutated foci.Position 38280237 doesn't seem to be mutated. Here are the mutated foci.Position 38291438 doesn't seem to be mutated. Here are the mutated foci.Position 38294731 doesn't seem to be mutated. Here are the mutated foci.Position 38320488 doesn't seem to be mutated. Here are the mutated foci.Position 38322885 doesn't seem to be mutated. Here are the mutated foci.Position 38353133 doesn't seem to be mutated. Here are the mutated foci.Position 40174269 doesn't seem to be mutated. Here are the mutated foci.Position 40177921 doesn't seem to be mutated. Here are the mutated foci.Position 40191860 doesn't seem to be mutated. Here are the mutated foci.Position 40195831 doesn't seem to be mutated. Here are the mutated foci.Position 40214749 doesn't seem to be mutated. Here are the mutated foci.Position 40691378 doesn't seem to be mutated. Here are the mutated foci.Position 40730348 doesn't seem to be mutated. Here are the mutated foci.Position 40730522 doesn't seem to be mutated. Here are the mutated foci.Position 66392861 doesn't seem to be mutated. Here are the mutated foci.Position 66408770 doesn't seem to be mutated. Here are the mutated foci.Position 66414782 doesn't seem to be mutated. Here are the mutated foci.Position 66415476 doesn't seem to be mutated. Here are the mutated foci.Position 80160342 doesn't seem to be mutated. Here are the mutated foci.Position 80161272 doesn't seem to be mutated. Here are the mutated foci.Position 80168121 doesn't seem to be mutated. Here are the mutated foci.Position 80170958 doesn't seem to be mutated. Here are the mutated foci.Position 89252300 doesn't seem to be mutated. Here are the mutated foci.Position 89267333 doesn't seem to be mutated. Here are the mutated foci.Position 89299529 doesn't seem to be mutated. Here are the mutated foci.Position 89308978 doesn't seem to be mutated. Here are the mutated foci.Position 89309378 doesn't seem to be mutated. Here are the mutated foci.Position 90774744 doesn't seem to be mutated. Here are the mutated foci.Position 90774808 doesn't seem to be mutated. Here are the mutated foci.Position 90776323 doesn't seem to be mutated. Here are the mutated foci.Position 90777207 doesn't seem to be mutated. Here are the mutated foci.Position 2061047 doesn't seem to be mutated. Here are the mutated foci.Position 2075103 doesn't seem to be mutated. Here are the mutated foci.Position 2083393 doesn't seem to be mutated. Here are the mutated foci.Position 3579260 doesn't seem to be mutated. Here are the mutated foci.Position 3725284 doesn't seem to be mutated. Here are the mutated foci.Position 3748766 doesn't seem to be mutated. Here are the mutated foci.Position 3865946 doesn't seem to be mutated. Here are the mutated foci.Position 3884041 doesn't seem to be mutated. Here are the mutated foci.Position 13923090 doesn't seem to be mutated. Here are the mutated foci.Position 23617581 doesn't seem to be mutated. Here are the mutated foci.Position 23637328 doesn't seem to be mutated. Here are the mutated foci.Position 50740606 doesn't seem to be mutated. Here are the mutated foci.Position 50742402 doesn't seem to be mutated. Here are the mutated foci.Position 50753016 doesn't seem to be mutated. Here are the mutated foci.Position 50777274 doesn't seem to be mutated. Here are the mutated foci.Position 50793921 doesn't seem to be mutated. Here are the mutated foci.Position 50801717 doesn't seem to be mutated. Here are the mutated foci.Position 68739124 doesn't seem to be mutated. Here are the mutated foci.Position 68760186 doesn't seem to be mutated. Here are the mutated foci.Position 68760407 doesn't seem to be mutated. Here are the mutated foci.Position 68794059 doesn't seem to be mutated. Here are the mutated foci.Position 68819296 doesn't seem to be mutated. Here are the mutated foci.Position 68825409 doesn't seem to be mutated. Here are the mutated foci.Position 89746772 doesn't seem to be mutated. Here are the mutated foci.Position 89750796 doesn't seem to be mutated. Here are the mutated foci.Position 89771356 doesn't seem to be mutated. Here are the mutated foci.Position 89775968 doesn't seem to be mutated. Here are the mutated foci.Position 89776593 doesn't seem to be mutated. Here are the mutated foci.Position 89780930 doesn't seem to be mutated. Here are the mutated foci.Position 89787162 doesn't seem to be mutated. Here are the mutated foci.Position 89790268 doesn't seem to be mutated. Here are the mutated foci.Position 89801798 doesn't seem to be mutated. Here are the mutated foci.Position 89820439 doesn't seem to be mutated. Here are the mutated foci.Position 7668311 doesn't seem to be mutated. Here are the mutated foci.Position 7670326 doesn't seem to be mutated. Here are the mutated foci.Position 7687253 doesn't seem to be mutated. Here are the mutated foci.Position 7693681 doesn't seem to be mutated. Here are the mutated foci.Position 31102472 doesn't seem to be mutated. Here are the mutated foci.Position 31149955 doesn't seem to be mutated. Here are the mutated foci.Position 31197052 doesn't seem to be mutated. Here are the mutated foci.Position 31205903 doesn't seem to be mutated. Here are the mutated foci.Position 31206417 doesn't seem to be mutated. Here are the mutated foci.Position 31220707 doesn't seem to be mutated. Here are the mutated foci.Position 31229794 doesn't seem to be mutated. Here are the mutated foci.Position 31236058 doesn't seem to be mutated. Here are the mutated foci.Position 31275653 doesn't seem to be mutated. Here are the mutated foci.Position 31280300 doesn't seem to be mutated. Here are the mutated foci.Position 31294576 doesn't seem to be mutated. Here are the mutated foci.Position 31338053 doesn't seem to be mutated. Here are the mutated foci.Position 35103800 doesn't seem to be mutated. Here are the mutated foci.Position 39204073 doesn't seem to be mutated. Here are the mutated foci.Position 39207041 doesn't seem to be mutated. Here are the mutated foci.Position 40636569 doesn't seem to be mutated. Here are the mutated foci.Position 40637457 doesn't seem to be mutated. Here are the mutated foci.Position 40642307 doesn't seem to be mutated. Here are the mutated foci.Position 40653184 doesn't seem to be mutated. Here are the mutated foci.Position 42324129 doesn't seem to be mutated. Here are the mutated foci.Position 42335130 doesn't seem to be mutated. Here are the mutated foci.Position 42337020 doesn't seem to be mutated. Here are the mutated foci.Position 42389618 doesn't seem to be mutated. Here are the mutated foci.Position 42390904 doesn't seem to be mutated. Here are the mutated foci.Position 42392639 doesn't seem to be mutated. Here are the mutated foci.Position 43051371 doesn't seem to be mutated. Here are the mutated foci.Position 43060073 doesn't seem to be mutated. Here are the mutated foci.Position 43084743 doesn't seem to be mutated. Here are the mutated foci.Position 43085360 doesn't seem to be mutated. Here are the mutated foci.Position 43103909 doesn't seem to be mutated. Here are the mutated foci.Position 43107272 doesn't seem to be mutated. Here are the mutated foci.Position 43111530 doesn't seem to be mutated. Here are the mutated foci.Position 43115502 doesn't seem to be mutated. Here are the mutated foci.Position 43126810 doesn't seem to be mutated. Here are the mutated foci.Position 44070425 doesn't seem to be mutated. Here are the mutated foci.Position 48727446 doesn't seem to be mutated. Here are the mutated foci.Position 58697038 doesn't seem to be mutated. Here are the mutated foci.Position 58710247 doesn't seem to be mutated. Here are the mutated foci.Position 59042919 doesn't seem to be mutated. Here are the mutated foci.Position 59064408 doesn't seem to be mutated. Here are the mutated foci.Position 59071186 doesn't seem to be mutated. Here are the mutated foci.Position 59077655 doesn't seem to be mutated. Here are the mutated foci.Position 59098343 doesn't seem to be mutated. Here are the mutated foci.Position 61688449 doesn't seem to be mutated. Here are the mutated foci.Position 61694201 doesn't seem to be mutated. Here are the mutated foci.Position 61711859 doesn't seem to be mutated. Here are the mutated foci.Position 61717067 doesn't seem to be mutated. Here are the mutated foci.Position 61739564 doesn't seem to be mutated. Here are the mutated foci.Position 61757994 doesn't seem to be mutated. Here are the mutated foci.Position 61758275 doesn't seem to be mutated. Here are the mutated foci.Position 61788822 doesn't seem to be mutated. Here are the mutated foci.Position 61807912 doesn't seem to be mutated. Here are the mutated foci.Position 61863175 doesn't seem to be mutated. Here are the mutated foci.Position 65531986 doesn't seem to be mutated. Here are the mutated foci.Position 65534936 doesn't seem to be mutated. Here are the mutated foci.Position 65539637 doesn't seem to be mutated. Here are the mutated foci.Position 65542645 doesn't seem to be mutated. Here are the mutated foci.Position 76474535 doesn't seem to be mutated. Here are the mutated foci.Position 76475841 doesn't seem to be mutated. Here are the mutated foci.Position 76482868 doesn't seem to be mutated. Here are the mutated foci.Position 76486308 doesn't seem to be mutated. Here are the mutated foci.Position 76494022 doesn't seem to be mutated. Here are the mutated foci.Position 51038252 doesn't seem to be mutated. Here are the mutated foci.Position 51043190 doesn't seem to be mutated. Here are the mutated foci.Position 51068315 doesn't seem to be mutated. Here are the mutated foci.Position 51068904 doesn't seem to be mutated. Here are the mutated foci.Position 51084002 doesn't seem to be mutated. Here are the mutated foci.Position 51087529 doesn't seem to be mutated. Here are the mutated foci.Position 1204758 doesn't seem to be mutated. Here are the mutated foci.Position 1212061 doesn't seem to be mutated. Here are the mutated foci.Position 4091357 doesn't seem to be mutated. Here are the mutated foci.Position 10999924 doesn't seem to be mutated. Here are the mutated foci.Position 11004812 doesn't seem to be mutated. Here are the mutated foci.Position 11033373 doesn't seem to be mutated. Here are the mutated foci.Position 11041039 doesn't seem to be mutated. Here are the mutated foci.Position 11060803 doesn't seem to be mutated. Here are the mutated foci.Position 11066272 doesn't seem to be mutated. Here are the mutated foci.Position 11071656 doesn't seem to be mutated. Here are the mutated foci.Position 11074580 doesn't seem to be mutated. Here are the mutated foci.Position 41859443 doesn't seem to be mutated. Here are the mutated foci.Position 45358355 doesn't seem to be mutated. Here are the mutated foci.Position 45364568 doesn't seem to be mutated. Here are the mutated foci.Position 45422756 doesn't seem to be mutated. Here are the mutated foci.Position 50404265 doesn't seem to be mutated. Here are the mutated foci.Position 32386425 doesn't seem to be mutated. Here are the mutated foci.Position 32398615 doesn't seem to be mutated. Here are the mutated foci.Position 32421255 doesn't seem to be mutated. Here are the mutated foci.Position 58848771 doesn't seem to be mutated. Here are the mutated foci.Position 58859658 doesn't seem to be mutated. Here are the mutated foci.Position 58868721 doesn't seem to be mutated. Here are the mutated foci.Position 34801515 doesn't seem to be mutated. Here are the mutated foci.Position 34809839 doesn't seem to be mutated. Here are the mutated foci.Position 34834928 doesn't seem to be mutated. Here are the mutated foci.Position 34843508 doesn't seem to be mutated. Here are the mutated foci.Position 34847047 doesn't seem to be mutated. Here are the mutated foci.Position 34854908 doesn't seem to be mutated. Here are the mutated foci.Position 34910384 doesn't seem to be mutated. Here are the mutated foci.Position 34940926 doesn't seem to be mutated. Here are the mutated foci.Position 34941831 doesn't seem to be mutated. Here are the mutated foci.Position 34943948 doesn't seem to be mutated. Here are the mutated foci.Position 34981561 doesn't seem to be mutated. Here are the mutated foci.Position 35002173 doesn't seem to be mutated. Here are the mutated foci.Position 35022952 doesn't seem to be mutated. Here are the mutated foci.Position 35063668 doesn't seem to be mutated. Here are the mutated foci.Position 35065415 doesn't seem to be mutated. Here are the mutated foci.Position 35110967 doesn't seem to be mutated. Here are the mutated foci.Position 35146903 doesn't seem to be mutated. Here are the mutated foci.Position 35184175 doesn't seem to be mutated. Here are the mutated foci.Position 35196076 doesn't seem to be mutated. Here are the mutated foci.Position 35212799 doesn't seem to be mutated. Here are the mutated foci.Position 35353129 doesn't seem to be mutated. Here are the mutated foci.Position 35359091 doesn't seem to be mutated. Here are the mutated foci.Position 35361329 doesn't seem to be mutated. Here are the mutated foci.Position 35362398 doesn't seem to be mutated. Here are the mutated foci.Position 35409709 doesn't seem to be mutated. Here are the mutated foci.Position 35421636 doesn't seem to be mutated. Here are the mutated foci.Position 35430224 doesn't seem to be mutated. Here are the mutated foci.Position 35454965 doesn't seem to be mutated. Here are the mutated foci.Position 35478521 doesn't seem to be mutated. Here are the mutated foci.Position 35482144 doesn't seem to be mutated. Here are the mutated foci.Position 35498922 doesn't seem to be mutated. Here are the mutated foci.Position 35528771 doesn't seem to be mutated. Here are the mutated foci.Position 35571658 doesn't seem to be mutated. Here are the mutated foci.Position 35640715 doesn't seem to be mutated. Here are the mutated foci.Position 35676424 doesn't seem to be mutated. Here are the mutated foci.Position 35691394 doesn't seem to be mutated. Here are the mutated foci.Position 35693125 doesn't seem to be mutated. Here are the mutated foci.Position 35706358 doesn't seem to be mutated. Here are the mutated foci.Position 35738853 doesn't seem to be mutated. Here are the mutated foci.Position 35821746 doesn't seem to be mutated. Here are the mutated foci.Position 35832712 doesn't seem to be mutated. Here are the mutated foci.Position 35841556 doesn't seem to be mutated. Here are the mutated foci.Position 35867447 doesn't seem to be mutated. Here are the mutated foci.Position 35899776 doesn't seem to be mutated. Here are the mutated foci.Position 35913901 doesn't seem to be mutated. Here are the mutated foci.Position 35914509 doesn't seem to be mutated. Here are the mutated foci.Position 20991671 doesn't seem to be mutated. Here are the mutated foci.Position 28683495 doesn't seem to be mutated. Here are the mutated foci.Position 28716050 doesn't seem to be mutated. Here are the mutated foci.Position 28737031 doesn't seem to be mutated. Here are the mutated foci.Position 29600141 doesn't seem to be mutated. Here are the mutated foci.Position 29619057 doesn't seem to be mutated. Here are the mutated foci.Position 29622700 doesn't seem to be mutated. Here are the mutated foci.Position 29637691 doesn't seem to be mutated. Here are the mutated foci.Position 29640381 doesn't seem to be mutated. Here are the mutated foci.Position 29655942 doesn't seem to be mutated. Here are the mutated foci.Position 29663400 doesn't seem to be mutated. Here are the mutated foci.Position 29668769 doesn't seem to be mutated. Here are the mutated foci.Position 29676340 doesn't seem to be mutated. Here are the mutated foci.Position 29680854 doesn't seem to be mutated. Here are the mutated foci.Position 29691420 doesn't seem to be mutated. Here are the mutated foci.Position 29694294 doesn't seem to be mutated. Here are the mutated foci.Position 41116148 doesn't seem to be mutated. Here are the mutated foci.Position 41130255 doesn't seem to be mutated. Here are the mutated foci.Position 41145922 doesn't seem to be mutated. Here are the mutated foci.Position 41147304 doesn't seem to be mutated. Here are the mutated foci.Position 41154130 doesn't seem to be mutated. Here are the mutated foci.Position 41158130 doesn't seem to be mutated. Here are the mutated foci.Position 14842802 doesn't seem to be mutated. Here are the mutated foci.Position 14859832 doesn't seem to be mutated. Here are the mutated foci.Position 48674885 doesn't seem to be mutated. Here are the mutated foci.Position 48678096 doesn't seem to be mutated. Here are the mutated foci.Position 48683110 doesn't seem to be mutated. Here are the mutated foci.Position 48688736 doesn't seem to be mutated. Here are the mutated foci.Position 77502152 doesn't seem to be mutated. Here are the mutated foci.Position 77513609 doesn't seem to be mutated. Here are the mutated foci.Position 77516005 doesn't seem to be mutated. Here are the mutated foci.Position 77533255 doesn't seem to be mutated. Here are the mutated foci.Position 77555884 doesn't seem to be mutated. Here are the mutated foci.Position 77604766 doesn't seem to be mutated. Here are the mutated foci.Position 77622273 doesn't seem to be mutated. Here are the mutated foci.Position 77625216 doesn't seem to be mutated. Here are the mutated foci.Position 77645119 doesn't seem to be mutated. Here are the mutated foci.Position 77650016 doesn't seem to be mutated. Here are the mutated foci.Position 77654605 doesn't seem to be mutated. Here are the mutated foci.Position 77666931 doesn't seem to be mutated. Here are the mutated foci.Position 77670755 doesn't seem to be mutated. Here are the mutated foci.Position 77695414 doesn't seem to be mutated. Here are the mutated foci.Position 77696844 doesn't seem to be mutated. Here are the mutated foci.Position 77716323 doesn't seem to be mutated. Here are the mutated foci.Position 77722361 doesn't seem to be mutated. Here are the mutated foci.Position 77740077 doesn't seem to be mutated. Here are the mutated foci.Position 77740404 doesn't seem to be mutated. Here are the mutated foci.Position 77768369 doesn't seem to be mutated. Here are the mutated foci.Position 77785766 doesn't seem to be mutated. Here are the mutated foci.Position 77790798 doesn't seem to be mutated. Here are the mutated foci.Position 124343776 doesn't seem to be mutated. Here are the mutated foci.Position 124345109 doesn't seem to be mutated. Here are the mutated foci.Position 124351980 doesn't seem to be mutated. Here are the mutated foci.Position 124368426 doesn't seem to be mutated. Here are the mutated foci.Position 133301005 doesn't seem to be mutated. Here are the mutated foci.Position 133316957 doesn't seem to be mutated. Here are the mutated foci.Position 133329488 doesn't seem to be mutated. Here are the mutated foci.Position 133342110 doesn't seem to be mutated. Here are the mutated foci.Position 133359523 doesn't seem to be mutated. Here are the mutated foci.Position 133360922 doesn't seem to be mutated. Here are the mutated foci.Position 133385266 doesn't seem to be mutated. Here are the mutated foci.Position 133392127 doesn't seem to be mutated. Here are the mutated foci.Position 133410481 doesn't seem to be mutated. Here are the mutated foci.Position 133541258 doesn't seem to be mutated. Here are the mutated foci.Position 133547386 doesn't seem to be mutated. Here are the mutated foci.Position 133578365 doesn't seem to be mutated. Here are the mutated foci.Position 133578683 doesn't seem to be mutated. Here are the mutated foci.Position 133600188 doesn't seem to be mutated. Here are the mutated foci.Position 133624856 doesn't seem to be mutated. Here are the mutated foci.Position 133625244 doesn't seem to be mutated. Here are the mutated foci.Position 133639417 doesn't seem to be mutated. Here are the mutated foci.Position 133649042 doesn't seem to be mutated. Here are the mutated foci.Position 133666983 doesn't seem to be mutated. Here are the mutated foci.Position 133671034 doesn't seem to be mutated. Here are the mutated foci.Position 133699539 doesn't seem to be mutated. Here are the mutated foci.Position 133706610 doesn't seem to be mutated. Here are the mutated foci.Position 133721353 doesn't seem to be mutated. Here are the mutated foci.Position 133722637 doesn't seem to be mutated. Here are the mutated foci.Position 133761248 doesn't seem to be mutated. Here are the mutated foci.Position 133766084 doesn't seem to be mutated. Here are the mutated foci.Position 133820387 doesn't seem to be mutated. Here are the mutated foci.Position 133836860 doesn't seem to be mutated. Here are the mutated foci.Position 133837416 doesn't seem to be mutated. Here are the mutated foci.Position 133840101 doesn't seem to be mutated. Here are the mutated foci.Position 133850814 doesn't seem to be mutated. Here are the mutated foci.Position 133855514 doesn't seem to be mutated. Here are the mutated foci.Position 133859414 doesn't seem to be mutated. Here are the mutated foci.Position 133874745 doesn't seem to be mutated. Here are the mutated foci.Position 133890372 doesn't seem to be mutated. Here are the mutated foci.Position 133890684 doesn't seem to be mutated. Here are the mutated foci.Position 133926420 doesn't seem to be mutated. Here are the mutated foci.Position 133927480 doesn't seem to be mutated. Here are the mutated foci.Position 133945374 doesn't seem to be mutated. Here are the mutated foci.Position 133945821 doesn't seem to be mutated. Here are the mutated foci.Position 133951621 doesn't seem to be mutated. Here are the mutated foci.Position 133957786 doesn't seem to be mutated. Here are the mutated foci.Position 133970362 doesn't seem to be mutated. Here are the mutated foci.Position 154767711 doesn't seem to be mutated. Here are the mutated foci.Position 154771326 doesn't seem to be mutated. Here are the mutated foci.Position 154777599 doesn't seem to be mutated. Here are the mutated foci.Position 10339754 doesn't seem to be mutated. Here are the mutated foci.Position 144369634 doesn't seem to be mutated. Here are the mutated foci.Position 41742433 doesn't seem to be mutated. Here are the mutated foci.Position 54658703 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 119084424 doesn't seem to be mutated. Here are the mutated foci.Position 89252585 doesn't seem to be mutated. Here are the mutated foci.Position 4102673 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 77543957 doesn't seem to be mutated. Here are the mutated foci.Position 77734297 doesn't seem to be mutated. Here are the mutated foci.Position 54246910 doesn't seem to be mutated. Here are the mutated foci.Position 66993885 doesn't seem to be mutated. Here are the mutated foci.Position 108270646 doesn't seem to be mutated. Here are the mutated foci.Position 29289286 doesn't seem to be mutated. Here are the mutated foci.Position 232319491 doesn't seem to be mutated. Here are the mutated foci.Position 69814659 doesn't seem to be mutated. Here are the mutated foci.Position 132620795 doesn't seem to be mutated. Here are the mutated foci.Position 138771887 doesn't seem to be mutated. Here are the mutated foci.Position 148885639 doesn't seem to be mutated. Here are the mutated foci.Position 86889293 doesn't seem to be mutated. Here are the mutated foci.Position 25245685 doesn't seem to be mutated. Here are the mutated foci.Position 3858371 doesn't seem to be mutated. Here are the mutated foci.Position 853540 doesn't seem to be mutated. Here are the mutated foci.Position 35258425 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 77511555 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 86908454 doesn't seem to be mutated. Here are the mutated foci.Position 121598523 doesn't seem to be mutated. Here are the mutated foci.Position 48427135 doesn't seem to be mutated. Here are the mutated foci.Position 124352080 doesn't seem to be mutated. Here are the mutated foci.Position 232153807 doesn't seem to be mutated. Here are the mutated foci.Position 140777778 doesn't seem to be mutated. Here are the mutated foci.Position 140784797 doesn't seem to be mutated. Here are the mutated foci.Position 140788049 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 80150383 doesn't seem to be mutated. Here are the mutated foci.Position 4122853 doesn't seem to be mutated. Here are the mutated foci.Position 28721636 doesn't seem to be mutated. Here are the mutated foci.Position 10210293 doesn't seem to be mutated. Here are the mutated foci.Position 69845438 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 119084424 doesn't seem to be mutated. Here are the mutated foci.Position 89263564 doesn't seem to be mutated. Here are the mutated foci.Position 11012794 doesn't seem to be mutated. Here are the mutated foci.Position 35364299 doesn't seem to be mutated. Here are the mutated foci.Position 35588631 doesn't seem to be mutated. Here are the mutated foci.Position 23827508 doesn't seem to be mutated. Here are the mutated foci.Position 231962961 doesn't seem to be mutated. Here are the mutated foci.Position 1283540 doesn't seem to be mutated. Here are the mutated foci.Position 140754662 doesn't seem to be mutated. Here are the mutated foci.Position 89960650 doesn't seem to be mutated. Here are the mutated foci.Position 88999160 doesn't seem to be mutated. Here are the mutated foci.Position 50147495 doesn't seem to be mutated. Here are the mutated foci.Position 80150383 doesn't seem to be mutated. Here are the mutated foci.Position 58715221 doesn't seem to be mutated. Here are the mutated foci.Position 58850966 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 29765635 doesn't seem to be mutated. Here are the mutated foci.Position 29771197 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 80693453 doesn't seem to be mutated. Here are the mutated foci.Position 45194302 doesn't seem to be mutated. Here are the mutated foci.Position 40620486 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.Position 10217517 doesn't seem to be mutated. Here are the mutated foci.Position 156867578 doesn't seem to be mutated. Here are the mutated foci.Position 168919625 doesn't seem to be mutated. Here are the mutated foci.Position 179197037 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 42067770 doesn't seem to be mutated. Here are the mutated foci.Position 140725733 doesn't seem to be mutated. Here are the mutated foci.Position 95332852 doesn't seem to be mutated. Here are the mutated foci.Position 51071266 doesn't seem to be mutated. Here are the mutated foci.Position 156868557 doesn't seem to be mutated. Here are the mutated foci.Position 29516969 doesn't seem to be mutated. Here are the mutated foci.Position 169013242 doesn't seem to be mutated. Here are the mutated foci.Position 41958534 doesn't seem to be mutated. Here are the mutated foci.Position 42094751 doesn't seem to be mutated. Here are the mutated foci.Position 62021672 doesn't seem to be mutated. Here are the mutated foci.Position 2067996 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 231370975 doesn't seem to be mutated. Here are the mutated foci.Position 138800802 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 35548866 doesn't seem to be mutated. Here are the mutated foci.Position 133981220 doesn't seem to be mutated. Here are the mutated foci.Position 47479179 doesn't seem to be mutated. Here are the mutated foci.Position 127274693 doesn't seem to be mutated. Here are the mutated foci.Position 168922601 doesn't seem to be mutated. Here are the mutated foci.Position 231973284 doesn't seem to be mutated. Here are the mutated foci.Position 10053699 doesn't seem to be mutated. Here are the mutated foci.Position 80815373 doesn't seem to be mutated. Here are the mutated foci.Position 96169329 doesn't seem to be mutated. Here are the mutated foci.Position 96282870 doesn't seem to be mutated. Here are the mutated foci.Position 140898205 doesn't seem to be mutated. Here are the mutated foci.Position 37028030 doesn't seem to be mutated. Here are the mutated foci.Position 87933147 doesn't seem to be mutated. Here are the mutated foci.Position 11731545 doesn't seem to be mutated. Here are the mutated foci.Position 112450407 doesn't seem to be mutated. Here are the mutated foci.Position 40157112 doesn't seem to be mutated. Here are the mutated foci.Position 13953347 doesn't seem to be mutated. Here are the mutated foci.Position 7673824 doesn't seem to be mutated. Here are the mutated foci.Position 45372250 doesn't seem to be mutated. Here are the mutated foci.Position 35703179 doesn't seem to be mutated. Here are the mutated foci.Position 77683181 doesn't seem to be mutated. Here are the mutated foci.Position 133779742 doesn't seem to be mutated. Here are the mutated foci.Position 29651399 doesn't seem to be mutated. Here are the mutated foci.Position 168952761 doesn't seem to be mutated. Here are the mutated foci.Position 232269755 doesn't seem to be mutated. Here are the mutated foci.Position 138861027 doesn't seem to be mutated. Here are the mutated foci.Position 50401036 doesn't seem to be mutated. Here are the mutated foci.Position 37015605 doesn't seem to be mutated. Here are the mutated foci.Position 32733031 doesn't seem to be mutated. Here are the mutated foci.Position 90777427 doesn't seem to be mutated. Here are the mutated foci.Position 17232912 doesn't seem to be mutated. Here are the mutated foci.Position 10966820 doesn't seem to be mutated. Here are the mutated foci.Position 35119938 doesn't seem to be mutated. Here are the mutated foci.Position 35647311 doesn't seem to be mutated. Here are the mutated foci.Position 35647315 doesn't seem to be mutated. Here are the mutated foci.Position 35687098 doesn't seem to be mutated. Here are the mutated foci.Position 35955847 doesn't seem to be mutated. Here are the mutated foci.Position 144523411 doesn't seem to be mutated. Here are the mutated foci.Position 35461076 doesn't seem to be mutated. Here are the mutated foci.Position 35461078 doesn't seem to be mutated. Here are the mutated foci.Position 95198823 doesn't seem to be mutated. Here are the mutated foci.Position 68754135 doesn't seem to be mutated. Here are the mutated foci.Position 32358685 doesn't seem to be mutated. Here are the mutated foci.Position 58864976 doesn't seem to be mutated. Here are the mutated foci.Position 23803338 doesn't seem to be mutated. Here are the mutated foci.Position 17031358 doesn't seem to be mutated. Here are the mutated foci.Position 69902873 doesn't seem to be mutated. Here are the mutated foci.Position 177159031 doesn't seem to be mutated. Here are the mutated foci.Position 66386805 doesn't seem to be mutated. Here are the mutated foci.Position 3611636 doesn't seem to be mutated. Here are the mutated foci.Position 7694033 doesn't seem to be mutated. Here are the mutated foci.Position 65537203 doesn't seem to be mutated. Here are the mutated foci.Position 32420797 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 43581669 doesn't seem to be mutated. Here are the mutated foci.Position 116768027 doesn't seem to be mutated. Here are the mutated foci.Position 148826210 doesn't seem to be mutated. Here are the mutated foci.Position 90760096 doesn't seem to be mutated. Here are the mutated foci.Position 90786004 doesn't seem to be mutated. Here are the mutated foci.Position 35084547 doesn't seem to be mutated. Here are the mutated foci.Position 29700629 doesn't seem to be mutated. Here are the mutated foci.Position 35448566 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 119283441 doesn't seem to be mutated. Here are the mutated foci.Position 41163639 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 47779062 doesn't seem to be mutated. Here are the mutated foci.Position 56905231 doesn't seem to be mutated. Here are the mutated foci.Position 142753586 doesn't seem to be mutated. Here are the mutated foci.Position 142755033 doesn't seem to be mutated. Here are the mutated foci.Position 61951721 doesn't seem to be mutated. Here are the mutated foci.Position 102638089 doesn't seem to be mutated. Here are the mutated foci.Position 48346363 doesn't seem to be mutated. Here are the mutated foci.Position 31290218 doesn't seem to be mutated. Here are the mutated foci.Position 11072987 doesn't seem to be mutated. Here are the mutated foci.Position 45355834 doesn't seem to be mutated. Here are the mutated foci.Position 32426554 doesn't seem to be mutated. Here are the mutated foci.Position 14861852 doesn't seem to be mutated. Here are the mutated foci.Position 47462020 doesn't seem to be mutated. Here are the mutated foci.Position 179226506 doesn't seem to be mutated. Here are the mutated foci.Position 43104892 doesn't seem to be mutated. Here are the mutated foci.Position 103711869 doesn't seem to be mutated. Here are the mutated foci.Position 89262253 doesn't seem to be mutated. Here are the mutated foci.Position 31336597 doesn't seem to be mutated. Here are the mutated foci.Position 31376335 doesn't seem to be mutated. Here are the mutated foci.Position 35072210 doesn't seem to be mutated. Here are the mutated foci.Position 29355492 doesn't seem to be mutated. Here are the mutated foci.Position 29385044 doesn't seem to be mutated. Here are the mutated foci.Position 138891396 doesn't seem to be mutated. Here are the mutated foci.Position 86775665 doesn't seem to be mutated. Here are the mutated foci.Position 31341689 doesn't seem to be mutated. Here are the mutated foci.Position 34955245 doesn't seem to be mutated. Here are the mutated foci.Position 133936210 doesn't seem to be mutated. Here are the mutated foci.Position 161376484 doesn't seem to be mutated. Here are the mutated foci.Position 193161234 doesn't seem to be mutated. Here are the mutated foci.Position 241523189 doesn't seem to be mutated. Here are the mutated foci.Position 29700629 doesn't seem to be mutated. Here are the mutated foci.Position 10041754 doesn't seem to be mutated. Here are the mutated foci.Position 10096831 doesn't seem to be mutated. Here are the mutated foci.Position 5973291 doesn't seem to be mutated. Here are the mutated foci.Position 38449106 doesn't seem to be mutated. Here are the mutated foci.Position 95499460 doesn't seem to be mutated. Here are the mutated foci.Position 61975550 doesn't seem to be mutated. Here are the mutated foci.Position 119222565 doesn't seem to be mutated. Here are the mutated foci.Position 61756612 doesn't seem to be mutated. Here are the mutated foci.Position 77683568 doesn't seem to be mutated. Here are the mutated foci.Position 77744194 doesn't seem to be mutated. Here are the mutated foci.Position 133412824 doesn't seem to be mutated. Here are the mutated foci.Position 193167923 doesn't seem to be mutated. Here are the mutated foci.Position 29213616 doesn't seem to be mutated. Here are the mutated foci.Position 29230967 doesn't seem to be mutated. Here are the mutated foci.Position 29455519 doesn't seem to be mutated. Here are the mutated foci.Position 29657803 doesn't seem to be mutated. Here are the mutated foci.Position 1804285 doesn't seem to be mutated. Here are the mutated foci.Position 104860982 doesn't seem to be mutated. Here are the mutated foci.Position 104862240 doesn't seem to be mutated. Here are the mutated foci.Position 61902704 doesn't seem to be mutated. Here are the mutated foci.Position 86793533 doesn't seem to be mutated. Here are the mutated foci.Position 87930511 doesn't seem to be mutated. Here are the mutated foci.Position 110998603 doesn't seem to be mutated. Here are the mutated foci.Position 77902752 doesn't seem to be mutated. Here are the mutated foci.Position 68771766 doesn't seem to be mutated. Here are the mutated foci.Position 7674944 doesn't seem to be mutated. Here are the mutated foci.Position 37978058 doesn't seem to be mutated. Here are the mutated foci.Position 77663432 doesn't seem to be mutated. Here are the mutated foci.Position 92836367 doesn't seem to be mutated. Here are the mutated foci.Position 61993525 doesn't seem to be mutated. Here are the mutated foci.Position 11710613 doesn't seem to be mutated. Here are the mutated foci.Position 11710625 doesn't seem to be mutated. Here are the mutated foci.Position 25237282 doesn't seem to be mutated. Here are the mutated foci.Position 45451946 doesn't seem to be mutated. Here are the mutated foci.Position 193162187 doesn't seem to be mutated. Here are the mutated foci.Position 29546128 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 140813061 doesn't seem to be mutated. Here are the mutated foci.Position 110919828 doesn't seem to be mutated. Here are the mutated foci.Position 48304764 doesn't seem to be mutated. Here are the mutated foci.Position 66425414 doesn't seem to be mutated. Here are the mutated foci.Position 7694959 doesn't seem to be mutated. Here are the mutated foci.Position 31315853 doesn't seem to be mutated. Here are the mutated foci.Position 35354865 doesn't seem to be mutated. Here are the mutated foci.Position 133299938 doesn't seem to be mutated. Here are the mutated foci.Position 10212919 doesn't seem to be mutated. Here are the mutated foci.Position 122182447 doesn't seem to be mutated. Here are the mutated foci.Position 1290960 doesn't seem to be mutated. Here are the mutated foci.Position 112734793 doesn't seem to be mutated. Here are the mutated foci.Position 148879289 doesn't seem to be mutated. Here are the mutated foci.Position 168936098 doesn't seem to be mutated. Here are the mutated foci.Position 177207924 doesn't seem to be mutated. Here are the mutated foci.Position 400773 doesn't seem to be mutated. Here are the mutated foci.Position 119300144 doesn't seem to be mutated. Here are the mutated foci.Position 32720079 doesn't seem to be mutated. Here are the mutated foci.Position 31276151 doesn't seem to be mutated. Here are the mutated foci.Position 32420797 doesn't seem to be mutated. Here are the mutated foci.Position 10290064 doesn't seem to be mutated. Here are the mutated foci.Position 38999235 doesn't seem to be mutated. Here are the mutated foci.Position 47402751 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 1260716 doesn't seem to be mutated. Here are the mutated foci.Position 124846163 doesn't seem to be mutated. Here are the mutated foci.Position 7674220 doesn't seem to be mutated. Here are the mutated foci.Position 39203541 doesn't seem to be mutated. Here are the mutated foci.Position 61823834 doesn't seem to be mutated. Here are the mutated foci.Position 35009477 doesn't seem to be mutated. Here are the mutated foci.Position 133918095 doesn't seem to be mutated. Here are the mutated foci.Position 29444920 doesn't seem to be mutated. Here are the mutated foci.Position 29843937 doesn't seem to be mutated. Here are the mutated foci.Position 69740019 doesn't seem to be mutated. Here are the mutated foci.Position 179200166 doesn't seem to be mutated. Here are the mutated foci.Position 41746120 doesn't seem to be mutated. Here are the mutated foci.Position 54243831 doesn't seem to be mutated. Here are the mutated foci.Position 80840956 doesn't seem to be mutated. Here are the mutated foci.Position 140756541 doesn't seem to be mutated. Here are the mutated foci.Position 97674023 doesn't seem to be mutated. Here are the mutated foci.Position 61976280 doesn't seem to be mutated. Here are the mutated foci.Position 11717001 doesn't seem to be mutated. Here are the mutated foci.Position 112513112 doesn't seem to be mutated. Here are the mutated foci.Position 31096054 doesn't seem to be mutated. Here are the mutated foci.Position 35097518 doesn't seem to be mutated. Here are the mutated foci.Position 41161389 doesn't seem to be mutated. Here are the mutated foci.Position 23691668 doesn't seem to be mutated. Here are the mutated foci.Position 47426318 doesn't seem to be mutated. Here are the mutated foci.Position 140909842 doesn't seem to be mutated. Here are the mutated foci.Position 142747767 doesn't seem to be mutated. Here are the mutated foci.Position 10339088 doesn't seem to be mutated. Here are the mutated foci.Position 29370229 doesn't seem to be mutated. Here are the mutated foci.Position 47446839 doesn't seem to be mutated. Here are the mutated foci.Position 80692236 doesn't seem to be mutated. Here are the mutated foci.Position 177242086 doesn't seem to be mutated. Here are the mutated foci.Position 104770719 doesn't seem to be mutated. Here are the mutated foci.Position 55079194 doesn't seem to be mutated. Here are the mutated foci.Position 116745058 doesn't seem to be mutated. Here are the mutated foci.Position 140736432 doesn't seem to be mutated. Here are the mutated foci.Position 95302003 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 35305131 doesn't seem to be mutated. Here are the mutated foci.Position 231393781 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 121531884 doesn't seem to be mutated. Here are the mutated foci.Position 50329165 doesn't seem to be mutated. Here are the mutated foci.Position 140756052 doesn't seem to be mutated. Here are the mutated foci.Position 3743784 doesn't seem to be mutated. Here are the mutated foci.Position 231979888 doesn't seem to be mutated. Here are the mutated foci.Position 112800832 doesn't seem to be mutated. Here are the mutated foci.Position 138731438 doesn't seem to be mutated. Here are the mutated foci.Position 124874824 doesn't seem to be mutated. Here are the mutated foci.Position 89981923 doesn't seem to be mutated. Here are the mutated foci.Position 44819141 doesn't seem to be mutated. Here are the mutated foci.Position 69788126 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 21974720 doesn't seem to be mutated. Here are the mutated foci.Position 50231786 doesn't seem to be mutated. Here are the mutated foci.Position 3777260 doesn't seem to be mutated. Here are the mutated foci.Position 39007168 doesn't seem to be mutated. Here are the mutated foci.Position 48575144 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 69926152 doesn't seem to be mutated. Here are the mutated foci.Position 2103662 doesn't seem to be mutated. Here are the mutated foci.Position 95396136 doesn't seem to be mutated. Here are the mutated foci.Position 11802012 doesn't seem to be mutated. Here are the mutated foci.Position 66411365 doesn't seem to be mutated. Here are the mutated foci.Position 44826750 doesn't seem to be mutated. Here are the mutated foci.Position 47779774 doesn't seem to be mutated. Here are the mutated foci.Position 1289151 doesn't seem to be mutated. Here are the mutated foci.Position 142757912 doesn't seem to be mutated. Here are the mutated foci.Position 20192578 doesn't seem to be mutated. Here are the mutated foci.Position 48427171 doesn't seem to be mutated. Here are the mutated foci.Position 65103899 doesn't seem to be mutated. Here are the mutated foci.Position 58709326 doesn't seem to be mutated. Here are the mutated foci.Position 34874124 doesn't seem to be mutated. Here are the mutated foci.Position 35312213 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 10070567 doesn't seem to be mutated. Here are the mutated foci.Position 55154504 doesn't seem to be mutated. Here are the mutated foci.Position 86881032 doesn't seem to be mutated. Here are the mutated foci.Position 104779606 doesn't seem to be mutated. Here are the mutated foci.Position 61753771 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 58898254 doesn't seem to be mutated. Here are the mutated foci.Position 35967648 doesn't seem to be mutated. Here are the mutated foci.Position 41163464 doesn't seem to be mutated. Here are the mutated foci.Position 10342912 doesn't seem to be mutated. Here are the mutated foci.Position 193199040 doesn't seem to be mutated. Here are the mutated foci.Position 29208230 doesn't seem to be mutated. Here are the mutated foci.Position 232018094 doesn't seem to be mutated. Here are the mutated foci.Position 41743067 doesn't seem to be mutated. Here are the mutated foci.Position 54240025 doesn't seem to be mutated. Here are the mutated foci.Position 54667496 doesn't seem to be mutated. Here are the mutated foci.Position 89930429 doesn't seem to be mutated. Here are the mutated foci.Position 117872398 doesn't seem to be mutated. Here are the mutated foci.Position 36837093 doesn't seem to be mutated. Here are the mutated foci.Position 86824457 doesn't seem to be mutated. Here are the mutated foci.Position 44172532 doesn't seem to be mutated. Here are the mutated foci.Position 38331444 doesn't seem to be mutated. Here are the mutated foci.Position 50782526 doesn't seem to be mutated. Here are the mutated foci.Position 43056702 doesn't seem to be mutated. Here are the mutated foci.Position 41167616 doesn't seem to be mutated. Here are the mutated foci.Position 77693319 doesn't seem to be mutated. Here are the mutated foci.Position 193162206 doesn't seem to be mutated. Here are the mutated foci.Position 69735850 doesn't seem to be mutated. Here are the mutated foci.Position 132595760 doesn't seem to be mutated. Here are the mutated foci.Position 87920826 doesn't seem to be mutated. Here are the mutated foci.Position 102570985 doesn't seem to be mutated. Here are the mutated foci.Position 112414901 doesn't seem to be mutated. Here are the mutated foci.Position 69758118 doesn't seem to be mutated. Here are the mutated foci.Position 41956892 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 142757475 doesn't seem to be mutated. Here are the mutated foci.Position 31061336 doesn't seem to be mutated. Here are the mutated foci.Position 44235727 doesn't seem to be mutated. Here are the mutated foci.Position 3849759 doesn't seem to be mutated. Here are the mutated foci.Position 40626865 doesn't seem to be mutated. Here are the mutated foci.Position 35396752 doesn't seem to be mutated. Here are the mutated foci.Position 232155173 doesn't seem to be mutated. Here are the mutated foci.Position 102560840 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 133890414 doesn't seem to be mutated. Here are the mutated foci.Position 231962961 doesn't seem to be mutated. Here are the mutated foci.Position 1289422 doesn't seem to be mutated. Here are the mutated foci.Position 80802413 doesn't seem to be mutated. Here are the mutated foci.Position 177133936 doesn't seem to be mutated. Here are the mutated foci.Position 2002803 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 108233569 doesn't seem to be mutated. Here are the mutated foci.Position 32743765 doesn't seem to be mutated. Here are the mutated foci.Position 68745572 doesn't seem to be mutated. Here are the mutated foci.Position 31097704 doesn't seem to be mutated. Here are the mutated foci.Position 10353832 doesn't seem to be mutated. Here are the mutated foci.Position 29627195 doesn't seem to be mutated. Here are the mutated foci.Position 179203176 doesn't seem to be mutated. Here are the mutated foci.Position 96258465 doesn't seem to be mutated. Here are the mutated foci.Position 61970264 doesn't seem to be mutated. Here are the mutated foci.Position 94392849 doesn't seem to be mutated. Here are the mutated foci.Position 61753771 doesn't seem to be mutated. Here are the mutated foci.Position 10370515 doesn't seem to be mutated. Here are the mutated foci.Position 47370341 doesn't seem to be mutated. Here are the mutated foci.Position 56936522 doesn't seem to be mutated. Here are the mutated foci.Position 31164458 doesn't seem to be mutated. Here are the mutated foci.Position 89970091 doesn't seem to be mutated. Here are the mutated foci.Position 102520415 doesn't seem to be mutated. Here are the mutated foci.Position 119238315 doesn't seem to be mutated. Here are the mutated foci.Position 119275207 doesn't seem to be mutated. Here are the mutated foci.Position 119275211 doesn't seem to be mutated. Here are the mutated foci.Position 119275354 doesn't seem to be mutated. Here are the mutated foci.Position 7681502 doesn't seem to be mutated. Here are the mutated foci.Position 58861831 doesn't seem to be mutated. Here are the mutated foci.Position 23818416 doesn't seem to be mutated. Here are the mutated foci.Position 214785370 doesn't seem to be mutated. Here are the mutated foci.Position 138608629 doesn't seem to be mutated. Here are the mutated foci.Position 38434321 doesn't seem to be mutated. Here are the mutated foci.Position 117809226 doesn't seem to be mutated. Here are the mutated foci.Position 87959124 doesn't seem to be mutated. Here are the mutated foci.Position 41174581 doesn't seem to be mutated. Here are the mutated foci.Position 148820254 doesn't seem to be mutated. Here are the mutated foci.Position 10333418 doesn't seem to be mutated. Here are the mutated foci.Position 241523189 doesn't seem to be mutated. Here are the mutated foci.Position 158578381 doesn't seem to be mutated. Here are the mutated foci.Position 1294779 doesn't seem to be mutated. Here are the mutated foci.Position 96322146 doesn't seem to be mutated. Here are the mutated foci.Position 142747749 doesn't seem to be mutated. Here are the mutated foci.Position 86762605 doesn't seem to be mutated. Here are the mutated foci.Position 48547807 doesn't seem to be mutated. Here are the mutated foci.Position 66416639 doesn't seem to be mutated. Here are the mutated foci.Position 80159110 doesn't seem to be mutated. Here are the mutated foci.Position 7674894 doesn't seem to be mutated. Here are the mutated foci.Position 35313283 doesn't seem to be mutated. Here are the mutated foci.Position 35517434 doesn't seem to be mutated. Here are the mutated foci.Position 41088465 doesn't seem to be mutated. Here are the mutated foci.Position 156869005 doesn't seem to be mutated. Here are the mutated foci.Position 193227472 doesn't seem to be mutated. Here are the mutated foci.Position 168938285 doesn't seem to be mutated. Here are the mutated foci.Position 10078235 doesn't seem to be mutated. Here are the mutated foci.Position 10078480 doesn't seem to be mutated. Here are the mutated foci.Position 10078488 doesn't seem to be mutated. Here are the mutated foci.Position 12658318 doesn't seem to be mutated. Here are the mutated foci.Position 54249291 doesn't seem to be mutated. Here are the mutated foci.Position 140862926 doesn't seem to be mutated. Here are the mutated foci.Position 142756886 doesn't seem to be mutated. Here are the mutated foci.Position 38446305 doesn't seem to be mutated. Here are the mutated foci.Position 89944145 doesn't seem to be mutated. Here are the mutated foci.Position 89944542 doesn't seem to be mutated. Here are the mutated foci.Position 21971921 doesn't seem to be mutated. Here are the mutated foci.Position 21971953 doesn't seem to be mutated. Here are the mutated foci.Position 21972670 doesn't seem to be mutated. Here are the mutated foci.Position 21972790 doesn't seem to be mutated. Here are the mutated foci.Position 21972913 doesn't seem to be mutated. Here are the mutated foci.Position 21972947 doesn't seem to be mutated. Here are the mutated foci.Position 21973495 doesn't seem to be mutated. Here are the mutated foci.Position 21973647 doesn't seem to be mutated. Here are the mutated foci.Position 21973690 doesn't seem to be mutated. Here are the mutated foci.Position 36839465 doesn't seem to be mutated. Here are the mutated foci.Position 32385249 doesn't seem to be mutated. Here are the mutated foci.Position 95153097 doesn't seem to be mutated. Here are the mutated foci.Position 3586793 doesn't seem to be mutated. Here are the mutated foci.Position 3590677 doesn't seem to be mutated. Here are the mutated foci.Position 2788877 doesn't seem to be mutated. Here are the mutated foci.Position 232000613 doesn't seem to be mutated. Here are the mutated foci.Position 112799055 doesn't seem to be mutated. Here are the mutated foci.Position 89928368 doesn't seem to be mutated. Here are the mutated foci.Position 2158931 doesn't seem to be mutated. Here are the mutated foci.Position 61993975 doesn't seem to be mutated. Here are the mutated foci.Position 95150061 doesn't seem to be mutated. Here are the mutated foci.Position 89783551 doesn't seem to be mutated. Here are the mutated foci.Position 29655669 doesn't seem to be mutated. Here are the mutated foci.Position 161360032 doesn't seem to be mutated. Here are the mutated foci.Position 80749709 doesn't seem to be mutated. Here are the mutated foci.Position 112828455 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 38422219 doesn't seem to be mutated. Here are the mutated foci.Position 322422 doesn't seem to be mutated. Here are the mutated foci.Position 2115850 doesn't seem to be mutated. Here are the mutated foci.Position 95452328 doesn't seem to be mutated. Here are the mutated foci.Position 7674894 doesn't seem to be mutated. Here are the mutated foci.Position 35010145 doesn't seem to be mutated. Here are the mutated foci.Position 77626898 doesn't seem to be mutated. Here are the mutated foci.Position 133297840 doesn't seem to be mutated. Here are the mutated foci.Position 133900557 doesn't seem to be mutated. Here are the mutated foci.Position 147941674 doesn't seem to be mutated. Here are the mutated foci.Position 892799 doesn't seem to be mutated. Here are the mutated foci.Position 1291772 doesn't seem to be mutated. Here are the mutated foci.Position 140753340 doesn't seem to be mutated. Here are the mutated foci.Position 97690215 doesn't seem to be mutated. Here are the mutated foci.Position 102520499 doesn't seem to be mutated. Here are the mutated foci.Position 77896604 doesn't seem to be mutated. Here are the mutated foci.Position 61727789 doesn't seem to be mutated. Here are the mutated foci.Position 77706786 doesn't seem to be mutated. Here are the mutated foci.Position 77790922 doesn't seem to be mutated. Here are the mutated foci.Position 133307975 doesn't seem to be mutated. Here are the mutated foci.Position 154763031 doesn't seem to be mutated. Here are the mutated foci.Position 214765752 doesn't seem to be mutated. Here are the mutated foci.Position 232153608 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 128477150 doesn't seem to be mutated. Here are the mutated foci.Position 128483613 doesn't seem to be mutated. Here are the mutated foci.Position 138824226 doesn't seem to be mutated. Here are the mutated foci.Position 50318070 doesn't seem to be mutated. Here are the mutated foci.Position 50347720 doesn't seem to be mutated. Here are the mutated foci.Position 124893039 doesn't seem to be mutated. Here are the mutated foci.Position 2197222 doesn't seem to be mutated. Here are the mutated foci.Position 121535742 doesn't seem to be mutated. Here are the mutated foci.Position 48346781 doesn't seem to be mutated. Here are the mutated foci.Position 66387075 doesn't seem to be mutated. Here are the mutated foci.Position 39203517 doesn't seem to be mutated. Here are the mutated foci.Position 35843032 doesn't seem to be mutated. Here are the mutated foci.Position 77597400 doesn't seem to be mutated. Here are the mutated foci.Position 47716890 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 112759838 doesn't seem to be mutated. Here are the mutated foci.Position 104727303 doesn't seem to be mutated. Here are the mutated foci.Position 104727309 doesn't seem to be mutated. Here are the mutated foci.Position 138608051 doesn't seem to be mutated. Here are the mutated foci.Position 42233187 doesn't seem to be mutated. Here are the mutated foci.Position 95220724 doesn't seem to be mutated. Here are the mutated foci.Position 108875217 doesn't seem to be mutated. Here are the mutated foci.Position 25227343 doesn't seem to be mutated. Here are the mutated foci.Position 24242487 doesn't seem to be mutated. Here are the mutated foci.Position 36518266 doesn't seem to be mutated. Here are the mutated foci.Position 104795196 doesn't seem to be mutated. Here are the mutated foci.Position 3741823 doesn't seem to be mutated. Here are the mutated foci.Position 40623608 doesn't seem to be mutated. Here are the mutated foci.Position 33302123 doesn't seem to be mutated. Here are the mutated foci.Position 29636280 doesn't seem to be mutated. Here are the mutated foci.Position 169034017 doesn't seem to be mutated. Here are the mutated foci.Position 54742571 doesn't seem to be mutated. Here are the mutated foci.Position 104832732 doesn't seem to be mutated. Here are the mutated foci.Position 50307381 doesn't seem to be mutated. Here are the mutated foci.Position 96314081 doesn't seem to be mutated. Here are the mutated foci.Position 89928778 doesn't seem to be mutated. Here are the mutated foci.Position 277838 doesn't seem to be mutated. Here are the mutated foci.Position 35075483 doesn't seem to be mutated. Here are the mutated foci.Position 95357187 doesn't seem to be mutated. Here are the mutated foci.Position 86798655 doesn't seem to be mutated. Here are the mutated foci.Position 11048920 doesn't seem to be mutated. Here are the mutated foci.Position 34908936 doesn't seem to be mutated. Here are the mutated foci.Position 35118699 doesn't seem to be mutated. Here are the mutated foci.Position 35284602 doesn't seem to be mutated. Here are the mutated foci.Position 35918207 doesn't seem to be mutated. Here are the mutated foci.Position 29601466 doesn't seem to be mutated. Here are the mutated foci.Position 29469424 doesn't seem to be mutated. Here are the mutated foci.Position 144407591 doesn't seem to be mutated. Here are the mutated foci.Position 179236395 doesn't seem to be mutated. Here are the mutated foci.Position 42168325 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 417262 doesn't seem to be mutated. Here are the mutated foci.Position 95422498 doesn't seem to be mutated. Here are the mutated foci.Position 132940145 doesn't seem to be mutated. Here are the mutated foci.Position 86931280 doesn't seem to be mutated. Here are the mutated foci.Position 121525283 doesn't seem to be mutated. Here are the mutated foci.Position 112450362 doesn't seem to be mutated. Here are the mutated foci.Position 45194691 doesn't seem to be mutated. Here are the mutated foci.Position 50131139 doesn't seem to be mutated. Here are the mutated foci.Position 2044640 doesn't seem to be mutated. Here are the mutated foci.Position 7674228 doesn't seem to be mutated. Here are the mutated foci.Position 51050485 doesn't seem to be mutated. Here are the mutated foci.Position 32420226 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 47791155 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 122185084 doesn't seem to be mutated. Here are the mutated foci.Position 35877499 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 142747767 doesn't seem to be mutated. Here are the mutated foci.Position 95358075 doesn't seem to be mutated. Here are the mutated foci.Position 86789715 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 168975431 doesn't seem to be mutated. Here are the mutated foci.Position 69787074 doesn't seem to be mutated. Here are the mutated foci.Position 1289706 doesn't seem to be mutated. Here are the mutated foci.Position 142754800 doesn't seem to be mutated. Here are the mutated foci.Position 354224 doesn't seem to be mutated. Here are the mutated foci.Position 7674221 doesn't seem to be mutated. Here are the mutated foci.Position 29648171 doesn't seem to be mutated. Here are the mutated foci.Position 77618820 doesn't seem to be mutated. Here are the mutated foci.Position 77704705 doesn't seem to be mutated. Here are the mutated foci.Position 133933058 doesn't seem to be mutated. Here are the mutated foci.Position 47450224 doesn't seem to be mutated. Here are the mutated foci.Position 157252893 doesn't seem to be mutated. Here are the mutated foci.Position 55128848 doesn't seem to be mutated. Here are the mutated foci.Position 96185666 doesn't seem to be mutated. Here are the mutated foci.Position 140855554 doesn't seem to be mutated. Here are the mutated foci.Position 400095 doesn't seem to be mutated. Here are the mutated foci.Position 2127964 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 35843595 doesn't seem to be mutated. Here are the mutated foci.Position 23833631 doesn't seem to be mutated. Here are the mutated foci.Position 41179901 doesn't seem to be mutated. Here are the mutated foci.Position 161322465 doesn't seem to be mutated. Here are the mutated foci.Position 214734654 doesn't seem to be mutated. Here are the mutated foci.Position 41744727 doesn't seem to be mutated. Here are the mutated foci.Position 35453476 doesn't seem to be mutated. Here are the mutated foci.Position 104775387 doesn't seem to be mutated. Here are the mutated foci.Position 389593 doesn't seem to be mutated. Here are the mutated foci.Position 95466506 doesn't seem to be mutated. Here are the mutated foci.Position 86919725 doesn't seem to be mutated. Here are the mutated foci.Position 121499341 doesn't seem to be mutated. Here are the mutated foci.Position 2881803 doesn't seem to be mutated. Here are the mutated foci.Position 3824363 doesn't seem to be mutated. Here are the mutated foci.Position 43125438 doesn't seem to be mutated. Here are the mutated foci.Position 29671664 doesn't seem to be mutated. Here are the mutated foci.Position 29671793 doesn't seem to be mutated. Here are the mutated foci.Position 29671825 doesn't seem to be mutated. Here are the mutated foci.Position 29692747 doesn't seem to be mutated. Here are the mutated foci.Position 133407544 doesn't seem to be mutated. Here are the mutated foci.Position 133737889 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 80808858 doesn't seem to be mutated. Here are the mutated foci.Position 96184306 doesn't seem to be mutated. Here are the mutated foci.Position 86869456 doesn't seem to be mutated. Here are the mutated foci.Position 67482349 doesn't seem to be mutated. Here are the mutated foci.Position 11757877 doesn't seem to be mutated. Here are the mutated foci.Position 23820890 doesn't seem to be mutated. Here are the mutated foci.Position 133936210 doesn't seem to be mutated. Here are the mutated foci.Position 29837316 doesn't seem to be mutated. Here are the mutated foci.Position 58239431 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 95255300 doesn't seem to be mutated. Here are the mutated foci.Position 99132143 doesn't seem to be mutated. Here are the mutated foci.Position 119084424 doesn't seem to be mutated. Here are the mutated foci.Position 31095329 doesn't seem to be mutated. Here are the mutated foci.Position 10992249 doesn't seem to be mutated. Here are the mutated foci.Position 32403888 doesn't seem to be mutated. Here are the mutated foci.Position 35056493 doesn't seem to be mutated. Here are the mutated foci.Position 77750521 doesn't seem to be mutated. Here are the mutated foci.Position 77763119 doesn't seem to be mutated. Here are the mutated foci.Position 10263271 doesn't seem to be mutated. Here are the mutated foci.Position 140776289 doesn't seem to be mutated. Here are the mutated foci.Position 140776308 doesn't seem to be mutated. Here are the mutated foci.Position 2114436 doesn't seem to be mutated. Here are the mutated foci.Position 87971559 doesn't seem to be mutated. Here are the mutated foci.Position 10211125 doesn't seem to be mutated. Here are the mutated foci.Position 154280650 doesn't seem to be mutated. Here are the mutated foci.Position 156868152 doesn't seem to be mutated. Here are the mutated foci.Position 39120276 doesn't seem to be mutated. Here are the mutated foci.Position 47353180 doesn't seem to be mutated. Here are the mutated foci.Position 47460843 doesn't seem to be mutated. Here are the mutated foci.Position 14168716 doesn't seem to be mutated. Here are the mutated foci.Position 41740766 doesn't seem to be mutated. Here are the mutated foci.Position 177133983 doesn't seem to be mutated. Here are the mutated foci.Position 2884565 doesn't seem to be mutated. Here are the mutated foci.Position 44096330 doesn't seem to be mutated. Here are the mutated foci.Position 119238315 doesn't seem to be mutated. Here are the mutated foci.Position 31303486 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 43578116 doesn't seem to be mutated. Here are the mutated foci.Position 43578121 doesn't seem to be mutated. Here are the mutated foci.Position 333712 doesn't seem to be mutated. Here are the mutated foci.Position 87949983 doesn't seem to be mutated. Here are the mutated foci.Position 31217748 doesn't seem to be mutated. Here are the mutated foci.Position 34899401 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 138655387 doesn't seem to be mutated. Here are the mutated foci.Position 177159273 doesn't seem to be mutated. Here are the mutated foci.Position 117923568 doesn't seem to be mutated. Here are the mutated foci.Position 78052157 doesn't seem to be mutated. Here are the mutated foci.Position 112475344 doesn't seem to be mutated. Here are the mutated foci.Position 34946576 doesn't seem to be mutated. Here are the mutated foci.Position 133770273 doesn't seem to be mutated. Here are the mutated foci.Position 12627652 doesn't seem to be mutated. Here are the mutated foci.Position 108928786 doesn't seem to be mutated. Here are the mutated foci.Position 86751873 doesn't seem to be mutated. Here are the mutated foci.Position 110933868 doesn't seem to be mutated. Here are the mutated foci.Position 32401506 doesn't seem to be mutated. Here are the mutated foci.Position 193154681 doesn't seem to be mutated. Here are the mutated foci.Position 231426318 doesn't seem to be mutated. Here are the mutated foci.Position 47364772 doesn't seem to be mutated. Here are the mutated foci.Position 214733908 doesn't seem to be mutated. Here are the mutated foci.Position 1283659 doesn't seem to be mutated. Here are the mutated foci.Position 80731069 doesn't seem to be mutated. Here are the mutated foci.Position 112800832 doesn't seem to be mutated. Here are the mutated foci.Position 113562099 doesn't seem to be mutated. Here are the mutated foci.Position 11731160 doesn't seem to be mutated. Here are the mutated foci.Position 11843746 doesn't seem to be mutated. Here are the mutated foci.Position 112445368 doesn't seem to be mutated. Here are the mutated foci.Position 23122840 doesn't seem to be mutated. Here are the mutated foci.Position 66478492 doesn't seem to be mutated. Here are the mutated foci.Position 7681502 doesn't seem to be mutated. Here are the mutated foci.Position 35375130 doesn't seem to be mutated. Here are the mutated foci.Position 35505326 doesn't seem to be mutated. Here are the mutated foci.Position 77766976 doesn't seem to be mutated. Here are the mutated foci.Position 47793737 doesn't seem to be mutated. Here are the mutated foci.Position 55167549 doesn't seem to be mutated. Here are the mutated foci.Position 51071282 doesn't seem to be mutated. Here are the mutated foci.Position 58864976 doesn't seem to be mutated. Here are the mutated foci.Position 54233552 doesn't seem to be mutated. Here are the mutated foci.Position 36879119 doesn't seem to be mutated. Here are the mutated foci.Position 112492387 doesn't seem to be mutated. Here are the mutated foci.Position 50417507 doesn't seem to be mutated. Here are the mutated foci.Position 34814925 doesn't seem to be mutated. Here are the mutated foci.Position 193156287 doesn't seem to be mutated. Here are the mutated foci.Position 122284758 doesn't seem to be mutated. Here are the mutated foci.Position 80688758 doesn't seem to be mutated. Here are the mutated foci.Position 50409822 doesn't seem to be mutated. Here are the mutated foci.Position 38414788 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 87894689 doesn't seem to be mutated. Here are the mutated foci.Position 43104070 doesn't seem to be mutated. Here are the mutated foci.Position 35655948 doesn't seem to be mutated. Here are the mutated foci.Position 133812326 doesn't seem to be mutated. Here are the mutated foci.Position 10249328 doesn't seem to be mutated. Here are the mutated foci.Position 47795640 doesn't seem to be mutated. Here are the mutated foci.Position 179218294 doesn't seem to be mutated. Here are the mutated foci.Position 177218114 doesn't seem to be mutated. Here are the mutated foci.Position 50312843 doesn't seem to be mutated. Here are the mutated foci.Position 68783555 doesn't seem to be mutated. Here are the mutated foci.Position 7674229 doesn't seem to be mutated. Here are the mutated foci.Position 31224187 doesn't seem to be mutated. Here are the mutated foci.Position 31357268 doesn't seem to be mutated. Here are the mutated foci.Position 61715605 doesn't seem to be mutated. Here are the mutated foci.Position 28735405 doesn't seem to be mutated. Here are the mutated foci.Position 41089906 doesn't seem to be mutated. Here are the mutated foci.Position 14850533 doesn't seem to be mutated. Here are the mutated foci.Position 133716313 doesn't seem to be mutated. Here are the mutated foci.Position 17036808 doesn't seem to be mutated. Here are the mutated foci.Position 54676030 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 95358075 doesn't seem to be mutated. Here are the mutated foci.Position 40719831 doesn't seem to be mutated. Here are the mutated foci.Position 77660331 doesn't seem to be mutated. Here are the mutated foci.Position 29731947 doesn't seem to be mutated. Here are the mutated foci.Position 142757821 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 62017777 doesn't seem to be mutated. Here are the mutated foci.Position 10210432 doesn't seem to be mutated. Here are the mutated foci.Position 155909378 doesn't seem to be mutated. Here are the mutated foci.Position 177195454 doesn't seem to be mutated. Here are the mutated foci.Position 42038484 doesn't seem to be mutated. Here are the mutated foci.Position 116699996 doesn't seem to be mutated. Here are the mutated foci.Position 2157401 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 108364950 doesn't seem to be mutated. Here are the mutated foci.Position 11806262 doesn't seem to be mutated. Here are the mutated foci.Position 11865237 doesn't seem to be mutated. Here are the mutated foci.Position 68825276 doesn't seem to be mutated. Here are the mutated foci.Position 7676162 doesn't seem to be mutated. Here are the mutated foci.Position 7676170 doesn't seem to be mutated. Here are the mutated foci.Position 59011173 doesn't seem to be mutated. Here are the mutated foci.Position 68530797 doesn't seem to be mutated. Here are the mutated foci.Position 1181339 doesn't seem to be mutated. Here are the mutated foci.Position 35158750 doesn't seem to be mutated. Here are the mutated foci.Position 77654139 doesn't seem to be mutated. Here are the mutated foci.Position 133736574 doesn't seem to be mutated. Here are the mutated foci.Position 133799250 doesn't seem to be mutated. Here are the mutated foci.Position 147950456 doesn't seem to be mutated. Here are the mutated foci.Position 47443110 doesn't seem to be mutated. Here are the mutated foci.Position 144371380 doesn't seem to be mutated. Here are the mutated foci.Position 168947942 doesn't seem to be mutated. Here are the mutated foci.Position 232225340 doesn't seem to be mutated. Here are the mutated foci.Position 14168716 doesn't seem to be mutated. Here are the mutated foci.Position 54267502 doesn't seem to be mutated. Here are the mutated foci.Position 138700754 doesn't seem to be mutated. Here are the mutated foci.Position 42045450 doesn't seem to be mutated. Here are the mutated foci.Position 55028025 doesn't seem to be mutated. Here are the mutated foci.Position 117879441 doesn't seem to be mutated. Here are the mutated foci.Position 386544 doesn't seem to be mutated. Here are the mutated foci.Position 1990353 doesn't seem to be mutated. Here are the mutated foci.Position 110969435 doesn't seem to be mutated. Here are the mutated foci.Position 90800411 doesn't seem to be mutated. Here are the mutated foci.Position 68826154 doesn't seem to be mutated. Here are the mutated foci.Position 45458231 doesn't seem to be mutated. Here are the mutated foci.Position 35190829 doesn't seem to be mutated. Here are the mutated foci.Position 35945261 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 140744316 doesn't seem to be mutated. Here are the mutated foci.Position 88999166 doesn't seem to be mutated. Here are the mutated foci.Position 34862116 doesn't seem to be mutated. Here are the mutated foci.Position 133343530 doesn't seem to be mutated. Here are the mutated foci.Position 69758341 doesn't seem to be mutated. Here are the mutated foci.Position 65523736 doesn't seem to be mutated. Here are the mutated foci.Position 41147478 doesn't seem to be mutated. Here are the mutated foci.Position 133863603 doesn't seem to be mutated. Here are the mutated foci.Position 23698831 doesn't seem to be mutated. Here are the mutated foci.Position 161368337 doesn't seem to be mutated. Here are the mutated foci.Position 47426003 doesn't seem to be mutated. Here are the mutated foci.Position 80867525 doesn't seem to be mutated. Here are the mutated foci.Position 138716516 doesn't seem to be mutated. Here are the mutated foci.Position 104848584 doesn't seem to be mutated. Here are the mutated foci.Position 31164458 doesn't seem to be mutated. Here are the mutated foci.Position 117876165 doesn't seem to be mutated. Here are the mutated foci.Position 95508252 doesn't seem to be mutated. Here are the mutated foci.Position 108869002 doesn't seem to be mutated. Here are the mutated foci.Position 62015855 doesn't seem to be mutated. Here are the mutated foci.Position 86782840 doesn't seem to be mutated. Here are the mutated foci.Position 11677589 doesn't seem to be mutated. Here are the mutated foci.Position 40728635 doesn't seem to be mutated. Here are the mutated foci.Position 31229145 doesn't seem to be mutated. Here are the mutated foci.Position 35230907 doesn't seem to be mutated. Here are the mutated foci.Position 133359212 doesn't seem to be mutated. Here are the mutated foci.Position 147933557 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 54704165 doesn't seem to be mutated. Here are the mutated foci.Position 124829727 doesn't seem to be mutated. Here are the mutated foci.Position 95110163 doesn't seem to be mutated. Here are the mutated foci.Position 147916647 doesn't seem to be mutated. Here are the mutated foci.Position 29714077 doesn't seem to be mutated. Here are the mutated foci.Position 29853900 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 36957301 doesn't seem to be mutated. Here are the mutated foci.Position 1182739 doesn't seem to be mutated. Here are the mutated foci.Position 34974873 doesn't seem to be mutated. Here are the mutated foci.Position 193174056 doesn't seem to be mutated. Here are the mutated foci.Position 168975485 doesn't seem to be mutated. Here are the mutated foci.Position 80808688 doesn't seem to be mutated. Here are the mutated foci.Position 140919462 doesn't seem to be mutated. Here are the mutated foci.Position 322520 doesn't seem to be mutated. Here are the mutated foci.Position 43079146 doesn't seem to be mutated. Here are the mutated foci.Position 31326938 doesn't seem to be mutated. Here are the mutated foci.Position 59080606 doesn't seem to be mutated. Here are the mutated foci.Position 47636332 doesn't seem to be mutated. Here are the mutated foci.Position 144516222 doesn't seem to be mutated. Here are the mutated foci.Position 104818844 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 77668832 doesn't seem to be mutated. Here are the mutated foci.Position 133968781 doesn't seem to be mutated. Here are the mutated foci.Position 10078915 doesn't seem to be mutated. Here are the mutated foci.Position 54727437 doesn't seem to be mutated. Here are the mutated foci.Position 54736498 doesn't seem to be mutated. Here are the mutated foci.Position 1289212 doesn't seem to be mutated. Here are the mutated foci.Position 96134794 doesn't seem to be mutated. Here are the mutated foci.Position 117869812 doesn't seem to be mutated. Here are the mutated foci.Position 61942019 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 25245350 doesn't seem to be mutated. Here are the mutated foci.Position 4123922 doesn't seem to be mutated. Here are the mutated foci.Position 35246172 doesn't seem to be mutated. Here are the mutated foci.Position 122184543 doesn't seem to be mutated. Here are the mutated foci.Position 140753325 doesn't seem to be mutated. Here are the mutated foci.Position 140753327 doesn't seem to be mutated. Here are the mutated foci.Position 78059797 doesn't seem to be mutated. Here are the mutated foci.Position 155242765 doesn't seem to be mutated. Here are the mutated foci.Position 47442475 doesn't seem to be mutated. Here are the mutated foci.Position 144509618 doesn't seem to be mutated. Here are the mutated foci.Position 69945933 doesn't seem to be mutated. Here are the mutated foci.Position 1271162 doesn't seem to be mutated. Here are the mutated foci.Position 138728726 doesn't seem to be mutated. Here are the mutated foci.Position 138788718 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 2185421 doesn't seem to be mutated. Here are the mutated foci.Position 87943403 doesn't seem to be mutated. Here are the mutated foci.Position 40179968 doesn't seem to be mutated. Here are the mutated foci.Position 66407011 doesn't seem to be mutated. Here are the mutated foci.Position 17234219 doesn't seem to be mutated. Here are the mutated foci.Position 11021845 doesn't seem to be mutated. Here are the mutated foci.Position 35161241 doesn't seem to be mutated. Here are the mutated foci.Position 77735517 doesn't seem to be mutated. Here are the mutated foci.Position 77777874 doesn't seem to be mutated. Here are the mutated foci.Position 133876400 doesn't seem to be mutated. Here are the mutated foci.Position 10208873 doesn't seem to be mutated. Here are the mutated foci.Position 55038729 doesn't seem to be mutated. Here are the mutated foci.Position 95273946 doesn't seem to be mutated. Here are the mutated foci.Position 50220244 doesn't seem to be mutated. Here are the mutated foci.Position 29642052 doesn't seem to be mutated. Here are the mutated foci.Position 56928393 doesn't seem to be mutated. Here are the mutated foci.Position 56928397 doesn't seem to be mutated. Here are the mutated foci.Position 41966231 doesn't seem to be mutated. Here are the mutated foci.Position 2059594 doesn't seem to be mutated. Here are the mutated foci.Position 89017629 doesn't seem to be mutated. Here are the mutated foci.Position 58716502 doesn't seem to be mutated. Here are the mutated foci.Position 37974345 doesn't seem to be mutated. Here are the mutated foci.Position 10285724 doesn't seem to be mutated. Here are the mutated foci.Position 10369732 doesn't seem to be mutated. Here are the mutated foci.Position 193170052 doesn't seem to be mutated. Here are the mutated foci.Position 47372329 doesn't seem to be mutated. Here are the mutated foci.Position 50355708 doesn't seem to be mutated. Here are the mutated foci.Position 140900287 doesn't seem to be mutated. Here are the mutated foci.Position 35082007 doesn't seem to be mutated. Here are the mutated foci.Position 89010525 doesn't seem to be mutated. Here are the mutated foci.Position 112440404 doesn't seem to be mutated. Here are the mutated foci.Position 112440408 doesn't seem to be mutated. Here are the mutated foci.Position 50767519 doesn't seem to be mutated. Here are the mutated foci.Position 7674890 doesn't seem to be mutated. Here are the mutated foci.Position 54687441 doesn't seem to be mutated. Here are the mutated foci.Position 157207926 doesn't seem to be mutated. Here are the mutated foci.Position 177152320 doesn't seem to be mutated. Here are the mutated foci.Position 6003304 doesn't seem to be mutated. Here are the mutated foci.Position 117979373 doesn't seem to be mutated. Here are the mutated foci.Position 36837093 doesn't seem to be mutated. Here are the mutated foci.Position 133803213 doesn't seem to be mutated. Here are the mutated foci.Position 157177581 doesn't seem to be mutated. Here are the mutated foci.Position 177134466 doesn't seem to be mutated. Here are the mutated foci.Position 104809871 doesn't seem to be mutated. Here are the mutated foci.Position 116727352 doesn't seem to be mutated. Here are the mutated foci.Position 121481121 doesn't seem to be mutated. Here are the mutated foci.Position 121586278 doesn't seem to be mutated. Here are the mutated foci.Position 121586280 doesn't seem to be mutated. Here are the mutated foci.Position 112429802 doesn't seem to be mutated. Here are the mutated foci.Position 7675137 doesn't seem to be mutated. Here are the mutated foci.Position 35786293 doesn't seem to be mutated. Here are the mutated foci.Position 37973639 doesn't seem to be mutated. Here are the mutated foci.Position 29725671 doesn't seem to be mutated. Here are the mutated foci.Position 96180173 doesn't seem to be mutated. Here are the mutated foci.Position 96180174 doesn't seem to be mutated. Here are the mutated foci.Position 96242241 doesn't seem to be mutated. Here are the mutated foci.Position 117964612 doesn't seem to be mutated. Here are the mutated foci.Position 102634416 doesn't seem to be mutated. Here are the mutated foci.Position 23638248 doesn't seem to be mutated. Here are the mutated foci.Position 7675137 doesn't seem to be mutated. Here are the mutated foci.Position 35316062 doesn't seem to be mutated. Here are the mutated foci.Position 193232458 doesn't seem to be mutated. Here are the mutated foci.Position 47779796 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 138894281 doesn't seem to be mutated. Here are the mutated foci.Position 116765186 doesn't seem to be mutated. Here are the mutated foci.Position 140791101 doesn't seem to be mutated. Here are the mutated foci.Position 140791128 doesn't seem to be mutated. Here are the mutated foci.Position 140791510 doesn't seem to be mutated. Here are the mutated foci.Position 121575675 doesn't seem to be mutated. Here are the mutated foci.Position 32720079 doesn't seem to be mutated. Here are the mutated foci.Position 58992322 doesn't seem to be mutated. Here are the mutated foci.Position 59051350 doesn't seem to be mutated. Here are the mutated foci.Position 65560952 doesn't seem to be mutated. Here are the mutated foci.Position 133965344 doesn't seem to be mutated. Here are the mutated foci.Position 29244984 doesn't seem to be mutated. Here are the mutated foci.Position 1793878 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 95465084 doesn't seem to be mutated. Here are the mutated foci.Position 32436432 doesn't seem to be mutated. Here are the mutated foci.Position 111406024 doesn't seem to be mutated. Here are the mutated foci.Position 40170757 doesn't seem to be mutated. Here are the mutated foci.Position 3772302 doesn't seem to be mutated. Here are the mutated foci.Position 65523736 doesn't seem to be mutated. Here are the mutated foci.Position 1278950 doesn't seem to be mutated. Here are the mutated foci.Position 88999166 doesn't seem to be mutated. Here are the mutated foci.Position 119228799 doesn't seem to be mutated. Here are the mutated foci.Position 40164656 doesn't seem to be mutated. Here are the mutated foci.Position 77570185 doesn't seem to be mutated. Here are the mutated foci.Position 133538828 doesn't seem to be mutated. Here are the mutated foci.Position 80802413 doesn't seem to be mutated. Here are the mutated foci.Position 43102871 doesn't seem to be mutated. Here are the mutated foci.Position 61900966 doesn't seem to be mutated. Here are the mutated foci.Position 110936272 doesn't seem to be mutated. Here are the mutated foci.Position 50119523 doesn't seem to be mutated. Here are the mutated foci.Position 112783958 doesn't seem to be mutated. Here are the mutated foci.Position 43576449 doesn't seem to be mutated. Here are the mutated foci.Position 140772121 doesn't seem to be mutated. Here are the mutated foci.Position 102857927 doesn't seem to be mutated. Here are the mutated foci.Position 50183388 doesn't seem to be mutated. Here are the mutated foci.Position 68810039 doesn't seem to be mutated. Here are the mutated foci.Position 148856644 doesn't seem to be mutated. Here are the mutated foci.Position 25223809 doesn't seem to be mutated. Here are the mutated foci.Position 32380554 doesn't seem to be mutated. Here are the mutated foci.Position 90727752 doesn't seem to be mutated. Here are the mutated foci.Position 214765752 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 43588723 doesn't seem to be mutated. Here are the mutated foci.Position 95317011 doesn't seem to be mutated. Here are the mutated foci.Position 119283441 doesn't seem to be mutated. Here are the mutated foci.Position 68524184 doesn't seem to be mutated. Here are the mutated foci.Position 4086354 doesn't seem to be mutated. Here are the mutated foci.Position 41160369 doesn't seem to be mutated. Here are the mutated foci.Position 10054337 doesn't seem to be mutated. Here are the mutated foci.Position 138753655 doesn't seem to be mutated. Here are the mutated foci.Position 95196293 doesn't seem to be mutated. Here are the mutated foci.Position 95419927 doesn't seem to be mutated. Here are the mutated foci.Position 132650176 doesn't seem to be mutated. Here are the mutated foci.Position 35115897 doesn't seem to be mutated. Here are the mutated foci.Position 23834167 doesn't seem to be mutated. Here are the mutated foci.Position 29620726 doesn't seem to be mutated. Here are the mutated foci.Position 77710891 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 155900825 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 47779771 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 39197918 doesn't seem to be mutated. Here are the mutated foci.Position 42381569 doesn't seem to be mutated. Here are the mutated foci.Position 43062993 doesn't seem to be mutated. Here are the mutated foci.Position 45374064 doesn't seem to be mutated. Here are the mutated foci.Position 58880039 doesn't seem to be mutated. Here are the mutated foci.Position 155241546 doesn't seem to be mutated. Here are the mutated foci.Position 39003312 doesn't seem to be mutated. Here are the mutated foci.Position 80858000 doesn't seem to be mutated. Here are the mutated foci.Position 142752444 doesn't seem to be mutated. Here are the mutated foci.Position 118000152 doesn't seem to be mutated. Here are the mutated foci.Position 259730 doesn't seem to be mutated. Here are the mutated foci.Position 2105233 doesn't seem to be mutated. Here are the mutated foci.Position 95320249 doesn't seem to be mutated. Here are the mutated foci.Position 32434258 doesn't seem to be mutated. Here are the mutated foci.Position 48556593 doesn't seem to be mutated. Here are the mutated foci.Position 35557519 doesn't seem to be mutated. Here are the mutated foci.Position 35913146 doesn't seem to be mutated. Here are the mutated foci.Position 41149863 doesn't seem to be mutated. Here are the mutated foci.Position 77782747 doesn't seem to be mutated. Here are the mutated foci.Position 132557049 doesn't seem to be mutated. Here are the mutated foci.Position 96166908 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 39102269 doesn't seem to be mutated. Here are the mutated foci.Position 12660803 doesn't seem to be mutated. Here are the mutated foci.Position 157222225 doesn't seem to be mutated. Here are the mutated foci.Position 140821464 doesn't seem to be mutated. Here are the mutated foci.Position 47228755 doesn't seem to be mutated. Here are the mutated foci.Position 35084547 doesn't seem to be mutated. Here are the mutated foci.Position 41122620 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 41968702 doesn't seem to be mutated. Here are the mutated foci.Position 102638057 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 31332202 doesn't seem to be mutated. Here are the mutated foci.Position 35287370 doesn't seem to be mutated. Here are the mutated foci.Position 29636760 doesn't seem to be mutated. Here are the mutated foci.Position 124373556 doesn't seem to be mutated. Here are the mutated foci.Position 10249895 doesn't seem to be mutated. Here are the mutated foci.Position 10263281 doesn't seem to be mutated. Here are the mutated foci.Position 10263444 doesn't seem to be mutated. Here are the mutated foci.Position 17017355 doesn't seem to be mutated. Here are the mutated foci.Position 155245748 doesn't seem to be mutated. Here are the mutated foci.Position 161366833 doesn't seem to be mutated. Here are the mutated foci.Position 193233167 doesn't seem to be mutated. Here are the mutated foci.Position 231409024 doesn't seem to be mutated. Here are the mutated foci.Position 29318570 doesn't seem to be mutated. Here are the mutated foci.Position 29508465 doesn't seem to be mutated. Here are the mutated foci.Position 29617788 doesn't seem to be mutated. Here are the mutated foci.Position 29754032 doesn't seem to be mutated. Here are the mutated foci.Position 29769509 doesn't seem to be mutated. Here are the mutated foci.Position 38986464 doesn't seem to be mutated. Here are the mutated foci.Position 38986718 doesn't seem to be mutated. Here are the mutated foci.Position 39055361 doesn't seem to be mutated. Here are the mutated foci.Position 47423445 doesn't seem to be mutated. Here are the mutated foci.Position 47472567 doesn't seem to be mutated. Here are the mutated foci.Position 47631966 doesn't seem to be mutated. Here are the mutated foci.Position 47640448 doesn't seem to be mutated. Here are the mutated foci.Position 47803500 doesn't seem to be mutated. Here are the mutated foci.Position 58211207 doesn't seem to be mutated. Here are the mutated foci.Position 127265708 doesn't seem to be mutated. Here are the mutated foci.Position 144425989 doesn't seem to be mutated. Here are the mutated foci.Position 168947942 doesn't seem to be mutated. Here are the mutated foci.Position 168975713 doesn't seem to be mutated. Here are the mutated foci.Position 168996979 doesn't seem to be mutated. Here are the mutated foci.Position 168999279 doesn't seem to be mutated. Here are the mutated foci.Position 231960578 doesn't seem to be mutated. Here are the mutated foci.Position 232029858 doesn't seem to be mutated. Here are the mutated foci.Position 232086645 doesn't seem to be mutated. Here are the mutated foci.Position 232087434 doesn't seem to be mutated. Here are the mutated foci.Position 232144474 doesn't seem to be mutated. Here are the mutated foci.Position 10034185 doesn't seem to be mutated. Here are the mutated foci.Position 10062248 doesn't seem to be mutated. Here are the mutated foci.Position 10087657 doesn't seem to be mutated. Here are the mutated foci.Position 12636496 doesn't seem to be mutated. Here are the mutated foci.Position 37033476 doesn't seem to be mutated. Here are the mutated foci.Position 48581374 doesn't seem to be mutated. Here are the mutated foci.Position 48583748 doesn't seem to be mutated. Here are the mutated foci.Position 69804565 doesn't seem to be mutated. Here are the mutated foci.Position 69831242 doesn't seem to be mutated. Here are the mutated foci.Position 69870163 doesn't seem to be mutated. Here are the mutated foci.Position 69881644 doesn't seem to be mutated. Here are the mutated foci.Position 69936525 doesn't seem to be mutated. Here are the mutated foci.Position 128487394 doesn't seem to be mutated. Here are the mutated foci.Position 158607570 doesn't seem to be mutated. Here are the mutated foci.Position 179150016 doesn't seem to be mutated. Here are the mutated foci.Position 179172263 doesn't seem to be mutated. Here are the mutated foci.Position 179211666 doesn't seem to be mutated. Here are the mutated foci.Position 54726699 doesn't seem to be mutated. Here are the mutated foci.Position 56920130 doesn't seem to be mutated. Here are the mutated foci.Position 230532 doesn't seem to be mutated. Here are the mutated foci.Position 908960 doesn't seem to be mutated. Here are the mutated foci.Position 1274134 doesn't seem to be mutated. Here are the mutated foci.Position 80657652 doesn't seem to be mutated. Here are the mutated foci.Position 80831692 doesn't seem to be mutated. Here are the mutated foci.Position 80832617 doesn't seem to be mutated. Here are the mutated foci.Position 132619911 doesn't seem to be mutated. Here are the mutated foci.Position 138650422 doesn't seem to be mutated. Here are the mutated foci.Position 138762642 doesn't seem to be mutated. Here are the mutated foci.Position 138763422 doesn't seem to be mutated. Here are the mutated foci.Position 157185683 doesn't seem to be mutated. Here are the mutated foci.Position 157218940 doesn't seem to be mutated. Here are the mutated foci.Position 177162298 doesn't seem to be mutated. Here are the mutated foci.Position 177171307 doesn't seem to be mutated. Here are the mutated foci.Position 177176265 doesn't seem to be mutated. Here are the mutated foci.Position 43599638 doesn't seem to be mutated. Here are the mutated foci.Position 104731870 doesn't seem to be mutated. Here are the mutated foci.Position 104844345 doesn't seem to be mutated. Here are the mutated foci.Position 41967552 doesn't seem to be mutated. Here are the mutated foci.Position 42002076 doesn't seem to be mutated. Here are the mutated foci.Position 42002078 doesn't seem to be mutated. Here are the mutated foci.Position 42149667 doesn't seem to be mutated. Here are the mutated foci.Position 42190582 doesn't seem to be mutated. Here are the mutated foci.Position 42190971 doesn't seem to be mutated. Here are the mutated foci.Position 93131425 doesn't seem to be mutated. Here are the mutated foci.Position 116796309 doesn't seem to be mutated. Here are the mutated foci.Position 124839998 doesn't seem to be mutated. Here are the mutated foci.Position 124859707 doesn't seem to be mutated. Here are the mutated foci.Position 140728550 doesn't seem to be mutated. Here are the mutated foci.Position 140734796 doesn't seem to be mutated. Here are the mutated foci.Position 140808874 doesn't seem to be mutated. Here are the mutated foci.Position 148821597 doesn't seem to be mutated. Here are the mutated foci.Position 148874404 doesn't seem to be mutated. Here are the mutated foci.Position 148881970 doesn't seem to be mutated. Here are the mutated foci.Position 148881972 doesn't seem to be mutated. Here are the mutated foci.Position 148887283 doesn't seem to be mutated. Here are the mutated foci.Position 31062587 doesn't seem to be mutated. Here are the mutated foci.Position 31140766 doesn't seem to be mutated. Here are the mutated foci.Position 31157510 doesn't seem to be mutated. Here are the mutated foci.Position 89956981 doesn't seem to be mutated. Here are the mutated foci.Position 89991298 doesn't seem to be mutated. Here are the mutated foci.Position 89993876 doesn't seem to be mutated. Here are the mutated foci.Position 117826807 doesn't seem to be mutated. Here are the mutated foci.Position 117983321 doesn't seem to be mutated. Here are the mutated foci.Position 118013366 doesn't seem to be mutated. Here are the mutated foci.Position 118062056 doesn't seem to be mutated. Here are the mutated foci.Position 118102360 doesn't seem to be mutated. Here are the mutated foci.Position 118109307 doesn't seem to be mutated. Here are the mutated foci.Position 224671 doesn't seem to be mutated. Here are the mutated foci.Position 235914 doesn't seem to be mutated. Here are the mutated foci.Position 369436 doesn't seem to be mutated. Here are the mutated foci.Position 2019140 doesn't seem to be mutated. Here are the mutated foci.Position 2050626 doesn't seem to be mutated. Here are the mutated foci.Position 2125723 doesn't seem to be mutated. Here are the mutated foci.Position 2138185 doesn't seem to be mutated. Here are the mutated foci.Position 2160813 doesn't seem to be mutated. Here are the mutated foci.Position 21825285 doesn't seem to be mutated. Here are the mutated foci.Position 21826189 doesn't seem to be mutated. Here are the mutated foci.Position 21858653 doesn't seem to be mutated. Here are the mutated foci.Position 35077762 doesn't seem to be mutated. Here are the mutated foci.Position 36908267 doesn't seem to be mutated. Here are the mutated foci.Position 95175719 doesn't seem to be mutated. Here are the mutated foci.Position 95178044 doesn't seem to be mutated. Here are the mutated foci.Position 95238669 doesn't seem to be mutated. Here are the mutated foci.Position 95368084 doesn't seem to be mutated. Here are the mutated foci.Position 95391289 doesn't seem to be mutated. Here are the mutated foci.Position 95448731 doesn't seem to be mutated. Here are the mutated foci.Position 95452328 doesn't seem to be mutated. Here are the mutated foci.Position 95480921 doesn't seem to be mutated. Here are the mutated foci.Position 95510003 doesn't seem to be mutated. Here are the mutated foci.Position 97675433 doesn't seem to be mutated. Here are the mutated foci.Position 99125015 doesn't seem to be mutated. Here are the mutated foci.Position 43118955 doesn't seem to be mutated. Here are the mutated foci.Position 43119556 doesn't seem to be mutated. Here are the mutated foci.Position 61896411 doesn't seem to be mutated. Here are the mutated foci.Position 61935012 doesn't seem to be mutated. Here are the mutated foci.Position 62041551 doesn't seem to be mutated. Here are the mutated foci.Position 86812064 doesn't seem to be mutated. Here are the mutated foci.Position 86829924 doesn't seem to be mutated. Here are the mutated foci.Position 86875719 doesn't seem to be mutated. Here are the mutated foci.Position 87891959 doesn't seem to be mutated. Here are the mutated foci.Position 102541405 doesn't seem to be mutated. Here are the mutated foci.Position 102564493 doesn't seem to be mutated. Here are the mutated foci.Position 102614558 doesn't seem to be mutated. Here are the mutated foci.Position 110958729 doesn't seem to be mutated. Here are the mutated foci.Position 32417023 doesn't seem to be mutated. Here are the mutated foci.Position 61431030 doesn't seem to be mutated. Here are the mutated foci.Position 61443779 doesn't seem to be mutated. Here are the mutated foci.Position 61444571 doesn't seem to be mutated. Here are the mutated foci.Position 64811523 doesn't seem to be mutated. Here are the mutated foci.Position 108248934 doesn't seem to be mutated. Here are the mutated foci.Position 108322149 doesn't seem to be mutated. Here are the mutated foci.Position 108362107 doesn't seem to be mutated. Here are the mutated foci.Position 119225073 doesn't seem to be mutated. Here are the mutated foci.Position 119227554 doesn't seem to be mutated. Here are the mutated foci.Position 119280624 doesn't seem to be mutated. Here are the mutated foci.Position 11652079 doesn't seem to be mutated. Here are the mutated foci.Position 11716188 doesn't seem to be mutated. Here are the mutated foci.Position 11814360 doesn't seem to be mutated. Here are the mutated foci.Position 25206056 doesn't seem to be mutated. Here are the mutated foci.Position 112434607 doesn't seem to be mutated. Here are the mutated foci.Position 112445171 doesn't seem to be mutated. Here are the mutated foci.Position 112475952 doesn't seem to be mutated. Here are the mutated foci.Position 132654165 doesn't seem to be mutated. Here are the mutated foci.Position 132667027 doesn't seem to be mutated. Here are the mutated foci.Position 32334676 doesn't seem to be mutated. Here are the mutated foci.Position 32368820 doesn't seem to be mutated. Here are the mutated foci.Position 48313517 doesn't seem to be mutated. Here are the mutated foci.Position 48335656 doesn't seem to be mutated. Here are the mutated foci.Position 48414343 doesn't seem to be mutated. Here are the mutated foci.Position 48414349 doesn't seem to be mutated. Here are the mutated foci.Position 48485276 doesn't seem to be mutated. Here are the mutated foci.Position 95154867 doesn't seem to be mutated. Here are the mutated foci.Position 32743765 doesn't seem to be mutated. Here are the mutated foci.Position 40183074 doesn't seem to be mutated. Here are the mutated foci.Position 40214834 doesn't seem to be mutated. Here are the mutated foci.Position 40707697 doesn't seem to be mutated. Here are the mutated foci.Position 40714608 doesn't seem to be mutated. Here are the mutated foci.Position 80165568 doesn't seem to be mutated. Here are the mutated foci.Position 89256066 doesn't seem to be mutated. Here are the mutated foci.Position 89256916 doesn't seem to be mutated. Here are the mutated foci.Position 90732107 doesn't seem to be mutated. Here are the mutated foci.Position 2058787 doesn't seem to be mutated. Here are the mutated foci.Position 3764957 doesn't seem to be mutated. Here are the mutated foci.Position 23633713 doesn't seem to be mutated. Here are the mutated foci.Position 50794620 doesn't seem to be mutated. Here are the mutated foci.Position 68750334 doesn't seem to be mutated. Here are the mutated foci.Position 68771765 doesn't seem to be mutated. Here are the mutated foci.Position 68837245 doesn't seem to be mutated. Here are the mutated foci.Position 7691209 doesn't seem to be mutated. Here are the mutated foci.Position 17216395 doesn't seem to be mutated. Here are the mutated foci.Position 17221337 doesn't seem to be mutated. Here are the mutated foci.Position 17238736 doesn't seem to be mutated. Here are the mutated foci.Position 31118293 doesn't seem to be mutated. Here are the mutated foci.Position 31235639 doesn't seem to be mutated. Here are the mutated foci.Position 31261733 doesn't seem to be mutated. Here are the mutated foci.Position 31372436 doesn't seem to be mutated. Here are the mutated foci.Position 39198555 doesn't seem to be mutated. Here are the mutated foci.Position 42375830 doesn't seem to be mutated. Here are the mutated foci.Position 43068554 doesn't seem to be mutated. Here are the mutated foci.Position 58738723 doesn't seem to be mutated. Here are the mutated foci.Position 61722051 doesn't seem to be mutated. Here are the mutated foci.Position 61759889 doesn't seem to be mutated. Here are the mutated foci.Position 65562972 doesn't seem to be mutated. Here are the mutated foci.Position 853123 doesn't seem to be mutated. Here are the mutated foci.Position 4106171 doesn't seem to be mutated. Here are the mutated foci.Position 10980634 doesn't seem to be mutated. Here are the mutated foci.Position 45451946 doesn't seem to be mutated. Here are the mutated foci.Position 45452111 doesn't seem to be mutated. Here are the mutated foci.Position 50412464 doesn't seem to be mutated. Here are the mutated foci.Position 50412765 doesn't seem to be mutated. Here are the mutated foci.Position 32364441 doesn't seem to be mutated. Here are the mutated foci.Position 32434639 doesn't seem to be mutated. Here are the mutated foci.Position 34910384 doesn't seem to be mutated. Here are the mutated foci.Position 34932314 doesn't seem to be mutated. Here are the mutated foci.Position 34997338 doesn't seem to be mutated. Here are the mutated foci.Position 35084532 doesn't seem to be mutated. Here are the mutated foci.Position 35146562 doesn't seem to be mutated. Here are the mutated foci.Position 35313548 doesn't seem to be mutated. Here are the mutated foci.Position 35349783 doesn't seem to be mutated. Here are the mutated foci.Position 35535921 doesn't seem to be mutated. Here are the mutated foci.Position 35980204 doesn't seem to be mutated. Here are the mutated foci.Position 23807595 doesn't seem to be mutated. Here are the mutated foci.Position 29696825 doesn't seem to be mutated. Here are the mutated foci.Position 29699432 doesn't seem to be mutated. Here are the mutated foci.Position 41155240 doesn't seem to be mutated. Here are the mutated foci.Position 77557561 doesn't seem to be mutated. Here are the mutated foci.Position 77592813 doesn't seem to be mutated. Here are the mutated foci.Position 77627700 doesn't seem to be mutated. Here are the mutated foci.Position 77643262 doesn't seem to be mutated. Here are the mutated foci.Position 77731086 doesn't seem to be mutated. Here are the mutated foci.Position 77740077 doesn't seem to be mutated. Here are the mutated foci.Position 133532148 doesn't seem to be mutated. Here are the mutated foci.Position 133546399 doesn't seem to be mutated. Here are the mutated foci.Position 133600924 doesn't seem to be mutated. Here are the mutated foci.Position 133645601 doesn't seem to be mutated. Here are the mutated foci.Position 133722855 doesn't seem to be mutated. Here are the mutated foci.Position 133741282 doesn't seem to be mutated. Here are the mutated foci.Position 133803979 doesn't seem to be mutated. Here are the mutated foci.Position 133913925 doesn't seem to be mutated. Here are the mutated foci.Position 154762223 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 144402711 doesn't seem to be mutated. Here are the mutated foci.Position 45410814 doesn't seem to be mutated. Here are the mutated foci.Position 35917801 doesn't seem to be mutated. Here are the mutated foci.Position 133828847 doesn't seem to be mutated. Here are the mutated foci.Position 29621007 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 132922872 doesn't seem to be mutated. Here are the mutated foci.Position 3738314 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 12625970 doesn't seem to be mutated. Here are the mutated foci.Position 177515371 doesn't seem to be mutated. Here are the mutated foci.Position 25221597 doesn't seem to be mutated. Here are the mutated foci.Position 112424868 doesn't seem to be mutated. Here are the mutated foci.Position 80728217 doesn't seem to be mutated. Here are the mutated foci.Position 132648757 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 95508365 doesn't seem to be mutated. Here are the mutated foci.Position 42353274 doesn't seem to be mutated. Here are the mutated foci.Position 35769709 doesn't seem to be mutated. Here are the mutated foci.Position 41160419 doesn't seem to be mutated. Here are the mutated foci.Position 10205796 doesn't seem to be mutated. Here are the mutated foci.Position 44820417 doesn't seem to be mutated. Here are the mutated foci.Position 193163911 doesn't seem to be mutated. Here are the mutated foci.Position 193178565 doesn't seem to be mutated. Here are the mutated foci.Position 193221799 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 58168552 doesn't seem to be mutated. Here are the mutated foci.Position 138715031 doesn't seem to be mutated. Here are the mutated foci.Position 177184531 doesn't seem to be mutated. Here are the mutated foci.Position 104843111 doesn't seem to be mutated. Here are the mutated foci.Position 50308076 doesn't seem to be mutated. Here are the mutated foci.Position 148810519 doesn't seem to be mutated. Here are the mutated foci.Position 89985821 doesn't seem to be mutated. Here are the mutated foci.Position 117831357 doesn't seem to be mutated. Here are the mutated foci.Position 117963706 doesn't seem to be mutated. Here are the mutated foci.Position 21973648 doesn't seem to be mutated. Here are the mutated foci.Position 132926686 doesn't seem to be mutated. Here are the mutated foci.Position 108259939 doesn't seem to be mutated. Here are the mutated foci.Position 108304722 doesn't seem to be mutated. Here are the mutated foci.Position 90734613 doesn't seem to be mutated. Here are the mutated foci.Position 65540750 doesn't seem to be mutated. Here are the mutated foci.Position 35056493 doesn't seem to be mutated. Here are the mutated foci.Position 35349983 doesn't seem to be mutated. Here are the mutated foci.Position 20982391 doesn't seem to be mutated. Here are the mutated foci.Position 133781206 doesn't seem to be mutated. Here are the mutated foci.Position 133980496 doesn't seem to be mutated. Here are the mutated foci.Position 29343209 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 38414792 doesn't seem to be mutated. Here are the mutated foci.Position 95156948 doesn't seem to be mutated. Here are the mutated foci.Position 31226679 doesn't seem to be mutated. Here are the mutated foci.Position 76482251 doesn't seem to be mutated. Here are the mutated foci.Position 51040437 doesn't seem to be mutated. Here are the mutated foci.Position 32369475 doesn't seem to be mutated. Here are the mutated foci.Position 29732002 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 12641369 doesn't seem to be mutated. Here are the mutated foci.Position 54246910 doesn't seem to be mutated. Here are the mutated foci.Position 54246923 doesn't seem to be mutated. Here are the mutated foci.Position 43125102 doesn't seem to be mutated. Here are the mutated foci.Position 40178038 doesn't seem to be mutated. Here are the mutated foci.Position 34913897 doesn't seem to be mutated. Here are the mutated foci.Position 35222286 doesn't seem to be mutated. Here are the mutated foci.Position 35523083 doesn't seem to be mutated. Here are the mutated foci.Position 77542564 doesn't seem to be mutated. Here are the mutated foci.Position 42128727 doesn't seem to be mutated. Here are the mutated foci.Position 58703796 doesn't seem to be mutated. Here are the mutated foci.Position 32382036 doesn't seem to be mutated. Here are the mutated foci.Position 35500638 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 66467496 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 77680873 doesn't seem to be mutated. Here are the mutated foci.Position 133840590 doesn't seem to be mutated. Here are the mutated foci.Position 161352834 doesn't seem to be mutated. Here are the mutated foci.Position 138632576 doesn't seem to be mutated. Here are the mutated foci.Position 138714633 doesn't seem to be mutated. Here are the mutated foci.Position 117851510 doesn't seem to be mutated. Here are the mutated foci.Position 117988566 doesn't seem to be mutated. Here are the mutated foci.Position 119083210 doesn't seem to be mutated. Here are the mutated foci.Position 155243781 doesn't seem to be mutated. Here are the mutated foci.Position 193120419 doesn't seem to be mutated. Here are the mutated foci.Position 193232458 doesn't seem to be mutated. Here are the mutated foci.Position 14144576 doesn't seem to be mutated. Here are the mutated foci.Position 119240298 doesn't seem to be mutated. Here are the mutated foci.Position 31302678 doesn't seem to be mutated. Here are the mutated foci.Position 40639220 doesn't seem to be mutated. Here are the mutated foci.Position 155243781 doesn't seem to be mutated. Here are the mutated foci.Position 155244850 doesn't seem to be mutated. Here are the mutated foci.Position 241494013 doesn't seem to be mutated. Here are the mutated foci.Position 179234297 doesn't seem to be mutated. Here are the mutated foci.Position 177175460 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 112450395 doesn't seem to be mutated. Here are the mutated foci.Position 104773073 doesn't seem to be mutated. Here are the mutated foci.Position 50797357 doesn't seem to be mutated. Here are the mutated foci.Position 156867578 doesn't seem to be mutated. Here are the mutated foci.Position 54660499 doesn't seem to be mutated. Here are the mutated foci.Position 177295541 doesn't seem to be mutated. Here are the mutated foci.Position 66996041 doesn't seem to be mutated. Here are the mutated foci.Position 62038370 doesn't seem to be mutated. Here are the mutated foci.Position 119275602 doesn't seem to be mutated. Here are the mutated foci.Position 40711853 doesn't seem to be mutated. Here are the mutated foci.Position 34930714 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 177133755 doesn't seem to be mutated. Here are the mutated foci.Position 140752860 doesn't seem to be mutated. Here are the mutated foci.Position 117873800 doesn't seem to be mutated. Here are the mutated foci.Position 95317011 doesn't seem to be mutated. Here are the mutated foci.Position 87872090 doesn't seem to be mutated. Here are the mutated foci.Position 10960813 doesn't seem to be mutated. Here are the mutated foci.Position 35324648 doesn't seem to be mutated. Here are the mutated foci.Position 3581171 doesn't seem to be mutated. Here are the mutated foci.Position 214772310 doesn't seem to be mutated. Here are the mutated foci.Position 69950631 doesn't seem to be mutated. Here are the mutated foci.Position 80739172 doesn't seem to be mutated. Here are the mutated foci.Position 116708665 doesn't seem to be mutated. Here are the mutated foci.Position 97700792 doesn't seem to be mutated. Here are the mutated foci.Position 45447875 doesn't seem to be mutated. Here are the mutated foci.Position 35942755 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 177515371 doesn't seem to be mutated. Here are the mutated foci.Position 66985539 doesn't seem to be mutated. Here are the mutated foci.Position 95196293 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 258391 doesn't seem to be mutated. Here are the mutated foci.Position 140748508 doesn't seem to be mutated. Here are the mutated foci.Position 2884503 doesn't seem to be mutated. Here are the mutated foci.Position 12723908 doesn't seem to be mutated. Here are the mutated foci.Position 50192182 doesn't seem to be mutated. Here are the mutated foci.Position 114713909 doesn't seem to be mutated. Here are the mutated foci.Position 155241237 doesn't seem to be mutated. Here are the mutated foci.Position 241520474 doesn't seem to be mutated. Here are the mutated foci.Position 29267123 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 116768027 doesn't seem to be mutated. Here are the mutated foci.Position 2019318 doesn't seem to be mutated. Here are the mutated foci.Position 99116632 doesn't seem to be mutated. Here are the mutated foci.Position 77892463 doesn't seem to be mutated. Here are the mutated foci.Position 58709247 doesn't seem to be mutated. Here are the mutated foci.Position 58724653 doesn't seem to be mutated. Here are the mutated foci.Position 10968425 doesn't seem to be mutated. Here are the mutated foci.Position 133570186 doesn't seem to be mutated. Here are the mutated foci.Position 155904974 doesn't seem to be mutated. Here are the mutated foci.Position 3880504 doesn't seem to be mutated. Here are the mutated foci.Position 7678458 doesn't seem to be mutated. Here are the mutated foci.Position 77671294 doesn't seem to be mutated. Here are the mutated foci.Position 55202942 doesn't seem to be mutated. Here are the mutated foci.Position 148848926 doesn't seem to be mutated. Here are the mutated foci.Position 95358075 doesn't seem to be mutated. Here are the mutated foci.Position 66468953 doesn't seem to be mutated. Here are the mutated foci.Position 35612847 doesn't seem to be mutated. Here are the mutated foci.Position 29411495 doesn't seem to be mutated. Here are the mutated foci.Position 69814659 doesn't seem to be mutated. Here are the mutated foci.Position 112734793 doesn't seem to be mutated. Here are the mutated foci.Position 26101670 doesn't seem to be mutated. Here are the mutated foci.Position 104857203 doesn't seem to be mutated. Here are the mutated foci.Position 50304149 doesn't seem to be mutated. Here are the mutated foci.Position 55069479 doesn't seem to be mutated. Here are the mutated foci.Position 31059490 doesn't seem to be mutated. Here are the mutated foci.Position 117895190 doesn't seem to be mutated. Here are the mutated foci.Position 22625541 doesn't seem to be mutated. Here are the mutated foci.Position 38260515 doesn't seem to be mutated. Here are the mutated foci.Position 80153613 doesn't seem to be mutated. Here are the mutated foci.Position 51062903 doesn't seem to be mutated. Here are the mutated foci.Position 34792313 doesn't seem to be mutated. Here are the mutated foci.Position 35652096 doesn't seem to be mutated. Here are the mutated foci.Position 29688877 doesn't seem to be mutated. Here are the mutated foci.Position 14861134 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 1285293 doesn't seem to be mutated. Here are the mutated foci.Position 124874946 doesn't seem to be mutated. Here are the mutated foci.Position 140781602 doesn't seem to be mutated. Here are the mutated foci.Position 87948239 doesn't seem to be mutated. Here are the mutated foci.Position 48304764 doesn't seem to be mutated. Here are the mutated foci.Position 50231786 doesn't seem to be mutated. Here are the mutated foci.Position 94385398 doesn't seem to be mutated. Here are the mutated foci.Position 10961151 doesn't seem to be mutated. Here are the mutated foci.Position 35312208 doesn't seem to be mutated. Here are the mutated foci.Position 55038729 doesn't seem to be mutated. Here are the mutated foci.Position 117851510 doesn't seem to be mutated. Here are the mutated foci.Position 35099863 doesn't seem to be mutated. Here are the mutated foci.Position 102878808 doesn't seem to be mutated. Here are the mutated foci.Position 35064444 doesn't seem to be mutated. Here are the mutated foci.Position 10206220 doesn't seem to be mutated. Here are the mutated foci.Position 10207139 doesn't seem to be mutated. Here are the mutated foci.Position 10207723 doesn't seem to be mutated. Here are the mutated foci.Position 10210363 doesn't seem to be mutated. Here are the mutated foci.Position 10210634 doesn't seem to be mutated. Here are the mutated foci.Position 10215289 doesn't seem to be mutated. Here are the mutated foci.Position 10218583 doesn't seem to be mutated. Here are the mutated foci.Position 10223367 doesn't seem to be mutated. Here are the mutated foci.Position 10224447 doesn't seem to be mutated. Here are the mutated foci.Position 10226074 doesn't seem to be mutated. Here are the mutated foci.Position 10229836 doesn't seem to be mutated. Here are the mutated foci.Position 10230104 doesn't seem to be mutated. Here are the mutated foci.Position 10235245 doesn't seem to be mutated. Here are the mutated foci.Position 10235963 doesn't seem to be mutated. Here are the mutated foci.Position 10237241 doesn't seem to be mutated. Here are the mutated foci.Position 10239344 doesn't seem to be mutated. Here are the mutated foci.Position 10241695 doesn't seem to be mutated. Here are the mutated foci.Position 10244127 doesn't seem to be mutated. Here are the mutated foci.Position 10245287 doesn't seem to be mutated. Here are the mutated foci.Position 10245650 doesn't seem to be mutated. Here are the mutated foci.Position 10250644 doesn't seem to be mutated. Here are the mutated foci.Position 10251916 doesn't seem to be mutated. Here are the mutated foci.Position 10253002 doesn't seem to be mutated. Here are the mutated foci.Position 10257869 doesn't seem to be mutated. Here are the mutated foci.Position 10258720 doesn't seem to be mutated. Here are the mutated foci.Position 10261519 doesn't seem to be mutated. Here are the mutated foci.Position 10264503 doesn't seem to be mutated. Here are the mutated foci.Position 10268128 doesn't seem to be mutated. Here are the mutated foci.Position 10271975 doesn't seem to be mutated. Here are the mutated foci.Position 10274269 doesn't seem to be mutated. Here are the mutated foci.Position 10284270 doesn't seem to be mutated. Here are the mutated foci.Position 10286027 doesn't seem to be mutated. Here are the mutated foci.Position 10299316 doesn't seem to be mutated. Here are the mutated foci.Position 10307208 doesn't seem to be mutated. Here are the mutated foci.Position 10308252 doesn't seem to be mutated. Here are the mutated foci.Position 10310490 doesn't seem to be mutated. Here are the mutated foci.Position 10321383 doesn't seem to be mutated. Here are the mutated foci.Position 10322302 doesn't seem to be mutated. Here are the mutated foci.Position 10326216 doesn't seem to be mutated. Here are the mutated foci.Position 10328249 doesn't seem to be mutated. Here are the mutated foci.Position 10329630 doesn't seem to be mutated. Here are the mutated foci.Position 10334581 doesn't seem to be mutated. Here are the mutated foci.Position 10336908 doesn't seem to be mutated. Here are the mutated foci.Position 10340030 doesn't seem to be mutated. Here are the mutated foci.Position 10340925 doesn't seem to be mutated. Here are the mutated foci.Position 10342875 doesn't seem to be mutated. Here are the mutated foci.Position 10343009 doesn't seem to be mutated. Here are the mutated foci.Position 10356711 doesn't seem to be mutated. Here are the mutated foci.Position 10361623 doesn't seem to be mutated. Here are the mutated foci.Position 10361789 doesn't seem to be mutated. Here are the mutated foci.Position 10364963 doesn't seem to be mutated. Here are the mutated foci.Position 10367037 doesn't seem to be mutated. Here are the mutated foci.Position 10370019 doesn't seem to be mutated. Here are the mutated foci.Position 10371993 doesn't seem to be mutated. Here are the mutated foci.Position 10372143 doesn't seem to be mutated. Here are the mutated foci.Position 10373884 doesn't seem to be mutated. Here are the mutated foci.Position 10373887 doesn't seem to be mutated. Here are the mutated foci.Position 10375271 doesn't seem to be mutated. Here are the mutated foci.Position 10379245 doesn't seem to be mutated. Here are the mutated foci.Position 10380282 doesn't seem to be mutated. Here are the mutated foci.Position 17019783 doesn't seem to be mutated. Here are the mutated foci.Position 17020806 doesn't seem to be mutated. Here are the mutated foci.Position 17029012 doesn't seem to be mutated. Here are the mutated foci.Position 17033236 doesn't seem to be mutated. Here are the mutated foci.Position 17034156 doesn't seem to be mutated. Here are the mutated foci.Position 17037736 doesn't seem to be mutated. Here are the mutated foci.Position 17039800 doesn't seem to be mutated. Here are the mutated foci.Position 17042986 doesn't seem to be mutated. Here are the mutated foci.Position 17045284 doesn't seem to be mutated. Here are the mutated foci.Position 17045416 doesn't seem to be mutated. Here are the mutated foci.Position 17048774 doesn't seem to be mutated. Here are the mutated foci.Position 17049007 doesn't seem to be mutated. Here are the mutated foci.Position 17049790 doesn't seem to be mutated. Here are the mutated foci.Position 17050823 doesn't seem to be mutated. Here are the mutated foci.Position 17054069 doesn't seem to be mutated. Here are the mutated foci.Position 17057287 doesn't seem to be mutated. Here are the mutated foci.Position 23687357 doesn't seem to be mutated. Here are the mutated foci.Position 23687454 doesn't seem to be mutated. Here are the mutated foci.Position 23688379 doesn't seem to be mutated. Here are the mutated foci.Position 23688914 doesn't seem to be mutated. Here are the mutated foci.Position 23689382 doesn't seem to be mutated. Here are the mutated foci.Position 23689384 doesn't seem to be mutated. Here are the mutated foci.Position 23693041 doesn't seem to be mutated. Here are the mutated foci.Position 23693188 doesn't seem to be mutated. Here are the mutated foci.Position 23693313 doesn't seem to be mutated. Here are the mutated foci.Position 23693977 doesn't seem to be mutated. Here are the mutated foci.Position 23695037 doesn't seem to be mutated. Here are the mutated foci.Position 23695121 doesn't seem to be mutated. Here are the mutated foci.Position 23696545 doesn't seem to be mutated. Here are the mutated foci.Position 23699479 doesn't seem to be mutated. Here are the mutated foci.Position 43333749 doesn't seem to be mutated. Here are the mutated foci.Position 43338103 doesn't seem to be mutated. Here are the mutated foci.Position 43339787 doesn't seem to be mutated. Here are the mutated foci.Position 43346651 doesn't seem to be mutated. Here are the mutated foci.Position 43347242 doesn't seem to be mutated. Here are the mutated foci.Position 43347349 doesn't seem to be mutated. Here are the mutated foci.Position 43347827 doesn't seem to be mutated. Here are the mutated foci.Position 43349298 doesn't seem to be mutated. Here are the mutated foci.Position 43350663 doesn't seem to be mutated. Here are the mutated foci.Position 43352574 doesn't seem to be mutated. Here are the mutated foci.Position 43353672 doesn't seem to be mutated. Here are the mutated foci.Position 44816987 doesn't seem to be mutated. Here are the mutated foci.Position 44817058 doesn't seem to be mutated. Here are the mutated foci.Position 44818713 doesn't seem to be mutated. Here are the mutated foci.Position 44819120 doesn't seem to be mutated. Here are the mutated foci.Position 44819664 doesn't seem to be mutated. Here are the mutated foci.Position 44820988 doesn't seem to be mutated. Here are the mutated foci.Position 44821618 doesn't seem to be mutated. Here are the mutated foci.Position 44821864 doesn't seem to be mutated. Here are the mutated foci.Position 44822354 doesn't seem to be mutated. Here are the mutated foci.Position 44822395 doesn't seem to be mutated. Here are the mutated foci.Position 44823660 doesn't seem to be mutated. Here are the mutated foci.Position 44824001 doesn't seem to be mutated. Here are the mutated foci.Position 44826276 doesn't seem to be mutated. Here are the mutated foci.Position 44835596 doesn't seem to be mutated. Here are the mutated foci.Position 44837461 doesn't seem to be mutated. Here are the mutated foci.Position 44838120 doesn't seem to be mutated. Here are the mutated foci.Position 44841073 doesn't seem to be mutated. Here are the mutated foci.Position 44844342 doesn't seem to be mutated. Here are the mutated foci.Position 44844591 doesn't seem to be mutated. Here are the mutated foci.Position 45014424 doesn't seem to be mutated. Here are the mutated foci.Position 45015901 doesn't seem to be mutated. Here are the mutated foci.Position 45330315 doesn't seem to be mutated. Here are the mutated foci.Position 45330561 doesn't seem to be mutated. Here are the mutated foci.Position 45331121 doesn't seem to be mutated. Here are the mutated foci.Position 45332125 doesn't seem to be mutated. Here are the mutated foci.Position 45337389 doesn't seem to be mutated. Here are the mutated foci.Position 45339402 doesn't seem to be mutated. Here are the mutated foci.Position 92828366 doesn't seem to be mutated. Here are the mutated foci.Position 92828482 doesn't seem to be mutated. Here are the mutated foci.Position 92829230 doesn't seem to be mutated. Here are the mutated foci.Position 92832984 doesn't seem to be mutated. Here are the mutated foci.Position 92834783 doesn't seem to be mutated. Here are the mutated foci.Position 92841855 doesn't seem to be mutated. Here are the mutated foci.Position 114703429 doesn't seem to be mutated. Here are the mutated foci.Position 114705032 doesn't seem to be mutated. Here are the mutated foci.Position 114706928 doesn't seem to be mutated. Here are the mutated foci.Position 114711264 doesn't seem to be mutated. Here are the mutated foci.Position 114713818 doesn't seem to be mutated. Here are the mutated foci.Position 114715505 doesn't seem to be mutated. Here are the mutated foci.Position 114716224 doesn't seem to be mutated. Here are the mutated foci.Position 154273447 doesn't seem to be mutated. Here are the mutated foci.Position 154277494 doesn't seem to be mutated. Here are the mutated foci.Position 155231876 doesn't seem to be mutated. Here are the mutated foci.Position 155233142 doesn't seem to be mutated. Here are the mutated foci.Position 155233303 doesn't seem to be mutated. Here are the mutated foci.Position 155237032 doesn't seem to be mutated. Here are the mutated foci.Position 155237330 doesn't seem to be mutated. Here are the mutated foci.Position 155242018 doesn't seem to be mutated. Here are the mutated foci.Position 155245441 doesn't seem to be mutated. Here are the mutated foci.Position 155899812 doesn't seem to be mutated. Here are the mutated foci.Position 155900474 doesn't seem to be mutated. Here are the mutated foci.Position 155902321 doesn't seem to be mutated. Here are the mutated foci.Position 155907086 doesn't seem to be mutated. Here are the mutated foci.Position 156828913 doesn't seem to be mutated. Here are the mutated foci.Position 156831969 doesn't seem to be mutated. Here are the mutated foci.Position 156833328 doesn't seem to be mutated. Here are the mutated foci.Position 156834698 doesn't seem to be mutated. Here are the mutated foci.Position 156861194 doesn't seem to be mutated. Here are the mutated foci.Position 156867775 doesn't seem to be mutated. Here are the mutated foci.Position 156869149 doesn't seem to be mutated. Here are the mutated foci.Position 156872739 doesn't seem to be mutated. Here are the mutated foci.Position 156872885 doesn't seem to be mutated. Here are the mutated foci.Position 156873896 doesn't seem to be mutated. Here are the mutated foci.Position 156874380 doesn't seem to be mutated. Here are the mutated foci.Position 156874922 doesn't seem to be mutated. Here are the mutated foci.Position 156875402 doesn't seem to be mutated. Here are the mutated foci.Position 156875805 doesn't seem to be mutated. Here are the mutated foci.Position 156876120 doesn't seem to be mutated. Here are the mutated foci.Position 156876972 doesn't seem to be mutated. Here are the mutated foci.Position 156877095 doesn't seem to be mutated. Here are the mutated foci.Position 156877905 doesn't seem to be mutated. Here are the mutated foci.Position 156879712 doesn't seem to be mutated. Here are the mutated foci.Position 156880727 doesn't seem to be mutated. Here are the mutated foci.Position 156883967 doesn't seem to be mutated. Here are the mutated foci.Position 156883975 doesn't seem to be mutated. Here are the mutated foci.Position 156884608 doesn't seem to be mutated. Here are the mutated foci.Position 156884771 doesn't seem to be mutated. Here are the mutated foci.Position 156886525 doesn't seem to be mutated. Here are the mutated foci.Position 161311056 doesn't seem to be mutated. Here are the mutated foci.Position 161312017 doesn't seem to be mutated. Here are the mutated foci.Position 161316987 doesn't seem to be mutated. Here are the mutated foci.Position 161322803 doesn't seem to be mutated. Here are the mutated foci.Position 161322969 doesn't seem to be mutated. Here are the mutated foci.Position 161324799 doesn't seem to be mutated. Here are the mutated foci.Position 161329414 doesn't seem to be mutated. Here are the mutated foci.Position 161329493 doesn't seem to be mutated. Here are the mutated foci.Position 161330094 doesn't seem to be mutated. Here are the mutated foci.Position 161330550 doesn't seem to be mutated. Here are the mutated foci.Position 161330666 doesn't seem to be mutated. Here are the mutated foci.Position 161331848 doesn't seem to be mutated. Here are the mutated foci.Position 161334529 doesn't seem to be mutated. Here are the mutated foci.Position 161334691 doesn't seem to be mutated. Here are the mutated foci.Position 161334990 doesn't seem to be mutated. Here are the mutated foci.Position 161341499 doesn't seem to be mutated. Here are the mutated foci.Position 161342832 doesn't seem to be mutated. Here are the mutated foci.Position 161343194 doesn't seem to be mutated. Here are the mutated foci.Position 161344176 doesn't seem to be mutated. Here are the mutated foci.Position 161347848 doesn't seem to be mutated. Here are the mutated foci.Position 161350401 doesn't seem to be mutated. Here are the mutated foci.Position 161352744 doesn't seem to be mutated. Here are the mutated foci.Position 161353185 doesn't seem to be mutated. Here are the mutated foci.Position 161353645 doesn't seem to be mutated. Here are the mutated foci.Position 161364193 doesn't seem to be mutated. Here are the mutated foci.Position 161364309 doesn't seem to be mutated. Here are the mutated foci.Position 161367746 doesn't seem to be mutated. Here are the mutated foci.Position 161369379 doesn't seem to be mutated. Here are the mutated foci.Position 161372203 doesn't seem to be mutated. Here are the mutated foci.Position 161373925 doesn't seem to be mutated. Here are the mutated foci.Position 193120751 doesn't seem to be mutated. Here are the mutated foci.Position 193123025 doesn't seem to be mutated. Here are the mutated foci.Position 193123953 doesn't seem to be mutated. Here are the mutated foci.Position 193128425 doesn't seem to be mutated. Here are the mutated foci.Position 193128984 doesn't seem to be mutated. Here are the mutated foci.Position 193131429 doesn't seem to be mutated. Here are the mutated foci.Position 193132097 doesn't seem to be mutated. Here are the mutated foci.Position 193134356 doesn't seem to be mutated. Here are the mutated foci.Position 193139066 doesn't seem to be mutated. Here are the mutated foci.Position 193142094 doesn't seem to be mutated. Here are the mutated foci.Position 193145731 doesn't seem to be mutated. Here are the mutated foci.Position 193147075 doesn't seem to be mutated. Here are the mutated foci.Position 193147604 doesn't seem to be mutated. Here are the mutated foci.Position 193154151 doesn't seem to be mutated. Here are the mutated foci.Position 193159610 doesn't seem to be mutated. Here are the mutated foci.Position 193165674 doesn't seem to be mutated. Here are the mutated foci.Position 193176712 doesn't seem to be mutated. Here are the mutated foci.Position 193202188 doesn't seem to be mutated. Here are the mutated foci.Position 193202920 doesn't seem to be mutated. Here are the mutated foci.Position 193204376 doesn't seem to be mutated. Here are the mutated foci.Position 193208825 doesn't seem to be mutated. Here are the mutated foci.Position 193217661 doesn't seem to be mutated. Here are the mutated foci.Position 193223725 doesn't seem to be mutated. Here are the mutated foci.Position 193229808 doesn't seem to be mutated. Here are the mutated foci.Position 193229828 doesn't seem to be mutated. Here are the mutated foci.Position 193230989 doesn't seem to be mutated. Here are the mutated foci.Position 193232085 doesn't seem to be mutated. Here are the mutated foci.Position 193232458 doesn't seem to be mutated. Here are the mutated foci.Position 193236879 doesn't seem to be mutated. Here are the mutated foci.Position 193242730 doesn't seem to be mutated. Here are the mutated foci.Position 193244076 doesn't seem to be mutated. Here are the mutated foci.Position 193249125 doesn't seem to be mutated. Here are the mutated foci.Position 193255728 doesn't seem to be mutated. Here are the mutated foci.Position 193258861 doesn't seem to be mutated. Here are the mutated foci.Position 231365431 doesn't seem to be mutated. Here are the mutated foci.Position 231374103 doesn't seem to be mutated. Here are the mutated foci.Position 231382789 doesn't seem to be mutated. Here are the mutated foci.Position 231383283 doesn't seem to be mutated. Here are the mutated foci.Position 231386919 doesn't seem to be mutated. Here are the mutated foci.Position 231387798 doesn't seem to be mutated. Here are the mutated foci.Position 231388149 doesn't seem to be mutated. Here are the mutated foci.Position 231388932 doesn't seem to be mutated. Here are the mutated foci.Position 231389281 doesn't seem to be mutated. Here are the mutated foci.Position 231389633 doesn't seem to be mutated. Here are the mutated foci.Position 231389724 doesn't seem to be mutated. Here are the mutated foci.Position 231390162 doesn't seem to be mutated. Here are the mutated foci.Position 231390816 doesn't seem to be mutated. Here are the mutated foci.Position 231392340 doesn't seem to be mutated. Here are the mutated foci.Position 231393464 doesn't seem to be mutated. Here are the mutated foci.Position 231393600 doesn't seem to be mutated. Here are the mutated foci.Position 231396856 doesn't seem to be mutated. Here are the mutated foci.Position 231398687 doesn't seem to be mutated. Here are the mutated foci.Position 231400535 doesn't seem to be mutated. Here are the mutated foci.Position 231401376 doesn't seem to be mutated. Here are the mutated foci.Position 231403457 doesn't seem to be mutated. Here are the mutated foci.Position 231406566 doesn't seem to be mutated. Here are the mutated foci.Position 231409591 doesn't seem to be mutated. Here are the mutated foci.Position 231416561 doesn't seem to be mutated. Here are the mutated foci.Position 231422984 doesn't seem to be mutated. Here are the mutated foci.Position 241493515 doesn't seem to be mutated. Here are the mutated foci.Position 241494851 doesn't seem to be mutated. Here are the mutated foci.Position 241501555 doesn't seem to be mutated. Here are the mutated foci.Position 241501732 doesn't seem to be mutated. Here are the mutated foci.Position 241507033 doesn't seem to be mutated. Here are the mutated foci.Position 241510518 doesn't seem to be mutated. Here are the mutated foci.Position 241517242 doesn't seem to be mutated. Here are the mutated foci.Position 241519397 doesn't seem to be mutated. Here are the mutated foci.Position 241519807 doesn't seem to be mutated. Here are the mutated foci.Position 241520331 doesn't seem to be mutated. Here are the mutated foci.Position 241523409 doesn't seem to be mutated. Here are the mutated foci.Position 241524184 doesn't seem to be mutated. Here are the mutated foci.Position 3571125 doesn't seem to be mutated. Here are the mutated foci.Position 3578523 doesn't seem to be mutated. Here are the mutated foci.Position 3581576 doesn't seem to be mutated. Here are the mutated foci.Position 3585447 doesn't seem to be mutated. Here are the mutated foci.Position 3585464 doesn't seem to be mutated. Here are the mutated foci.Position 29197378 doesn't seem to be mutated. Here are the mutated foci.Position 29207708 doesn't seem to be mutated. Here are the mutated foci.Position 29208369 doesn't seem to be mutated. Here are the mutated foci.Position 29208560 doesn't seem to be mutated. Here are the mutated foci.Position 29209832 doesn't seem to be mutated. Here are the mutated foci.Position 29215089 doesn't seem to be mutated. Here are the mutated foci.Position 29217698 doesn't seem to be mutated. Here are the mutated foci.Position 29219693 doesn't seem to be mutated. Here are the mutated foci.Position 29222647 doesn't seem to be mutated. Here are the mutated foci.Position 29225367 doesn't seem to be mutated. Here are the mutated foci.Position 29225547 doesn't seem to be mutated. Here are the mutated foci.Position 29230431 doesn't seem to be mutated. Here are the mutated foci.Position 29232063 doesn't seem to be mutated. Here are the mutated foci.Position 29232628 doesn't seem to be mutated. Here are the mutated foci.Position 29233993 doesn't seem to be mutated. Here are the mutated foci.Position 29234725 doesn't seem to be mutated. Here are the mutated foci.Position 29235165 doesn't seem to be mutated. Here are the mutated foci.Position 29239048 doesn't seem to be mutated. Here are the mutated foci.Position 29239161 doesn't seem to be mutated. Here are the mutated foci.Position 29244493 doesn't seem to be mutated. Here are the mutated foci.Position 29244617 doesn't seem to be mutated. Here are the mutated foci.Position 29248765 doesn't seem to be mutated. Here are the mutated foci.Position 29249877 doesn't seem to be mutated. Here are the mutated foci.Position 29254542 doesn't seem to be mutated. Here are the mutated foci.Position 29256257 doesn't seem to be mutated. Here are the mutated foci.Position 29259996 doesn't seem to be mutated. Here are the mutated foci.Position 29261520 doesn't seem to be mutated. Here are the mutated foci.Position 29264947 doesn't seem to be mutated. Here are the mutated foci.Position 29276013 doesn't seem to be mutated. Here are the mutated foci.Position 29277422 doesn't seem to be mutated. Here are the mutated foci.Position 29278213 doesn't seem to be mutated. Here are the mutated foci.Position 29278502 doesn't seem to be mutated. Here are the mutated foci.Position 29279100 doesn't seem to be mutated. Here are the mutated foci.Position 29282638 doesn't seem to be mutated. Here are the mutated foci.Position 29283777 doesn't seem to be mutated. Here are the mutated foci.Position 29284803 doesn't seem to be mutated. Here are the mutated foci.Position 29284857 doesn't seem to be mutated. Here are the mutated foci.Position 29285350 doesn't seem to be mutated. Here are the mutated foci.Position 29285780 doesn't seem to be mutated. Here are the mutated foci.Position 29287610 doesn't seem to be mutated. Here are the mutated foci.Position 29288522 doesn't seem to be mutated. Here are the mutated foci.Position 29297652 doesn't seem to be mutated. Here are the mutated foci.Position 29311220 doesn't seem to be mutated. Here are the mutated foci.Position 29312539 doesn't seem to be mutated. Here are the mutated foci.Position 29320279 doesn't seem to be mutated. Here are the mutated foci.Position 29322136 doesn't seem to be mutated. Here are the mutated foci.Position 29322860 doesn't seem to be mutated. Here are the mutated foci.Position 29325673 doesn't seem to be mutated. Here are the mutated foci.Position 29328951 doesn't seem to be mutated. Here are the mutated foci.Position 29332804 doesn't seem to be mutated. Here are the mutated foci.Position 29333408 doesn't seem to be mutated. Here are the mutated foci.Position 29333622 doesn't seem to be mutated. Here are the mutated foci.Position 29333696 doesn't seem to be mutated. Here are the mutated foci.Position 29338235 doesn't seem to be mutated. Here are the mutated foci.Position 29339063 doesn't seem to be mutated. Here are the mutated foci.Position 29343353 doesn't seem to be mutated. Here are the mutated foci.Position 29349212 doesn't seem to be mutated. Here are the mutated foci.Position 29349511 doesn't seem to be mutated. Here are the mutated foci.Position 29352200 doesn't seem to be mutated. Here are the mutated foci.Position 29352513 doesn't seem to be mutated. Here are the mutated foci.Position 29358475 doesn't seem to be mutated. Here are the mutated foci.Position 29359915 doesn't seem to be mutated. Here are the mutated foci.Position 29368177 doesn't seem to be mutated. Here are the mutated foci.Position 29370718 doesn't seem to be mutated. Here are the mutated foci.Position 29372155 doesn't seem to be mutated. Here are the mutated foci.Position 29374706 doesn't seem to be mutated. Here are the mutated foci.Position 29379834 doesn't seem to be mutated. Here are the mutated foci.Position 29384649 doesn't seem to be mutated. Here are the mutated foci.Position 29385006 doesn't seem to be mutated. Here are the mutated foci.Position 29386004 doesn't seem to be mutated. Here are the mutated foci.Position 29395131 doesn't seem to be mutated. Here are the mutated foci.Position 29396828 doesn't seem to be mutated. Here are the mutated foci.Position 29402567 doesn't seem to be mutated. Here are the mutated foci.Position 29408907 doesn't seem to be mutated. Here are the mutated foci.Position 29410458 doesn't seem to be mutated. Here are the mutated foci.Position 29412271 doesn't seem to be mutated. Here are the mutated foci.Position 29416193 doesn't seem to be mutated. Here are the mutated foci.Position 29418496 doesn't seem to be mutated. Here are the mutated foci.Position 29419106 doesn't seem to be mutated. Here are the mutated foci.Position 29419204 doesn't seem to be mutated. Here are the mutated foci.Position 29426459 doesn't seem to be mutated. Here are the mutated foci.Position 29429804 doesn't seem to be mutated. Here are the mutated foci.Position 29431197 doesn't seem to be mutated. Here are the mutated foci.Position 29433416 doesn't seem to be mutated. Here are the mutated foci.Position 29438085 doesn't seem to be mutated. Here are the mutated foci.Position 29443402 doesn't seem to be mutated. Here are the mutated foci.Position 29443575 doesn't seem to be mutated. Here are the mutated foci.Position 29453424 doesn't seem to be mutated. Here are the mutated foci.Position 29456967 doesn't seem to be mutated. Here are the mutated foci.Position 29458550 doesn't seem to be mutated. Here are the mutated foci.Position 29469476 doesn't seem to be mutated. Here are the mutated foci.Position 29477281 doesn't seem to be mutated. Here are the mutated foci.Position 29484183 doesn't seem to be mutated. Here are the mutated foci.Position 29488872 doesn't seem to be mutated. Here are the mutated foci.Position 29489821 doesn't seem to be mutated. Here are the mutated foci.Position 29493958 doesn't seem to be mutated. Here are the mutated foci.Position 29495376 doesn't seem to be mutated. Here are the mutated foci.Position 29502128 doesn't seem to be mutated. Here are the mutated foci.Position 29503484 doesn't seem to be mutated. Here are the mutated foci.Position 29503490 doesn't seem to be mutated. Here are the mutated foci.Position 29503816 doesn't seem to be mutated. Here are the mutated foci.Position 29507758 doesn't seem to be mutated. Here are the mutated foci.Position 29508836 doesn't seem to be mutated. Here are the mutated foci.Position 29516810 doesn't seem to be mutated. Here are the mutated foci.Position 29516980 doesn't seem to be mutated. Here are the mutated foci.Position 29517227 doesn't seem to be mutated. Here are the mutated foci.Position 29520440 doesn't seem to be mutated. Here are the mutated foci.Position 29521863 doesn't seem to be mutated. Here are the mutated foci.Position 29526970 doesn't seem to be mutated. Here are the mutated foci.Position 29528676 doesn't seem to be mutated. Here are the mutated foci.Position 29531489 doesn't seem to be mutated. Here are the mutated foci.Position 29532667 doesn't seem to be mutated. Here are the mutated foci.Position 29532766 doesn't seem to be mutated. Here are the mutated foci.Position 29534677 doesn't seem to be mutated. Here are the mutated foci.Position 29537064 doesn't seem to be mutated. Here are the mutated foci.Position 29539381 doesn't seem to be mutated. Here are the mutated foci.Position 29545916 doesn't seem to be mutated. Here are the mutated foci.Position 29551981 doesn't seem to be mutated. Here are the mutated foci.Position 29559995 doesn't seem to be mutated. Here are the mutated foci.Position 29560760 doesn't seem to be mutated. Here are the mutated foci.Position 29561621 doesn't seem to be mutated. Here are the mutated foci.Position 29563413 doesn't seem to be mutated. Here are the mutated foci.Position 29564157 doesn't seem to be mutated. Here are the mutated foci.Position 29571330 doesn't seem to be mutated. Here are the mutated foci.Position 29572233 doesn't seem to be mutated. Here are the mutated foci.Position 29582420 doesn't seem to be mutated. Here are the mutated foci.Position 29589484 doesn't seem to be mutated. Here are the mutated foci.Position 29591664 doesn't seem to be mutated. Here are the mutated foci.Position 29592414 doesn't seem to be mutated. Here are the mutated foci.Position 29593327 doesn't seem to be mutated. Here are the mutated foci.Position 29593848 doesn't seem to be mutated. Here are the mutated foci.Position 29595478 doesn't seem to be mutated. Here are the mutated foci.Position 29600704 doesn't seem to be mutated. Here are the mutated foci.Position 29606338 doesn't seem to be mutated. Here are the mutated foci.Position 29609003 doesn't seem to be mutated. Here are the mutated foci.Position 29609134 doesn't seem to be mutated. Here are the mutated foci.Position 29609828 doesn't seem to be mutated. Here are the mutated foci.Position 29614645 doesn't seem to be mutated. Here are the mutated foci.Position 29618341 doesn't seem to be mutated. Here are the mutated foci.Position 29619551 doesn't seem to be mutated. Here are the mutated foci.Position 29620297 doesn't seem to be mutated. Here are the mutated foci.Position 29620677 doesn't seem to be mutated. Here are the mutated foci.Position 29622080 doesn't seem to be mutated. Here are the mutated foci.Position 29625643 doesn't seem to be mutated. Here are the mutated foci.Position 29626632 doesn't seem to be mutated. Here are the mutated foci.Position 29627560 doesn't seem to be mutated. Here are the mutated foci.Position 29629236 doesn't seem to be mutated. Here are the mutated foci.Position 29630156 doesn't seem to be mutated. Here are the mutated foci.Position 29636639 doesn't seem to be mutated. Here are the mutated foci.Position 29638305 doesn't seem to be mutated. Here are the mutated foci.Position 29638396 doesn't seem to be mutated. Here are the mutated foci.Position 29640078 doesn't seem to be mutated. Here are the mutated foci.Position 29644515 doesn't seem to be mutated. Here are the mutated foci.Position 29653558 doesn't seem to be mutated. Here are the mutated foci.Position 29657240 doesn't seem to be mutated. Here are the mutated foci.Position 29660680 doesn't seem to be mutated. Here are the mutated foci.Position 29661425 doesn't seem to be mutated. Here are the mutated foci.Position 29665613 doesn't seem to be mutated. Here are the mutated foci.Position 29670007 doesn't seem to be mutated. Here are the mutated foci.Position 29670476 doesn't seem to be mutated. Here are the mutated foci.Position 29670770 doesn't seem to be mutated. Here are the mutated foci.Position 29671019 doesn't seem to be mutated. Here are the mutated foci.Position 29675438 doesn't seem to be mutated. Here are the mutated foci.Position 29678455 doesn't seem to be mutated. Here are the mutated foci.Position 29680922 doesn't seem to be mutated. Here are the mutated foci.Position 29686555 doesn't seem to be mutated. Here are the mutated foci.Position 29690177 doesn't seem to be mutated. Here are the mutated foci.Position 29691468 doesn't seem to be mutated. Here are the mutated foci.Position 29693397 doesn't seem to be mutated. Here are the mutated foci.Position 29694299 doesn't seem to be mutated. Here are the mutated foci.Position 29694397 doesn't seem to be mutated. Here are the mutated foci.Position 29705788 doesn't seem to be mutated. Here are the mutated foci.Position 29706912 doesn't seem to be mutated. Here are the mutated foci.Position 29710585 doesn't seem to be mutated. Here are the mutated foci.Position 29712017 doesn't seem to be mutated. Here are the mutated foci.Position 29713841 doesn't seem to be mutated. Here are the mutated foci.Position 29722229 doesn't seem to be mutated. Here are the mutated foci.Position 29723827 doesn't seem to be mutated. Here are the mutated foci.Position 29727208 doesn't seem to be mutated. Here are the mutated foci.Position 29727728 doesn't seem to be mutated. Here are the mutated foci.Position 29733059 doesn't seem to be mutated. Here are the mutated foci.Position 29734172 doesn't seem to be mutated. Here are the mutated foci.Position 29736824 doesn't seem to be mutated. Here are the mutated foci.Position 29741175 doesn't seem to be mutated. Here are the mutated foci.Position 29745476 doesn't seem to be mutated. Here are the mutated foci.Position 29747570 doesn't seem to be mutated. Here are the mutated foci.Position 29747572 doesn't seem to be mutated. Here are the mutated foci.Position 29751423 doesn't seem to be mutated. Here are the mutated foci.Position 29751701 doesn't seem to be mutated. Here are the mutated foci.Position 29753139 doesn't seem to be mutated. Here are the mutated foci.Position 29753860 doesn't seem to be mutated. Here are the mutated foci.Position 29754257 doesn't seem to be mutated. Here are the mutated foci.Position 29755676 doesn't seem to be mutated. Here are the mutated foci.Position 29759504 doesn't seem to be mutated. Here are the mutated foci.Position 29760086 doesn't seem to be mutated. Here are the mutated foci.Position 29763609 doesn't seem to be mutated. Here are the mutated foci.Position 29766722 doesn't seem to be mutated. Here are the mutated foci.Position 29769087 doesn't seem to be mutated. Here are the mutated foci.Position 29770671 doesn't seem to be mutated. Here are the mutated foci.Position 29771463 doesn't seem to be mutated. Here are the mutated foci.Position 29772736 doesn't seem to be mutated. Here are the mutated foci.Position 29775181 doesn't seem to be mutated. Here are the mutated foci.Position 29776130 doesn't seem to be mutated. Here are the mutated foci.Position 29779245 doesn't seem to be mutated. Here are the mutated foci.Position 29780257 doesn't seem to be mutated. Here are the mutated foci.Position 29780996 doesn't seem to be mutated. Here are the mutated foci.Position 29781043 doesn't seem to be mutated. Here are the mutated foci.Position 29782306 doesn't seem to be mutated. Here are the mutated foci.Position 29782556 doesn't seem to be mutated. Here are the mutated foci.Position 29783717 doesn't seem to be mutated. Here are the mutated foci.Position 29784447 doesn't seem to be mutated. Here are the mutated foci.Position 29785595 doesn't seem to be mutated. Here are the mutated foci.Position 29786394 doesn't seem to be mutated. Here are the mutated foci.Position 29787267 doesn't seem to be mutated. Here are the mutated foci.Position 29788251 doesn't seem to be mutated. Here are the mutated foci.Position 29789568 doesn't seem to be mutated. Here are the mutated foci.Position 29789882 doesn't seem to be mutated. Here are the mutated foci.Position 29792080 doesn't seem to be mutated. Here are the mutated foci.Position 29793001 doesn't seem to be mutated. Here are the mutated foci.Position 29796198 doesn't seem to be mutated. Here are the mutated foci.Position 29796894 doesn't seem to be mutated. Here are the mutated foci.Position 29799818 doesn't seem to be mutated. Here are the mutated foci.Position 29800270 doesn't seem to be mutated. Here are the mutated foci.Position 29800384 doesn't seem to be mutated. Here are the mutated foci.Position 29800811 doesn't seem to be mutated. Here are the mutated foci.Position 29802622 doesn't seem to be mutated. Here are the mutated foci.Position 29803613 doesn't seem to be mutated. Here are the mutated foci.Position 29806483 doesn't seem to be mutated. Here are the mutated foci.Position 29809758 doesn't seem to be mutated. Here are the mutated foci.Position 29812168 doesn't seem to be mutated. Here are the mutated foci.Position 29813801 doesn't seem to be mutated. Here are the mutated foci.Position 29817173 doesn't seem to be mutated. Here are the mutated foci.Position 29820003 doesn't seem to be mutated. Here are the mutated foci.Position 29820861 doesn't seem to be mutated. Here are the mutated foci.Position 29821462 doesn't seem to be mutated. Here are the mutated foci.Position 29822044 doesn't seem to be mutated. Here are the mutated foci.Position 29822192 doesn't seem to be mutated. Here are the mutated foci.Position 29822483 doesn't seem to be mutated. Here are the mutated foci.Position 29823112 doesn't seem to be mutated. Here are the mutated foci.Position 29824171 doesn't seem to be mutated. Here are the mutated foci.Position 29829127 doesn't seem to be mutated. Here are the mutated foci.Position 29829254 doesn't seem to be mutated. Here are the mutated foci.Position 29836472 doesn't seem to be mutated. Here are the mutated foci.Position 29838457 doesn't seem to be mutated. Here are the mutated foci.Position 29839096 doesn't seem to be mutated. Here are the mutated foci.Position 29839881 doesn't seem to be mutated. Here are the mutated foci.Position 29847427 doesn't seem to be mutated. Here are the mutated foci.Position 29848728 doesn't seem to be mutated. Here are the mutated foci.Position 29849963 doesn't seem to be mutated. Here are the mutated foci.Position 29850516 doesn't seem to be mutated. Here are the mutated foci.Position 29852497 doesn't seem to be mutated. Here are the mutated foci.Position 29854890 doesn't seem to be mutated. Here are the mutated foci.Position 29855134 doesn't seem to be mutated. Here are the mutated foci.Position 29856010 doesn't seem to be mutated. Here are the mutated foci.Position 29857475 doesn't seem to be mutated. Here are the mutated foci.Position 29858579 doesn't seem to be mutated. Here are the mutated foci.Position 29860152 doesn't seem to be mutated. Here are the mutated foci.Position 29861294 doesn't seem to be mutated. Here are the mutated foci.Position 29864913 doesn't seem to be mutated. Here are the mutated foci.Position 29865139 doesn't seem to be mutated. Here are the mutated foci.Position 29869180 doesn't seem to be mutated. Here are the mutated foci.Position 29874660 doesn't seem to be mutated. Here are the mutated foci.Position 29877033 doesn't seem to be mutated. Here are the mutated foci.Position 29877306 doesn't seem to be mutated. Here are the mutated foci.Position 29883258 doesn't seem to be mutated. Here are the mutated foci.Position 29888778 doesn't seem to be mutated. Here are the mutated foci.Position 29889787 doesn't seem to be mutated. Here are the mutated foci.Position 29896409 doesn't seem to be mutated. Here are the mutated foci.Position 29897130 doesn't seem to be mutated. Here are the mutated foci.Position 29898355 doesn't seem to be mutated. Here are the mutated foci.Position 29903171 doesn't seem to be mutated. Here are the mutated foci.Position 29904872 doesn't seem to be mutated. Here are the mutated foci.Position 29916914 doesn't seem to be mutated. Here are the mutated foci.Position 29917254 doesn't seem to be mutated. Here are the mutated foci.Position 29926131 doesn't seem to be mutated. Here are the mutated foci.Position 38981261 doesn't seem to be mutated. Here are the mutated foci.Position 38983439 doesn't seem to be mutated. Here are the mutated foci.Position 38984259 doesn't seem to be mutated. Here are the mutated foci.Position 38992768 doesn't seem to be mutated. Here are the mutated foci.Position 38999966 doesn't seem to be mutated. Here are the mutated foci.Position 39002876 doesn't seem to be mutated. Here are the mutated foci.Position 39004002 doesn't seem to be mutated. Here are the mutated foci.Position 39007559 doesn't seem to be mutated. Here are the mutated foci.Position 39008428 doesn't seem to be mutated. Here are the mutated foci.Position 39009369 doesn't seem to be mutated. Here are the mutated foci.Position 39015060 doesn't seem to be mutated. Here are the mutated foci.Position 39015505 doesn't seem to be mutated. Here are the mutated foci.Position 39020363 doesn't seem to be mutated. Here are the mutated foci.Position 39032883 doesn't seem to be mutated. Here are the mutated foci.Position 39033740 doesn't seem to be mutated. Here are the mutated foci.Position 39036937 doesn't seem to be mutated. Here are the mutated foci.Position 39039968 doesn't seem to be mutated. Here are the mutated foci.Position 39046370 doesn't seem to be mutated. Here are the mutated foci.Position 39048755 doesn't seem to be mutated. Here are the mutated foci.Position 39057123 doesn't seem to be mutated. Here are the mutated foci.Position 39058336 doesn't seem to be mutated. Here are the mutated foci.Position 39058735 doesn't seem to be mutated. Here are the mutated foci.Position 39060513 doesn't seem to be mutated. Here are the mutated foci.Position 39062197 doesn't seem to be mutated. Here are the mutated foci.Position 39063273 doesn't seem to be mutated. Here are the mutated foci.Position 39065153 doesn't seem to be mutated. Here are the mutated foci.Position 39069522 doesn't seem to be mutated. Here are the mutated foci.Position 39069736 doesn't seem to be mutated. Here are the mutated foci.Position 39076932 doesn't seem to be mutated. Here are the mutated foci.Position 39081503 doesn't seem to be mutated. Here are the mutated foci.Position 39082625 doesn't seem to be mutated. Here are the mutated foci.Position 39087945 doesn't seem to be mutated. Here are the mutated foci.Position 39087980 doesn't seem to be mutated. Here are the mutated foci.Position 39089240 doesn't seem to be mutated. Here are the mutated foci.Position 39090618 doesn't seem to be mutated. Here are the mutated foci.Position 39094084 doesn't seem to be mutated. Here are the mutated foci.Position 39094880 doesn't seem to be mutated. Here are the mutated foci.Position 39109650 doesn't seem to be mutated. Here are the mutated foci.Position 39112226 doesn't seem to be mutated. Here are the mutated foci.Position 39118735 doesn't seem to be mutated. Here are the mutated foci.Position 47350558 doesn't seem to be mutated. Here are the mutated foci.Position 47353853 doesn't seem to be mutated. Here are the mutated foci.Position 47354025 doesn't seem to be mutated. Here are the mutated foci.Position 47367514 doesn't seem to be mutated. Here are the mutated foci.Position 47368969 doesn't seem to be mutated. Here are the mutated foci.Position 47370358 doesn't seem to be mutated. Here are the mutated foci.Position 47370419 doesn't seem to be mutated. Here are the mutated foci.Position 47375904 doesn't seem to be mutated. Here are the mutated foci.Position 47376094 doesn't seem to be mutated. Here are the mutated foci.Position 47381777 doesn't seem to be mutated. Here are the mutated foci.Position 47382283 doesn't seem to be mutated. Here are the mutated foci.Position 47399928 doesn't seem to be mutated. Here are the mutated foci.Position 47403295 doesn't seem to be mutated. Here are the mutated foci.Position 47404455 doesn't seem to be mutated. Here are the mutated foci.Position 47407566 doesn't seem to be mutated. Here are the mutated foci.Position 47408286 doesn't seem to be mutated. Here are the mutated foci.Position 47411928 doesn't seem to be mutated. Here are the mutated foci.Position 47413713 doesn't seem to be mutated. Here are the mutated foci.Position 47413814 doesn't seem to be mutated. Here are the mutated foci.Position 47415585 doesn't seem to be mutated. Here are the mutated foci.Position 47417193 doesn't seem to be mutated. Here are the mutated foci.Position 47420909 doesn't seem to be mutated. Here are the mutated foci.Position 47420920 doesn't seem to be mutated. Here are the mutated foci.Position 47431088 doesn't seem to be mutated. Here are the mutated foci.Position 47432919 doesn't seem to be mutated. Here are the mutated foci.Position 47434717 doesn't seem to be mutated. Here are the mutated foci.Position 47448065 doesn't seem to be mutated. Here are the mutated foci.Position 47452255 doesn't seem to be mutated. Here are the mutated foci.Position 47452659 doesn't seem to be mutated. Here are the mutated foci.Position 47462350 doesn't seem to be mutated. Here are the mutated foci.Position 47468420 doesn't seem to be mutated. Here are the mutated foci.Position 47472173 doesn't seem to be mutated. Here are the mutated foci.Position 47476269 doesn't seem to be mutated. Here are the mutated foci.Position 47478635 doesn't seem to be mutated. Here are the mutated foci.Position 47483587 doesn't seem to be mutated. Here are the mutated foci.Position 47484434 doesn't seem to be mutated. Here are the mutated foci.Position 47486196 doesn't seem to be mutated. Here are the mutated foci.Position 47503442 doesn't seem to be mutated. Here are the mutated foci.Position 47506588 doesn't seem to be mutated. Here are the mutated foci.Position 47509000 doesn't seem to be mutated. Here are the mutated foci.Position 47577595 doesn't seem to be mutated. Here are the mutated foci.Position 47577837 doesn't seem to be mutated. Here are the mutated foci.Position 47578550 doesn't seem to be mutated. Here are the mutated foci.Position 47579932 doesn't seem to be mutated. Here are the mutated foci.Position 47581284 doesn't seem to be mutated. Here are the mutated foci.Position 47583272 doesn't seem to be mutated. Here are the mutated foci.Position 47584126 doesn't seem to be mutated. Here are the mutated foci.Position 47586838 doesn't seem to be mutated. Here are the mutated foci.Position 47588214 doesn't seem to be mutated. Here are the mutated foci.Position 47588695 doesn't seem to be mutated. Here are the mutated foci.Position 47590172 doesn't seem to be mutated. Here are the mutated foci.Position 47599435 doesn't seem to be mutated. Here are the mutated foci.Position 47600661 doesn't seem to be mutated. Here are the mutated foci.Position 47602997 doesn't seem to be mutated. Here are the mutated foci.Position 47604089 doesn't seem to be mutated. Here are the mutated foci.Position 47605460 doesn't seem to be mutated. Here are the mutated foci.Position 47605550 doesn't seem to be mutated. Here are the mutated foci.Position 47605961 doesn't seem to be mutated. Here are the mutated foci.Position 47611011 doesn't seem to be mutated. Here are the mutated foci.Position 47614738 doesn't seem to be mutated. Here are the mutated foci.Position 47619546 doesn't seem to be mutated. Here are the mutated foci.Position 47620859 doesn't seem to be mutated. Here are the mutated foci.Position 47623937 doesn't seem to be mutated. Here are the mutated foci.Position 47624270 doesn't seem to be mutated. Here are the mutated foci.Position 47625675 doesn't seem to be mutated. Here are the mutated foci.Position 47632209 doesn't seem to be mutated. Here are the mutated foci.Position 47632474 doesn't seem to be mutated. Here are the mutated foci.Position 47637506 doesn't seem to be mutated. Here are the mutated foci.Position 47637657 doesn't seem to be mutated. Here are the mutated foci.Position 47643512 doesn't seem to be mutated. Here are the mutated foci.Position 47648407 doesn't seem to be mutated. Here are the mutated foci.Position 47649622 doesn't seem to be mutated. Here are the mutated foci.Position 47652055 doesn't seem to be mutated. Here are the mutated foci.Position 47662115 doesn't seem to be mutated. Here are the mutated foci.Position 47663482 doesn't seem to be mutated. Here are the mutated foci.Position 47666517 doesn't seem to be mutated. Here are the mutated foci.Position 47697556 doesn't seem to be mutated. Here are the mutated foci.Position 47698995 doesn't seem to be mutated. Here are the mutated foci.Position 47699776 doesn't seem to be mutated. Here are the mutated foci.Position 47713731 doesn't seem to be mutated. Here are the mutated foci.Position 47715797 doesn't seem to be mutated. Here are the mutated foci.Position 47716536 doesn't seem to be mutated. Here are the mutated foci.Position 47722846 doesn't seem to be mutated. Here are the mutated foci.Position 47725094 doesn't seem to be mutated. Here are the mutated foci.Position 47725212 doesn't seem to be mutated. Here are the mutated foci.Position 47737257 doesn't seem to be mutated. Here are the mutated foci.Position 47737557 doesn't seem to be mutated. Here are the mutated foci.Position 47739133 doesn't seem to be mutated. Here are the mutated foci.Position 47743777 doesn't seem to be mutated. Here are the mutated foci.Position 47744394 doesn't seem to be mutated. Here are the mutated foci.Position 47750899 doesn't seem to be mutated. Here are the mutated foci.Position 47753448 doesn't seem to be mutated. Here are the mutated foci.Position 47761293 doesn't seem to be mutated. Here are the mutated foci.Position 47761983 doesn't seem to be mutated. Here are the mutated foci.Position 47767423 doesn't seem to be mutated. Here are the mutated foci.Position 47769541 doesn't seem to be mutated. Here are the mutated foci.Position 47770636 doesn't seem to be mutated. Here are the mutated foci.Position 47771024 doesn't seem to be mutated. Here are the mutated foci.Position 47771315 doesn't seem to be mutated. Here are the mutated foci.Position 47772205 doesn't seem to be mutated. Here are the mutated foci.Position 47782509 doesn't seem to be mutated. Here are the mutated foci.Position 47786624 doesn't seem to be mutated. Here are the mutated foci.Position 47789615 doesn't seem to be mutated. Here are the mutated foci.Position 47793737 doesn't seem to be mutated. Here are the mutated foci.Position 47795737 doesn't seem to be mutated. Here are the mutated foci.Position 47798807 doesn't seem to be mutated. Here are the mutated foci.Position 47805413 doesn't seem to be mutated. Here are the mutated foci.Position 47806933 doesn't seem to be mutated. Here are the mutated foci.Position 58162867 doesn't seem to be mutated. Here are the mutated foci.Position 58164187 doesn't seem to be mutated. Here are the mutated foci.Position 58165298 doesn't seem to be mutated. Here are the mutated foci.Position 58168252 doesn't seem to be mutated. Here are the mutated foci.Position 58169365 doesn't seem to be mutated. Here are the mutated foci.Position 58171959 doesn't seem to be mutated. Here are the mutated foci.Position 58174253 doesn't seem to be mutated. Here are the mutated foci.Position 58177513 doesn't seem to be mutated. Here are the mutated foci.Position 58178840 doesn't seem to be mutated. Here are the mutated foci.Position 58178998 doesn't seem to be mutated. Here are the mutated foci.Position 58179819 doesn't seem to be mutated. Here are the mutated foci.Position 58183453 doesn't seem to be mutated. Here are the mutated foci.Position 58191099 doesn't seem to be mutated. Here are the mutated foci.Position 58192567 doesn't seem to be mutated. Here are the mutated foci.Position 58197063 doesn't seem to be mutated. Here are the mutated foci.Position 58199665 doesn't seem to be mutated. Here are the mutated foci.Position 58203456 doesn't seem to be mutated. Here are the mutated foci.Position 58203915 doesn't seem to be mutated. Here are the mutated foci.Position 58208469 doesn't seem to be mutated. Here are the mutated foci.Position 58209419 doesn't seem to be mutated. Here are the mutated foci.Position 58210383 doesn't seem to be mutated. Here are the mutated foci.Position 58211269 doesn't seem to be mutated. Here are the mutated foci.Position 58213063 doesn't seem to be mutated. Here are the mutated foci.Position 58214523 doesn't seem to be mutated. Here are the mutated foci.Position 58219944 doesn't seem to be mutated. Here are the mutated foci.Position 58220933 doesn't seem to be mutated. Here are the mutated foci.Position 58221373 doesn't seem to be mutated. Here are the mutated foci.Position 58224788 doesn't seem to be mutated. Here are the mutated foci.Position 58226384 doesn't seem to be mutated. Here are the mutated foci.Position 58227913 doesn't seem to be mutated. Here are the mutated foci.Position 58229863 doesn't seem to be mutated. Here are the mutated foci.Position 58235981 doesn't seem to be mutated. Here are the mutated foci.Position 58239563 doesn't seem to be mutated. Here are the mutated foci.Position 58241849 doesn't seem to be mutated. Here are the mutated foci.Position 58242519 doesn't seem to be mutated. Here are the mutated foci.Position 58244899 doesn't seem to be mutated. Here are the mutated foci.Position 96248819 doesn't seem to be mutated. Here are the mutated foci.Position 96249935 doesn't seem to be mutated. Here are the mutated foci.Position 96250998 doesn't seem to be mutated. Here are the mutated foci.Position 96251874 doesn't seem to be mutated. Here are the mutated foci.Position 96258226 doesn't seem to be mutated. Here are the mutated foci.Position 96261151 doesn't seem to be mutated. Here are the mutated foci.Position 96261782 doesn't seem to be mutated. Here are the mutated foci.Position 96262800 doesn't seem to be mutated. Here are the mutated foci.Position 127253133 doesn't seem to be mutated. Here are the mutated foci.Position 127253827 doesn't seem to be mutated. Here are the mutated foci.Position 127255854 doesn't seem to be mutated. Here are the mutated foci.Position 127262712 doesn't seem to be mutated. Here are the mutated foci.Position 127265345 doesn't seem to be mutated. Here are the mutated foci.Position 127265670 doesn't seem to be mutated. Here are the mutated foci.Position 127270969 doesn't seem to be mutated. Here are the mutated foci.Position 127271463 doesn't seem to be mutated. Here are the mutated foci.Position 127275049 doesn't seem to be mutated. Here are the mutated foci.Position 127286832 doesn't seem to be mutated. Here are the mutated foci.Position 127287398 doesn't seem to be mutated. Here are the mutated foci.Position 127288978 doesn't seem to be mutated. Here are the mutated foci.Position 127290496 doesn't seem to be mutated. Here are the mutated foci.Position 127294360 doesn't seem to be mutated. Here are the mutated foci.Position 144359381 doesn't seem to be mutated. Here are the mutated foci.Position 144363896 doesn't seem to be mutated. Here are the mutated foci.Position 144364731 doesn't seem to be mutated. Here are the mutated foci.Position 144365100 doesn't seem to be mutated. Here are the mutated foci.Position 144366613 doesn't seem to be mutated. Here are the mutated foci.Position 144367655 doesn't seem to be mutated. Here are the mutated foci.Position 144369927 doesn't seem to be mutated. Here are the mutated foci.Position 144373493 doesn't seem to be mutated. Here are the mutated foci.Position 144377523 doesn't seem to be mutated. Here are the mutated foci.Position 144379159 doesn't seem to be mutated. Here are the mutated foci.Position 144389943 doesn't seem to be mutated. Here are the mutated foci.Position 144390264 doesn't seem to be mutated. Here are the mutated foci.Position 144394988 doesn't seem to be mutated. Here are the mutated foci.Position 144396369 doesn't seem to be mutated. Here are the mutated foci.Position 144398221 doesn't seem to be mutated. Here are the mutated foci.Position 144398721 doesn't seem to be mutated. Here are the mutated foci.Position 144400717 doesn't seem to be mutated. Here are the mutated foci.Position 144401211 doesn't seem to be mutated. Here are the mutated foci.Position 144401452 doesn't seem to be mutated. Here are the mutated foci.Position 144401934 doesn't seem to be mutated. Here are the mutated foci.Position 144409100 doesn't seem to be mutated. Here are the mutated foci.Position 144409437 doesn't seem to be mutated. Here are the mutated foci.Position 144410085 doesn't seem to be mutated. Here are the mutated foci.Position 144411727 doesn't seem to be mutated. Here are the mutated foci.Position 144413495 doesn't seem to be mutated. Here are the mutated foci.Position 144413989 doesn't seem to be mutated. Here are the mutated foci.Position 144415997 doesn't seem to be mutated. Here are the mutated foci.Position 144416840 doesn't seem to be mutated. Here are the mutated foci.Position 144418557 doesn't seem to be mutated. Here are the mutated foci.Position 144419779 doesn't seem to be mutated. Here are the mutated foci.Position 144420271 doesn't seem to be mutated. Here are the mutated foci.Position 144423879 doesn't seem to be mutated. Here are the mutated foci.Position 144424126 doesn't seem to be mutated. Here are the mutated foci.Position 144425325 doesn't seem to be mutated. Here are the mutated foci.Position 144426538 doesn't seem to be mutated. Here are the mutated foci.Position 144428922 doesn't seem to be mutated. Here are the mutated foci.Position 144430961 doesn't seem to be mutated. Here are the mutated foci.Position 144431158 doesn't seem to be mutated. Here are the mutated foci.Position 144434546 doesn't seem to be mutated. Here are the mutated foci.Position 144438083 doesn't seem to be mutated. Here are the mutated foci.Position 144439477 doesn't seem to be mutated. Here are the mutated foci.Position 144445847 doesn't seem to be mutated. Here are the mutated foci.Position 144452965 doesn't seem to be mutated. Here are the mutated foci.Position 144460234 doesn't seem to be mutated. Here are the mutated foci.Position 144465467 doesn't seem to be mutated. Here are the mutated foci.Position 144467303 doesn't seem to be mutated. Here are the mutated foci.Position 144468217 doesn't seem to be mutated. Here are the mutated foci.Position 144471345 doesn't seem to be mutated. Here are the mutated foci.Position 144484314 doesn't seem to be mutated. Here are the mutated foci.Position 144487394 doesn't seem to be mutated. Here are the mutated foci.Position 144491732 doesn't seem to be mutated. Here are the mutated foci.Position 144500972 doesn't seem to be mutated. Here are the mutated foci.Position 144501538 doesn't seem to be mutated. Here are the mutated foci.Position 144504866 doesn't seem to be mutated. Here are the mutated foci.Position 144506965 doesn't seem to be mutated. Here are the mutated foci.Position 144507140 doesn't seem to be mutated. Here are the mutated foci.Position 144511923 doesn't seem to be mutated. Here are the mutated foci.Position 144517307 doesn't seem to be mutated. Here are the mutated foci.Position 144520716 doesn't seem to be mutated. Here are the mutated foci.Position 144522457 doesn't seem to be mutated. Here are the mutated foci.Position 144522470 doesn't seem to be mutated. Here are the mutated foci.Position 144523610 doesn't seem to be mutated. Here are the mutated foci.Position 144526789 doesn't seem to be mutated. Here are the mutated foci.Position 144526801 doesn't seem to be mutated. Here are the mutated foci.Position 144527752 doesn't seem to be mutated. Here are the mutated foci.Position 168920278 doesn't seem to be mutated. Here are the mutated foci.Position 168921888 doesn't seem to be mutated. Here are the mutated foci.Position 168922405 doesn't seem to be mutated. Here are the mutated foci.Position 168923326 doesn't seem to be mutated. Here are the mutated foci.Position 168925572 doesn't seem to be mutated. Here are the mutated foci.Position 168934753 doesn't seem to be mutated. Here are the mutated foci.Position 168942982 doesn't seem to be mutated. Here are the mutated foci.Position 168944649 doesn't seem to be mutated. Here are the mutated foci.Position 168949326 doesn't seem to be mutated. Here are the mutated foci.Position 168950896 doesn't seem to be mutated. Here are the mutated foci.Position 168951362 doesn't seem to be mutated. Here are the mutated foci.Position 168951902 doesn't seem to be mutated. Here are the mutated foci.Position 168953236 doesn't seem to be mutated. Here are the mutated foci.Position 168956008 doesn't seem to be mutated. Here are the mutated foci.Position 168956612 doesn't seem to be mutated. Here are the mutated foci.Position 168959087 doesn't seem to be mutated. Here are the mutated foci.Position 168963052 doesn't seem to be mutated. Here are the mutated foci.Position 168964623 doesn't seem to be mutated. Here are the mutated foci.Position 168967184 doesn't seem to be mutated. Here are the mutated foci.Position 168974630 doesn't seem to be mutated. Here are the mutated foci.Position 168976680 doesn't seem to be mutated. Here are the mutated foci.Position 168981589 doesn't seem to be mutated. Here are the mutated foci.Position 168983847 doesn't seem to be mutated. Here are the mutated foci.Position 168986853 doesn't seem to be mutated. Here are the mutated foci.Position 168990432 doesn't seem to be mutated. Here are the mutated foci.Position 168992474 doesn't seem to be mutated. Here are the mutated foci.Position 168993635 doesn't seem to be mutated. Here are the mutated foci.Position 168996449 doesn't seem to be mutated. Here are the mutated foci.Position 168996531 doesn't seem to be mutated. Here are the mutated foci.Position 168997460 doesn't seem to be mutated. Here are the mutated foci.Position 169007301 doesn't seem to be mutated. Here are the mutated foci.Position 169011628 doesn't seem to be mutated. Here are the mutated foci.Position 169019167 doesn't seem to be mutated. Here are the mutated foci.Position 169021636 doesn't seem to be mutated. Here are the mutated foci.Position 169024575 doesn't seem to be mutated. Here are the mutated foci.Position 169024974 doesn't seem to be mutated. Here are the mutated foci.Position 169028672 doesn't seem to be mutated. Here are the mutated foci.Position 169033965 doesn't seem to be mutated. Here are the mutated foci.Position 169034104 doesn't seem to be mutated. Here are the mutated foci.Position 214721497 doesn't seem to be mutated. Here are the mutated foci.Position 214722835 doesn't seem to be mutated. Here are the mutated foci.Position 214725031 doesn't seem to be mutated. Here are the mutated foci.Position 214725206 doesn't seem to be mutated. Here are the mutated foci.Position 214729585 doesn't seem to be mutated. Here are the mutated foci.Position 214730369 doesn't seem to be mutated. Here are the mutated foci.Position 214731439 doesn't seem to be mutated. Here are the mutated foci.Position 214732388 doesn't seem to be mutated. Here are the mutated foci.Position 214741378 doesn't seem to be mutated. Here are the mutated foci.Position 214741605 doesn't seem to be mutated. Here are the mutated foci.Position 214743126 doesn't seem to be mutated. Here are the mutated foci.Position 214743484 doesn't seem to be mutated. Here are the mutated foci.Position 214743555 doesn't seem to be mutated. Here are the mutated foci.Position 214749835 doesn't seem to be mutated. Here are the mutated foci.Position 214751199 doesn't seem to be mutated. Here are the mutated foci.Position 214757504 doesn't seem to be mutated. Here are the mutated foci.Position 214766435 doesn't seem to be mutated. Here are the mutated foci.Position 214771311 doesn't seem to be mutated. Here are the mutated foci.Position 214774009 doesn't seem to be mutated. Here are the mutated foci.Position 214777639 doesn't seem to be mutated. Here are the mutated foci.Position 214779136 doesn't seem to be mutated. Here are the mutated foci.Position 214790985 doesn't seem to be mutated. Here are the mutated foci.Position 214796218 doesn't seem to be mutated. Here are the mutated foci.Position 214797906 doesn't seem to be mutated. Here are the mutated foci.Position 214814652 doesn't seem to be mutated. Here are the mutated foci.Position 231956411 doesn't seem to be mutated. Here are the mutated foci.Position 231963813 doesn't seem to be mutated. Here are the mutated foci.Position 231965500 doesn't seem to be mutated. Here are the mutated foci.Position 231966172 doesn't seem to be mutated. Here are the mutated foci.Position 231966945 doesn't seem to be mutated. Here are the mutated foci.Position 231970993 doesn't seem to be mutated. Here are the mutated foci.Position 231972082 doesn't seem to be mutated. Here are the mutated foci.Position 231973206 doesn't seem to be mutated. Here are the mutated foci.Position 231973785 doesn't seem to be mutated. Here are the mutated foci.Position 231976171 doesn't seem to be mutated. Here are the mutated foci.Position 231977500 doesn't seem to be mutated. Here are the mutated foci.Position 231987304 doesn't seem to be mutated. Here are the mutated foci.Position 231989760 doesn't seem to be mutated. Here are the mutated foci.Position 231996901 doesn't seem to be mutated. Here are the mutated foci.Position 231997796 doesn't seem to be mutated. Here are the mutated foci.Position 232000406 doesn't seem to be mutated. Here are the mutated foci.Position 232004792 doesn't seem to be mutated. Here are the mutated foci.Position 232005825 doesn't seem to be mutated. Here are the mutated foci.Position 232016610 doesn't seem to be mutated. Here are the mutated foci.Position 232018550 doesn't seem to be mutated. Here are the mutated foci.Position 232018800 doesn't seem to be mutated. Here are the mutated foci.Position 232019407 doesn't seem to be mutated. Here are the mutated foci.Position 232019898 doesn't seem to be mutated. Here are the mutated foci.Position 232021924 doesn't seem to be mutated. Here are the mutated foci.Position 232022565 doesn't seem to be mutated. Here are the mutated foci.Position 232026908 doesn't seem to be mutated. Here are the mutated foci.Position 232027969 doesn't seem to be mutated. Here are the mutated foci.Position 232029121 doesn't seem to be mutated. Here are the mutated foci.Position 232032242 doesn't seem to be mutated. Here are the mutated foci.Position 232040424 doesn't seem to be mutated. Here are the mutated foci.Position 232045837 doesn't seem to be mutated. Here are the mutated foci.Position 232048167 doesn't seem to be mutated. Here are the mutated foci.Position 232048471 doesn't seem to be mutated. Here are the mutated foci.Position 232052700 doesn't seem to be mutated. Here are the mutated foci.Position 232054837 doesn't seem to be mutated. Here are the mutated foci.Position 232055486 doesn't seem to be mutated. Here are the mutated foci.Position 232057385 doesn't seem to be mutated. Here are the mutated foci.Position 232057617 doesn't seem to be mutated. Here are the mutated foci.Position 232060422 doesn't seem to be mutated. Here are the mutated foci.Position 232069655 doesn't seem to be mutated. Here are the mutated foci.Position 232070645 doesn't seem to be mutated. Here are the mutated foci.Position 232073178 doesn't seem to be mutated. Here are the mutated foci.Position 232073198 doesn't seem to be mutated. Here are the mutated foci.Position 232073825 doesn't seem to be mutated. Here are the mutated foci.Position 232075623 doesn't seem to be mutated. Here are the mutated foci.Position 232078372 doesn't seem to be mutated. Here are the mutated foci.Position 232081374 doesn't seem to be mutated. Here are the mutated foci.Position 232081987 doesn't seem to be mutated. Here are the mutated foci.Position 232082154 doesn't seem to be mutated. Here are the mutated foci.Position 232082498 doesn't seem to be mutated. Here are the mutated foci.Position 232087745 doesn't seem to be mutated. Here are the mutated foci.Position 232088139 doesn't seem to be mutated. Here are the mutated foci.Position 232098979 doesn't seem to be mutated. Here are the mutated foci.Position 232103690 doesn't seem to be mutated. Here are the mutated foci.Position 232107226 doesn't seem to be mutated. Here are the mutated foci.Position 232110974 doesn't seem to be mutated. Here are the mutated foci.Position 232111012 doesn't seem to be mutated. Here are the mutated foci.Position 232113765 doesn't seem to be mutated. Here are the mutated foci.Position 232114627 doesn't seem to be mutated. Here are the mutated foci.Position 232114997 doesn't seem to be mutated. Here are the mutated foci.Position 232119435 doesn't seem to be mutated. Here are the mutated foci.Position 232119730 doesn't seem to be mutated. Here are the mutated foci.Position 232120355 doesn't seem to be mutated. Here are the mutated foci.Position 232124711 doesn't seem to be mutated. Here are the mutated foci.Position 232126050 doesn't seem to be mutated. Here are the mutated foci.Position 232129941 doesn't seem to be mutated. Here are the mutated foci.Position 232132849 doesn't seem to be mutated. Here are the mutated foci.Position 232133288 doesn't seem to be mutated. Here are the mutated foci.Position 232144410 doesn't seem to be mutated. Here are the mutated foci.Position 232149194 doesn't seem to be mutated. Here are the mutated foci.Position 232156287 doesn't seem to be mutated. Here are the mutated foci.Position 232164553 doesn't seem to be mutated. Here are the mutated foci.Position 232166218 doesn't seem to be mutated. Here are the mutated foci.Position 232174129 doesn't seem to be mutated. Here are the mutated foci.Position 232176280 doesn't seem to be mutated. Here are the mutated foci.Position 232183780 doesn't seem to be mutated. Here are the mutated foci.Position 232187965 doesn't seem to be mutated. Here are the mutated foci.Position 232193860 doesn't seem to be mutated. Here are the mutated foci.Position 232195551 doesn't seem to be mutated. Here are the mutated foci.Position 232201848 doesn't seem to be mutated. Here are the mutated foci.Position 232203816 doesn't seem to be mutated. Here are the mutated foci.Position 232204443 doesn't seem to be mutated. Here are the mutated foci.Position 232204832 doesn't seem to be mutated. Here are the mutated foci.Position 232204879 doesn't seem to be mutated. Here are the mutated foci.Position 232206755 doesn't seem to be mutated. Here are the mutated foci.Position 232207526 doesn't seem to be mutated. Here are the mutated foci.Position 232209208 doesn't seem to be mutated. Here are the mutated foci.Position 232210055 doesn't seem to be mutated. Here are the mutated foci.Position 232216075 doesn't seem to be mutated. Here are the mutated foci.Position 232218493 doesn't seem to be mutated. Here are the mutated foci.Position 232218548 doesn't seem to be mutated. Here are the mutated foci.Position 232220089 doesn't seem to be mutated. Here are the mutated foci.Position 232220810 doesn't seem to be mutated. Here are the mutated foci.Position 232222918 doesn't seem to be mutated. Here are the mutated foci.Position 232234806 doesn't seem to be mutated. Here are the mutated foci.Position 232246497 doesn't seem to be mutated. Here are the mutated foci.Position 232249067 doesn't seem to be mutated. Here are the mutated foci.Position 232250128 doesn't seem to be mutated. Here are the mutated foci.Position 232255029 doesn't seem to be mutated. Here are the mutated foci.Position 232261435 doesn't seem to be mutated. Here are the mutated foci.Position 232263277 doesn't seem to be mutated. Here are the mutated foci.Position 232263518 doesn't seem to be mutated. Here are the mutated foci.Position 232265284 doesn't seem to be mutated. Here are the mutated foci.Position 232268104 doesn't seem to be mutated. Here are the mutated foci.Position 232268385 doesn't seem to be mutated. Here are the mutated foci.Position 232268545 doesn't seem to be mutated. Here are the mutated foci.Position 232273290 doesn't seem to be mutated. Here are the mutated foci.Position 232273897 doesn't seem to be mutated. Here are the mutated foci.Position 232275250 doesn't seem to be mutated. Here are the mutated foci.Position 232277009 doesn't seem to be mutated. Here are the mutated foci.Position 232282721 doesn't seem to be mutated. Here are the mutated foci.Position 232283021 doesn't seem to be mutated. Here are the mutated foci.Position 232284441 doesn't seem to be mutated. Here are the mutated foci.Position 232293524 doesn't seem to be mutated. Here are the mutated foci.Position 232296423 doesn't seem to be mutated. Here are the mutated foci.Position 232297566 doesn't seem to be mutated. Here are the mutated foci.Position 232303054 doesn't seem to be mutated. Here are the mutated foci.Position 232308531 doesn't seem to be mutated. Here are the mutated foci.Position 232310761 doesn't seem to be mutated. Here are the mutated foci.Position 232316382 doesn't seem to be mutated. Here are the mutated foci.Position 232317886 doesn't seem to be mutated. Here are the mutated foci.Position 232318054 doesn't seem to be mutated. Here are the mutated foci.Position 232319935 doesn't seem to be mutated. Here are the mutated foci.Position 232320448 doesn't seem to be mutated. Here are the mutated foci.Position 232322979 doesn't seem to be mutated. Here are the mutated foci.Position 232323652 doesn't seem to be mutated. Here are the mutated foci.Position 232329312 doesn't seem to be mutated. Here are the mutated foci.Position 232329962 doesn't seem to be mutated. Here are the mutated foci.Position 232330241 doesn't seem to be mutated. Here are the mutated foci.Position 232331629 doesn't seem to be mutated. Here are the mutated foci.Position 232331741 doesn't seem to be mutated. Here are the mutated foci.Position 232333592 doesn't seem to be mutated. Here are the mutated foci.Position 232334417 doesn't seem to be mutated. Here are the mutated foci.Position 232336892 doesn't seem to be mutated. Here are the mutated foci.Position 232339608 doesn't seem to be mutated. Here are the mutated foci.Position 232340506 doesn't seem to be mutated. Here are the mutated foci.Position 232340521 doesn't seem to be mutated. Here are the mutated foci.Position 232341181 doesn't seem to be mutated. Here are the mutated foci.Position 10022560 doesn't seem to be mutated. Here are the mutated foci.Position 10024207 doesn't seem to be mutated. Here are the mutated foci.Position 10024548 doesn't seem to be mutated. Here are the mutated foci.Position 10026651 doesn't seem to be mutated. Here are the mutated foci.Position 10027964 doesn't seem to be mutated. Here are the mutated foci.Position 10030130 doesn't seem to be mutated. Here are the mutated foci.Position 10041995 doesn't seem to be mutated. Here are the mutated foci.Position 10042465 doesn't seem to be mutated. Here are the mutated foci.Position 10048524 doesn't seem to be mutated. Here are the mutated foci.Position 10056272 doesn't seem to be mutated. Here are the mutated foci.Position 10058571 doesn't seem to be mutated. Here are the mutated foci.Position 10060954 doesn't seem to be mutated. Here are the mutated foci.Position 10065657 doesn't seem to be mutated. Here are the mutated foci.Position 10072251 doesn't seem to be mutated. Here are the mutated foci.Position 10073752 doesn't seem to be mutated. Here are the mutated foci.Position 10074197 doesn't seem to be mutated. Here are the mutated foci.Position 10074462 doesn't seem to be mutated. Here are the mutated foci.Position 10075668 doesn't seem to be mutated. Here are the mutated foci.Position 10077933 doesn't seem to be mutated. Here are the mutated foci.Position 10079005 doesn't seem to be mutated. Here are the mutated foci.Position 10079375 doesn't seem to be mutated. Here are the mutated foci.Position 10079387 doesn't seem to be mutated. Here are the mutated foci.Position 10082333 doesn't seem to be mutated. Here are the mutated foci.Position 10082636 doesn't seem to be mutated. Here are the mutated foci.Position 10084524 doesn't seem to be mutated. Here are the mutated foci.Position 10085332 doesn't seem to be mutated. Here are the mutated foci.Position 10094745 doesn't seem to be mutated. Here are the mutated foci.Position 10095462 doesn't seem to be mutated. Here are the mutated foci.Position 10099723 doesn't seem to be mutated. Here are the mutated foci.Position 10100743 doesn't seem to be mutated. Here are the mutated foci.Position 10136424 doesn't seem to be mutated. Here are the mutated foci.Position 10136913 doesn't seem to be mutated. Here are the mutated foci.Position 10140490 doesn't seem to be mutated. Here are the mutated foci.Position 10141773 doesn't seem to be mutated. Here are the mutated foci.Position 10142334 doesn't seem to be mutated. Here are the mutated foci.Position 10144187 doesn't seem to be mutated. Here are the mutated foci.Position 10144911 doesn't seem to be mutated. Here are the mutated foci.Position 10149350 doesn't seem to be mutated. Here are the mutated foci.Position 12588420 doesn't seem to be mutated. Here are the mutated foci.Position 12588874 doesn't seem to be mutated. Here are the mutated foci.Position 12589935 doesn't seem to be mutated. Here are the mutated foci.Position 12592849 doesn't seem to be mutated. Here are the mutated foci.Position 12601171 doesn't seem to be mutated. Here are the mutated foci.Position 12605752 doesn't seem to be mutated. Here are the mutated foci.Position 12607435 doesn't seem to be mutated. Here are the mutated foci.Position 12609744 doesn't seem to be mutated. Here are the mutated foci.Position 12618585 doesn't seem to be mutated. Here are the mutated foci.Position 12618834 doesn't seem to be mutated. Here are the mutated foci.Position 12623183 doesn't seem to be mutated. Here are the mutated foci.Position 12624849 doesn't seem to be mutated. Here are the mutated foci.Position 12625233 doesn't seem to be mutated. Here are the mutated foci.Position 12626569 doesn't seem to be mutated. Here are the mutated foci.Position 12629214 doesn't seem to be mutated. Here are the mutated foci.Position 12631373 doesn't seem to be mutated. Here are the mutated foci.Position 12631910 doesn't seem to be mutated. Here are the mutated foci.Position 12633351 doesn't seem to be mutated. Here are the mutated foci.Position 12633616 doesn't seem to be mutated. Here are the mutated foci.Position 12635946 doesn't seem to be mutated. Here are the mutated foci.Position 12642107 doesn't seem to be mutated. Here are the mutated foci.Position 12647897 doesn't seem to be mutated. Here are the mutated foci.Position 12653209 doesn't seem to be mutated. Here are the mutated foci.Position 12653421 doesn't seem to be mutated. Here are the mutated foci.Position 12656249 doesn't seem to be mutated. Here are the mutated foci.Position 12658095 doesn't seem to be mutated. Here are the mutated foci.Position 12662221 doesn't seem to be mutated. Here are the mutated foci.Position 12666780 doesn't seem to be mutated. Here are the mutated foci.Position 12668985 doesn't seem to be mutated. Here are the mutated foci.Position 12669163 doesn't seem to be mutated. Here are the mutated foci.Position 14143871 doesn't seem to be mutated. Here are the mutated foci.Position 14148114 doesn't seem to be mutated. Here are the mutated foci.Position 14153115 doesn't seem to be mutated. Here are the mutated foci.Position 14155005 doesn't seem to be mutated. Here are the mutated foci.Position 14155848 doesn't seem to be mutated. Here are the mutated foci.Position 14155850 doesn't seem to be mutated. Here are the mutated foci.Position 14157065 doesn't seem to be mutated. Here are the mutated foci.Position 14158906 doesn't seem to be mutated. Here are the mutated foci.Position 14159731 doesn't seem to be mutated. Here are the mutated foci.Position 14164460 doesn't seem to be mutated. Here are the mutated foci.Position 14165881 doesn't seem to be mutated. Here are the mutated foci.Position 14167179 doesn't seem to be mutated. Here are the mutated foci.Position 14168236 doesn't seem to be mutated. Here are the mutated foci.Position 14170426 doesn't seem to be mutated. Here are the mutated foci.Position 14171113 doesn't seem to be mutated. Here are the mutated foci.Position 14172205 doesn't seem to be mutated. Here are the mutated foci.Position 14173978 doesn't seem to be mutated. Here are the mutated foci.Position 14177323 doesn't seem to be mutated. Here are the mutated foci.Position 36994041 doesn't seem to be mutated. Here are the mutated foci.Position 36997932 doesn't seem to be mutated. Here are the mutated foci.Position 37001035 doesn't seem to be mutated. Here are the mutated foci.Position 37001350 doesn't seem to be mutated. Here are the mutated foci.Position 37001738 doesn't seem to be mutated. Here are the mutated foci.Position 37005753 doesn't seem to be mutated. Here are the mutated foci.Position 37005882 doesn't seem to be mutated. Here are the mutated foci.Position 37006118 doesn't seem to be mutated. Here are the mutated foci.Position 37010707 doesn't seem to be mutated. Here are the mutated foci.Position 37015002 doesn't seem to be mutated. Here are the mutated foci.Position 37019817 doesn't seem to be mutated. Here are the mutated foci.Position 37022835 doesn't seem to be mutated. Here are the mutated foci.Position 37023008 doesn't seem to be mutated. Here are the mutated foci.Position 37031729 doesn't seem to be mutated. Here are the mutated foci.Position 37037632 doesn't seem to be mutated. Here are the mutated foci.Position 37039576 doesn't seem to be mutated. Here are the mutated foci.Position 37040996 doesn't seem to be mutated. Here are the mutated foci.Position 37045268 doesn't seem to be mutated. Here are the mutated foci.Position 37048434 doesn't seem to be mutated. Here are the mutated foci.Position 48564741 doesn't seem to be mutated. Here are the mutated foci.Position 48565297 doesn't seem to be mutated. Here are the mutated foci.Position 48566375 doesn't seem to be mutated. Here are the mutated foci.Position 48566744 doesn't seem to be mutated. Here are the mutated foci.Position 48568125 doesn't seem to be mutated. Here are the mutated foci.Position 48569504 doesn't seem to be mutated. Here are the mutated foci.Position 48571265 doesn't seem to be mutated. Here are the mutated foci.Position 48574401 doesn't seem to be mutated. Here are the mutated foci.Position 48576238 doesn't seem to be mutated. Here are the mutated foci.Position 48576610 doesn't seem to be mutated. Here are the mutated foci.Position 48577845 doesn't seem to be mutated. Here are the mutated foci.Position 48578295 doesn't seem to be mutated. Here are the mutated foci.Position 48582224 doesn't seem to be mutated. Here are the mutated foci.Position 48583619 doesn't seem to be mutated. Here are the mutated foci.Position 48588987 doesn't seem to be mutated. Here are the mutated foci.Position 48591066 doesn't seem to be mutated. Here are the mutated foci.Position 48591533 doesn't seem to be mutated. Here are the mutated foci.Position 48592279 doesn't seem to be mutated. Here are the mutated foci.Position 48592771 doesn't seem to be mutated. Here are the mutated foci.Position 48594079 doesn't seem to be mutated. Here are the mutated foci.Position 48594890 doesn't seem to be mutated. Here are the mutated foci.Position 52404137 doesn't seem to be mutated. Here are the mutated foci.Position 52405363 doesn't seem to be mutated. Here are the mutated foci.Position 69735715 doesn't seem to be mutated. Here are the mutated foci.Position 69735955 doesn't seem to be mutated. Here are the mutated foci.Position 69737092 doesn't seem to be mutated. Here are the mutated foci.Position 69740990 doesn't seem to be mutated. Here are the mutated foci.Position 69745443 doesn't seem to be mutated. Here are the mutated foci.Position 69749365 doesn't seem to be mutated. Here are the mutated foci.Position 69749633 doesn't seem to be mutated. Here are the mutated foci.Position 69752612 doesn't seem to be mutated. Here are the mutated foci.Position 69753036 doesn't seem to be mutated. Here are the mutated foci.Position 69754776 doesn't seem to be mutated. Here are the mutated foci.Position 69760000 doesn't seem to be mutated. Here are the mutated foci.Position 69760634 doesn't seem to be mutated. Here are the mutated foci.Position 69761312 doesn't seem to be mutated. Here are the mutated foci.Position 69761337 doesn't seem to be mutated. Here are the mutated foci.Position 69763618 doesn't seem to be mutated. Here are the mutated foci.Position 69764136 doesn't seem to be mutated. Here are the mutated foci.Position 69766442 doesn't seem to be mutated. Here are the mutated foci.Position 69771386 doesn't seem to be mutated. Here are the mutated foci.Position 69773604 doesn't seem to be mutated. Here are the mutated foci.Position 69777245 doesn't seem to be mutated. Here are the mutated foci.Position 69783941 doesn't seem to be mutated. Here are the mutated foci.Position 69786047 doesn't seem to be mutated. Here are the mutated foci.Position 69792603 doesn't seem to be mutated. Here are the mutated foci.Position 69794415 doesn't seem to be mutated. Here are the mutated foci.Position 69799303 doesn't seem to be mutated. Here are the mutated foci.Position 69802341 doesn't seem to be mutated. Here are the mutated foci.Position 69807873 doesn't seem to be mutated. Here are the mutated foci.Position 69810711 doesn't seem to be mutated. Here are the mutated foci.Position 69813799 doesn't seem to be mutated. Here are the mutated foci.Position 69814582 doesn't seem to be mutated. Here are the mutated foci.Position 69814843 doesn't seem to be mutated. Here are the mutated foci.Position 69819435 doesn't seem to be mutated. Here are the mutated foci.Position 69819880 doesn't seem to be mutated. Here are the mutated foci.Position 69819963 doesn't seem to be mutated. Here are the mutated foci.Position 69822045 doesn't seem to be mutated. Here are the mutated foci.Position 69822660 doesn't seem to be mutated. Here are the mutated foci.Position 69825689 doesn't seem to be mutated. Here are the mutated foci.Position 69829688 doesn't seem to be mutated. Here are the mutated foci.Position 69833759 doesn't seem to be mutated. Here are the mutated foci.Position 69835082 doesn't seem to be mutated. Here are the mutated foci.Position 69836501 doesn't seem to be mutated. Here are the mutated foci.Position 69841584 doesn't seem to be mutated. Here are the mutated foci.Position 69846234 doesn't seem to be mutated. Here are the mutated foci.Position 69850274 doesn't seem to be mutated. Here are the mutated foci.Position 69852115 doesn't seem to be mutated. Here are the mutated foci.Position 69852211 doesn't seem to be mutated. Here are the mutated foci.Position 69853947 doesn't seem to be mutated. Here are the mutated foci.Position 69864023 doesn't seem to be mutated. Here are the mutated foci.Position 69871080 doesn't seem to be mutated. Here are the mutated foci.Position 69873767 doesn't seem to be mutated. Here are the mutated foci.Position 69875452 doesn't seem to be mutated. Here are the mutated foci.Position 69875636 doesn't seem to be mutated. Here are the mutated foci.Position 69878508 doesn't seem to be mutated. Here are the mutated foci.Position 69881620 doesn't seem to be mutated. Here are the mutated foci.Position 69884218 doesn't seem to be mutated. Here are the mutated foci.Position 69885614 doesn't seem to be mutated. Here are the mutated foci.Position 69887621 doesn't seem to be mutated. Here are the mutated foci.Position 69892578 doesn't seem to be mutated. Here are the mutated foci.Position 69893503 doesn't seem to be mutated. Here are the mutated foci.Position 69895411 doesn't seem to be mutated. Here are the mutated foci.Position 69895468 doesn't seem to be mutated. Here are the mutated foci.Position 69899927 doesn't seem to be mutated. Here are the mutated foci.Position 69903808 doesn't seem to be mutated. Here are the mutated foci.Position 69905531 doesn't seem to be mutated. Here are the mutated foci.Position 69925282 doesn't seem to be mutated. Here are the mutated foci.Position 69925455 doesn't seem to be mutated. Here are the mutated foci.Position 69925833 doesn't seem to be mutated. Here are the mutated foci.Position 69926375 doesn't seem to be mutated. Here are the mutated foci.Position 69927181 doesn't seem to be mutated. Here are the mutated foci.Position 69927999 doesn't seem to be mutated. Here are the mutated foci.Position 69929691 doesn't seem to be mutated. Here are the mutated foci.Position 69929999 doesn't seem to be mutated. Here are the mutated foci.Position 69936445 doesn't seem to be mutated. Here are the mutated foci.Position 69937962 doesn't seem to be mutated. Here are the mutated foci.Position 69938376 doesn't seem to be mutated. Here are the mutated foci.Position 69942035 doesn't seem to be mutated. Here are the mutated foci.Position 69946908 doesn't seem to be mutated. Here are the mutated foci.Position 69948714 doesn't seem to be mutated. Here are the mutated foci.Position 69949287 doesn't seem to be mutated. Here are the mutated foci.Position 69951688 doesn't seem to be mutated. Here are the mutated foci.Position 69953624 doesn't seem to be mutated. Here are the mutated foci.Position 69956540 doesn't seem to be mutated. Here are the mutated foci.Position 69956948 doesn't seem to be mutated. Here are the mutated foci.Position 69957135 doesn't seem to be mutated. Here are the mutated foci.Position 69957287 doesn't seem to be mutated. Here are the mutated foci.Position 69957543 doesn't seem to be mutated. Here are the mutated foci.Position 69960120 doesn't seem to be mutated. Here are the mutated foci.Position 69961808 doesn't seem to be mutated. Here are the mutated foci.Position 69963029 doesn't seem to be mutated. Here are the mutated foci.Position 69966351 doesn't seem to be mutated. Here are the mutated foci.Position 69966578 doesn't seem to be mutated. Here are the mutated foci.Position 69968265 doesn't seem to be mutated. Here are the mutated foci.Position 69971306 doesn't seem to be mutated. Here are the mutated foci.Position 69972526 doesn't seem to be mutated. Here are the mutated foci.Position 69973194 doesn't seem to be mutated. Here are the mutated foci.Position 122179733 doesn't seem to be mutated. Here are the mutated foci.Position 122183575 doesn't seem to be mutated. Here are the mutated foci.Position 122184200 doesn't seem to be mutated. Here are the mutated foci.Position 122187931 doesn't seem to be mutated. Here are the mutated foci.Position 122191798 doesn't seem to be mutated. Here are the mutated foci.Position 122197040 doesn't seem to be mutated. Here are the mutated foci.Position 122204706 doesn't seem to be mutated. Here are the mutated foci.Position 122205221 doesn't seem to be mutated. Here are the mutated foci.Position 122205692 doesn't seem to be mutated. Here are the mutated foci.Position 122207481 doesn't seem to be mutated. Here are the mutated foci.Position 122207652 doesn't seem to be mutated. Here are the mutated foci.Position 122211124 doesn't seem to be mutated. Here are the mutated foci.Position 122212427 doesn't seem to be mutated. Here are the mutated foci.Position 122213349 doesn't seem to be mutated. Here are the mutated foci.Position 122218168 doesn't seem to be mutated. Here are the mutated foci.Position 122221561 doesn't seem to be mutated. Here are the mutated foci.Position 122223855 doesn't seem to be mutated. Here are the mutated foci.Position 122234733 doesn't seem to be mutated. Here are the mutated foci.Position 122235237 doesn't seem to be mutated. Here are the mutated foci.Position 122236371 doesn't seem to be mutated. Here are the mutated foci.Position 122238264 doesn't seem to be mutated. Here are the mutated foci.Position 122241750 doesn't seem to be mutated. Here are the mutated foci.Position 122246634 doesn't seem to be mutated. Here are the mutated foci.Position 122252255 doesn't seem to be mutated. Here are the mutated foci.Position 122253883 doesn't seem to be mutated. Here are the mutated foci.Position 122259344 doesn't seem to be mutated. Here are the mutated foci.Position 122259814 doesn't seem to be mutated. Here are the mutated foci.Position 122267639 doesn't seem to be mutated. Here are the mutated foci.Position 122269913 doesn't seem to be mutated. Here are the mutated foci.Position 122272292 doesn't seem to be mutated. Here are the mutated foci.Position 122274347 doesn't seem to be mutated. Here are the mutated foci.Position 122274534 doesn't seem to be mutated. Here are the mutated foci.Position 122278126 doesn't seem to be mutated. Here are the mutated foci.Position 122278764 doesn't seem to be mutated. Here are the mutated foci.Position 122280155 doesn't seem to be mutated. Here are the mutated foci.Position 122281960 doesn't seem to be mutated. Here are the mutated foci.Position 122284864 doesn't seem to be mutated. Here are the mutated foci.Position 122284936 doesn't seem to be mutated. Here are the mutated foci.Position 122285008 doesn't seem to be mutated. Here are the mutated foci.Position 122286255 doesn't seem to be mutated. Here are the mutated foci.Position 122294666 doesn't seem to be mutated. Here are the mutated foci.Position 128475843 doesn't seem to be mutated. Here are the mutated foci.Position 128476373 doesn't seem to be mutated. Here are the mutated foci.Position 128481625 doesn't seem to be mutated. Here are the mutated foci.Position 128482531 doesn't seem to be mutated. Here are the mutated foci.Position 128491748 doesn't seem to be mutated. Here are the mutated foci.Position 128496708 doesn't seem to be mutated. Here are the mutated foci.Position 158580987 doesn't seem to be mutated. Here are the mutated foci.Position 158582428 doesn't seem to be mutated. Here are the mutated foci.Position 158582518 doesn't seem to be mutated. Here are the mutated foci.Position 158584299 doesn't seem to be mutated. Here are the mutated foci.Position 158586031 doesn't seem to be mutated. Here are the mutated foci.Position 158589934 doesn't seem to be mutated. Here are the mutated foci.Position 158593044 doesn't seem to be mutated. Here are the mutated foci.Position 158595546 doesn't seem to be mutated. Here are the mutated foci.Position 158598602 doesn't seem to be mutated. Here are the mutated foci.Position 158599473 doesn't seem to be mutated. Here are the mutated foci.Position 158601396 doesn't seem to be mutated. Here are the mutated foci.Position 158601682 doesn't seem to be mutated. Here are the mutated foci.Position 158603351 doesn't seem to be mutated. Here are the mutated foci.Position 158605644 doesn't seem to be mutated. Here are the mutated foci.Position 158606314 doesn't seem to be mutated. Here are the mutated foci.Position 158606788 doesn't seem to be mutated. Here are the mutated foci.Position 158608219 doesn't seem to be mutated. Here are the mutated foci.Position 158609468 doesn't seem to be mutated. Here are the mutated foci.Position 158610091 doesn't seem to be mutated. Here are the mutated foci.Position 169760405 doesn't seem to be mutated. Here are the mutated foci.Position 179147384 doesn't seem to be mutated. Here are the mutated foci.Position 179148950 doesn't seem to be mutated. Here are the mutated foci.Position 179150016 doesn't seem to be mutated. Here are the mutated foci.Position 179154414 doesn't seem to be mutated. Here are the mutated foci.Position 179157120 doesn't seem to be mutated. Here are the mutated foci.Position 179158461 doesn't seem to be mutated. Here are the mutated foci.Position 179159793 doesn't seem to be mutated. Here are the mutated foci.Position 179161638 doesn't seem to be mutated. Here are the mutated foci.Position 179162893 doesn't seem to be mutated. Here are the mutated foci.Position 179163088 doesn't seem to be mutated. Here are the mutated foci.Position 179168665 doesn't seem to be mutated. Here are the mutated foci.Position 179169900 doesn't seem to be mutated. Here are the mutated foci.Position 179170423 doesn't seem to be mutated. Here are the mutated foci.Position 179171802 doesn't seem to be mutated. Here are the mutated foci.Position 179183187 doesn't seem to be mutated. Here are the mutated foci.Position 179186802 doesn't seem to be mutated. Here are the mutated foci.Position 179192139 doesn't seem to be mutated. Here are the mutated foci.Position 179193514 doesn't seem to be mutated. Here are the mutated foci.Position 179199773 doesn't seem to be mutated. Here are the mutated foci.Position 179201281 doesn't seem to be mutated. Here are the mutated foci.Position 179207550 doesn't seem to be mutated. Here are the mutated foci.Position 179207912 doesn't seem to be mutated. Here are the mutated foci.Position 179209976 doesn't seem to be mutated. Here are the mutated foci.Position 179210797 doesn't seem to be mutated. Here are the mutated foci.Position 179213893 doesn't seem to be mutated. Here are the mutated foci.Position 179217030 doesn't seem to be mutated. Here are the mutated foci.Position 179217934 doesn't seem to be mutated. Here are the mutated foci.Position 179225200 doesn't seem to be mutated. Here are the mutated foci.Position 179230981 doesn't seem to be mutated. Here are the mutated foci.Position 1790564 doesn't seem to be mutated. Here are the mutated foci.Position 1795116 doesn't seem to be mutated. Here are the mutated foci.Position 1797074 doesn't seem to be mutated. Here are the mutated foci.Position 1797545 doesn't seem to be mutated. Here are the mutated foci.Position 1797721 doesn't seem to be mutated. Here are the mutated foci.Position 1800182 doesn't seem to be mutated. Here are the mutated foci.Position 1802282 doesn't seem to be mutated. Here are the mutated foci.Position 1803940 doesn't seem to be mutated. Here are the mutated foci.Position 1806800 doesn't seem to be mutated. Here are the mutated foci.Position 1807166 doesn't seem to be mutated. Here are the mutated foci.Position 41739166 doesn't seem to be mutated. Here are the mutated foci.Position 41739368 doesn't seem to be mutated. Here are the mutated foci.Position 41740470 doesn't seem to be mutated. Here are the mutated foci.Position 41741176 doesn't seem to be mutated. Here are the mutated foci.Position 41745076 doesn't seem to be mutated. Here are the mutated foci.Position 41748440 doesn't seem to be mutated. Here are the mutated foci.Position 41750343 doesn't seem to be mutated. Here are the mutated foci.Position 54233547 doesn't seem to be mutated. Here are the mutated foci.Position 54233602 doesn't seem to be mutated. Here are the mutated foci.Position 54234986 doesn't seem to be mutated. Here are the mutated foci.Position 54239859 doesn't seem to be mutated. Here are the mutated foci.Position 54242763 doesn't seem to be mutated. Here are the mutated foci.Position 54243189 doesn't seem to be mutated. Here are the mutated foci.Position 54243281 doesn't seem to be mutated. Here are the mutated foci.Position 54243917 doesn't seem to be mutated. Here are the mutated foci.Position 54246598 doesn't seem to be mutated. Here are the mutated foci.Position 54251362 doesn't seem to be mutated. Here are the mutated foci.Position 54256891 doesn't seem to be mutated. Here are the mutated foci.Position 54257347 doesn't seem to be mutated. Here are the mutated foci.Position 54263461 doesn't seem to be mutated. Here are the mutated foci.Position 54264529 doesn't seem to be mutated. Here are the mutated foci.Position 54264763 doesn't seem to be mutated. Here are the mutated foci.Position 54265362 doesn't seem to be mutated. Here are the mutated foci.Position 54268189 doesn't seem to be mutated. Here are the mutated foci.Position 54268751 doesn't seem to be mutated. Here are the mutated foci.Position 54282047 doesn't seem to be mutated. Here are the mutated foci.Position 54282290 doesn't seem to be mutated. Here are the mutated foci.Position 54282443 doesn't seem to be mutated. Here are the mutated foci.Position 54285521 doesn't seem to be mutated. Here are the mutated foci.Position 54287054 doesn't seem to be mutated. Here are the mutated foci.Position 54288749 doesn't seem to be mutated. Here are the mutated foci.Position 54292018 doesn't seem to be mutated. Here are the mutated foci.Position 54292698 doesn't seem to be mutated. Here are the mutated foci.Position 54295163 doesn't seem to be mutated. Here are the mutated foci.Position 54299028 doesn't seem to be mutated. Here are the mutated foci.Position 54301188 doesn't seem to be mutated. Here are the mutated foci.Position 54657244 doesn't seem to be mutated. Here are the mutated foci.Position 54660788 doesn't seem to be mutated. Here are the mutated foci.Position 54663598 doesn't seem to be mutated. Here are the mutated foci.Position 54663627 doesn't seem to be mutated. Here are the mutated foci.Position 54666320 doesn't seem to be mutated. Here are the mutated foci.Position 54671201 doesn't seem to be mutated. Here are the mutated foci.Position 54671422 doesn't seem to be mutated. Here are the mutated foci.Position 54679733 doesn't seem to be mutated. Here are the mutated foci.Position 54684650 doesn't seem to be mutated. Here are the mutated foci.Position 54686679 doesn't seem to be mutated. Here are the mutated foci.Position 54688816 doesn't seem to be mutated. Here are the mutated foci.Position 54689205 doesn't seem to be mutated. Here are the mutated foci.Position 54689212 doesn't seem to be mutated. Here are the mutated foci.Position 54695199 doesn't seem to be mutated. Here are the mutated foci.Position 54695755 doesn't seem to be mutated. Here are the mutated foci.Position 54696176 doesn't seem to be mutated. Here are the mutated foci.Position 54698139 doesn't seem to be mutated. Here are the mutated foci.Position 54700583 doesn't seem to be mutated. Here are the mutated foci.Position 54705779 doesn't seem to be mutated. Here are the mutated foci.Position 54708032 doesn't seem to be mutated. Here are the mutated foci.Position 54709001 doesn't seem to be mutated. Here are the mutated foci.Position 54710662 doesn't seem to be mutated. Here are the mutated foci.Position 54710992 doesn't seem to be mutated. Here are the mutated foci.Position 54713778 doesn't seem to be mutated. Here are the mutated foci.Position 54720094 doesn't seem to be mutated. Here are the mutated foci.Position 54722288 doesn't seem to be mutated. Here are the mutated foci.Position 54723779 doesn't seem to be mutated. Here are the mutated foci.Position 54732953 doesn't seem to be mutated. Here are the mutated foci.Position 54734025 doesn't seem to be mutated. Here are the mutated foci.Position 54736502 doesn't seem to be mutated. Here are the mutated foci.Position 54740635 doesn't seem to be mutated. Here are the mutated foci.Position 54742804 doesn't seem to be mutated. Here are the mutated foci.Position 54743202 doesn't seem to be mutated. Here are the mutated foci.Position 56903527 doesn't seem to be mutated. Here are the mutated foci.Position 56904809 doesn't seem to be mutated. Here are the mutated foci.Position 56906138 doesn't seem to be mutated. Here are the mutated foci.Position 56907315 doesn't seem to be mutated. Here are the mutated foci.Position 56907759 doesn't seem to be mutated. Here are the mutated foci.Position 56907862 doesn't seem to be mutated. Here are the mutated foci.Position 56911117 doesn't seem to be mutated. Here are the mutated foci.Position 56913783 doesn't seem to be mutated. Here are the mutated foci.Position 56914046 doesn't seem to be mutated. Here are the mutated foci.Position 56920536 doesn't seem to be mutated. Here are the mutated foci.Position 56920959 doesn't seem to be mutated. Here are the mutated foci.Position 56921340 doesn't seem to be mutated. Here are the mutated foci.Position 56921480 doesn't seem to be mutated. Here are the mutated foci.Position 56921763 doesn't seem to be mutated. Here are the mutated foci.Position 56924111 doesn't seem to be mutated. Here are the mutated foci.Position 56925885 doesn't seem to be mutated. Here are the mutated foci.Position 56929324 doesn't seem to be mutated. Here are the mutated foci.Position 56931231 doesn't seem to be mutated. Here are the mutated foci.Position 56931808 doesn't seem to be mutated. Here are the mutated foci.Position 56931814 doesn't seem to be mutated. Here are the mutated foci.Position 56938563 doesn't seem to be mutated. Here are the mutated foci.Position 56943133 doesn't seem to be mutated. Here are the mutated foci.Position 56951223 doesn't seem to be mutated. Here are the mutated foci.Position 56955887 doesn't seem to be mutated. Here are the mutated foci.Position 219273 doesn't seem to be mutated. Here are the mutated foci.Position 220933 doesn't seem to be mutated. Here are the mutated foci.Position 223687 doesn't seem to be mutated. Here are the mutated foci.Position 224604 doesn't seem to be mutated. Here are the mutated foci.Position 225478 doesn't seem to be mutated. Here are the mutated foci.Position 226012 doesn't seem to be mutated. Here are the mutated foci.Position 228257 doesn't seem to be mutated. Here are the mutated foci.Position 232353 doesn't seem to be mutated. Here are the mutated foci.Position 234453 doesn't seem to be mutated. Here are the mutated foci.Position 237942 doesn't seem to be mutated. Here are the mutated foci.Position 240965 doesn't seem to be mutated. Here are the mutated foci.Position 241062 doesn't seem to be mutated. Here are the mutated foci.Position 241950 doesn't seem to be mutated. Here are the mutated foci.Position 247481 doesn't seem to be mutated. Here are the mutated foci.Position 248384 doesn't seem to be mutated. Here are the mutated foci.Position 248939 doesn't seem to be mutated. Here are the mutated foci.Position 251122 doesn't seem to be mutated. Here are the mutated foci.Position 254396 doesn't seem to be mutated. Here are the mutated foci.Position 254424 doesn't seem to be mutated. Here are the mutated foci.Position 255079 doesn't seem to be mutated. Here are the mutated foci.Position 257207 doesn't seem to be mutated. Here are the mutated foci.Position 893683 doesn't seem to be mutated. Here are the mutated foci.Position 895342 doesn't seem to be mutated. Here are the mutated foci.Position 896095 doesn't seem to be mutated. Here are the mutated foci.Position 901228 doesn't seem to be mutated. Here are the mutated foci.Position 901457 doesn't seem to be mutated. Here are the mutated foci.Position 906011 doesn't seem to be mutated. Here are the mutated foci.Position 906285 doesn't seem to be mutated. Here are the mutated foci.Position 914175 doesn't seem to be mutated. Here are the mutated foci.Position 917593 doesn't seem to be mutated. Here are the mutated foci.Position 919194 doesn't seem to be mutated. Here are the mutated foci.Position 921370 doesn't seem to be mutated. Here are the mutated foci.Position 922501 doesn't seem to be mutated. Here are the mutated foci.Position 1249920 doesn't seem to be mutated. Here are the mutated foci.Position 1253001 doesn't seem to be mutated. Here are the mutated foci.Position 1253547 doesn't seem to be mutated. Here are the mutated foci.Position 1254331 doesn't seem to be mutated. Here are the mutated foci.Position 1256306 doesn't seem to be mutated. Here are the mutated foci.Position 1263406 doesn't seem to be mutated. Here are the mutated foci.Position 1264090 doesn't seem to be mutated. Here are the mutated foci.Position 1267059 doesn't seem to be mutated. Here are the mutated foci.Position 1267282 doesn't seem to be mutated. Here are the mutated foci.Position 1268477 doesn't seem to be mutated. Here are the mutated foci.Position 1271392 doesn't seem to be mutated. Here are the mutated foci.Position 1277771 doesn't seem to be mutated. Here are the mutated foci.Position 1278298 doesn't seem to be mutated. Here are the mutated foci.Position 1279021 doesn't seem to be mutated. Here are the mutated foci.Position 1280171 doesn't seem to be mutated. Here are the mutated foci.Position 1281657 doesn't seem to be mutated. Here are the mutated foci.Position 1285834 doesn't seem to be mutated. Here are the mutated foci.Position 1287636 doesn't seem to be mutated. Here are the mutated foci.Position 1293166 doesn't seem to be mutated. Here are the mutated foci.Position 1298404 doesn't seem to be mutated. Here are the mutated foci.Position 37808344 doesn't seem to be mutated. Here are the mutated foci.Position 37815853 doesn't seem to be mutated. Here are the mutated foci.Position 37821934 doesn't seem to be mutated. Here are the mutated foci.Position 37824259 doesn't seem to be mutated. Here are the mutated foci.Position 37830548 doesn't seem to be mutated. Here are the mutated foci.Position 37832909 doesn't seem to be mutated. Here are the mutated foci.Position 37834852 doesn't seem to be mutated. Here are the mutated foci.Position 37835583 doesn't seem to be mutated. Here are the mutated foci.Position 37838724 doesn't seem to be mutated. Here are the mutated foci.Position 37839790 doesn't seem to be mutated. Here are the mutated foci.Position 37840750 doesn't seem to be mutated. Here are the mutated foci.Position 37840856 doesn't seem to be mutated. Here are the mutated foci.Position 37842854 doesn't seem to be mutated. Here are the mutated foci.Position 80656447 doesn't seem to be mutated. Here are the mutated foci.Position 80659813 doesn't seem to be mutated. Here are the mutated foci.Position 80662438 doesn't seem to be mutated. Here are the mutated foci.Position 80663298 doesn't seem to be mutated. Here are the mutated foci.Position 80666363 doesn't seem to be mutated. Here are the mutated foci.Position 80666406 doesn't seem to be mutated. Here are the mutated foci.Position 80668194 doesn't seem to be mutated. Here are the mutated foci.Position 80674501 doesn't seem to be mutated. Here are the mutated foci.Position 80674668 doesn't seem to be mutated. Here are the mutated foci.Position 80679019 doesn't seem to be mutated. Here are the mutated foci.Position 80683867 doesn't seem to be mutated. Here are the mutated foci.Position 80688859 doesn't seem to be mutated. Here are the mutated foci.Position 80693735 doesn't seem to be mutated. Here are the mutated foci.Position 80693759 doesn't seem to be mutated. Here are the mutated foci.Position 80697012 doesn't seem to be mutated. Here are the mutated foci.Position 80698898 doesn't seem to be mutated. Here are the mutated foci.Position 80700832 doesn't seem to be mutated. Here are the mutated foci.Position 80701925 doesn't seem to be mutated. Here are the mutated foci.Position 80702792 doesn't seem to be mutated. Here are the mutated foci.Position 80704501 doesn't seem to be mutated. Here are the mutated foci.Position 80705078 doesn't seem to be mutated. Here are the mutated foci.Position 80707186 doesn't seem to be mutated. Here are the mutated foci.Position 80709304 doesn't seem to be mutated. Here are the mutated foci.Position 80709574 doesn't seem to be mutated. Here are the mutated foci.Position 80710099 doesn't seem to be mutated. Here are the mutated foci.Position 80712138 doesn't seem to be mutated. Here are the mutated foci.Position 80714271 doesn't seem to be mutated. Here are the mutated foci.Position 80715909 doesn't seem to be mutated. Here are the mutated foci.Position 80717745 doesn't seem to be mutated. Here are the mutated foci.Position 80721151 doesn't seem to be mutated. Here are the mutated foci.Position 80723210 doesn't seem to be mutated. Here are the mutated foci.Position 80724082 doesn't seem to be mutated. Here are the mutated foci.Position 80725858 doesn't seem to be mutated. Here are the mutated foci.Position 80729818 doesn't seem to be mutated. Here are the mutated foci.Position 80731749 doesn't seem to be mutated. Here are the mutated foci.Position 80732400 doesn't seem to be mutated. Here are the mutated foci.Position 80734138 doesn't seem to be mutated. Here are the mutated foci.Position 80735843 doesn't seem to be mutated. Here are the mutated foci.Position 80742406 doesn't seem to be mutated. Here are the mutated foci.Position 80746270 doesn't seem to be mutated. Here are the mutated foci.Position 80750510 doesn't seem to be mutated. Here are the mutated foci.Position 80750802 doesn't seem to be mutated. Here are the mutated foci.Position 80751983 doesn't seem to be mutated. Here are the mutated foci.Position 80753913 doesn't seem to be mutated. Here are the mutated foci.Position 80758029 doesn't seem to be mutated. Here are the mutated foci.Position 80758665 doesn't seem to be mutated. Here are the mutated foci.Position 80759888 doesn't seem to be mutated. Here are the mutated foci.Position 80761662 doesn't seem to be mutated. Here are the mutated foci.Position 80762342 doesn't seem to be mutated. Here are the mutated foci.Position 80767177 doesn't seem to be mutated. Here are the mutated foci.Position 80772967 doesn't seem to be mutated. Here are the mutated foci.Position 80775165 doesn't seem to be mutated. Here are the mutated foci.Position 80775429 doesn't seem to be mutated. Here are the mutated foci.Position 80779475 doesn't seem to be mutated. Here are the mutated foci.Position 80781986 doesn't seem to be mutated. Here are the mutated foci.Position 80791153 doesn't seem to be mutated. Here are the mutated foci.Position 80792340 doesn't seem to be mutated. Here are the mutated foci.Position 80795344 doesn't seem to be mutated. Here are the mutated foci.Position 80797903 doesn't seem to be mutated. Here are the mutated foci.Position 80812250 doesn't seem to be mutated. Here are the mutated foci.Position 80813983 doesn't seem to be mutated. Here are the mutated foci.Position 80815521 doesn't seem to be mutated. Here are the mutated foci.Position 80816371 doesn't seem to be mutated. Here are the mutated foci.Position 80818734 doesn't seem to be mutated. Here are the mutated foci.Position 80820957 doesn't seem to be mutated. Here are the mutated foci.Position 80821641 doesn't seem to be mutated. Here are the mutated foci.Position 80824186 doesn't seem to be mutated. Here are the mutated foci.Position 80826101 doesn't seem to be mutated. Here are the mutated foci.Position 80829297 doesn't seem to be mutated. Here are the mutated foci.Position 80831482 doesn't seem to be mutated. Here are the mutated foci.Position 80833096 doesn't seem to be mutated. Here are the mutated foci.Position 80835381 doesn't seem to be mutated. Here are the mutated foci.Position 80840185 doesn't seem to be mutated. Here are the mutated foci.Position 80840453 doesn't seem to be mutated. Here are the mutated foci.Position 80844993 doesn't seem to be mutated. Here are the mutated foci.Position 80846363 doesn't seem to be mutated. Here are the mutated foci.Position 80852246 doesn't seem to be mutated. Here are the mutated foci.Position 80855745 doesn't seem to be mutated. Here are the mutated foci.Position 80857833 doesn't seem to be mutated. Here are the mutated foci.Position 80858403 doesn't seem to be mutated. Here are the mutated foci.Position 80861538 doesn't seem to be mutated. Here are the mutated foci.Position 80862681 doesn't seem to be mutated. Here are the mutated foci.Position 80866349 doesn't seem to be mutated. Here are the mutated foci.Position 80867777 doesn't seem to be mutated. Here are the mutated foci.Position 80869500 doesn't seem to be mutated. Here are the mutated foci.Position 80869767 doesn't seem to be mutated. Here are the mutated foci.Position 80875670 doesn't seem to be mutated. Here are the mutated foci.Position 112704242 doesn't seem to be mutated. Here are the mutated foci.Position 112704894 doesn't seem to be mutated. Here are the mutated foci.Position 112705709 doesn't seem to be mutated. Here are the mutated foci.Position 112706852 doesn't seem to be mutated. Here are the mutated foci.Position 112707907 doesn't seem to be mutated. Here are the mutated foci.Position 112709106 doesn't seem to be mutated. Here are the mutated foci.Position 112709976 doesn't seem to be mutated. Here are the mutated foci.Position 112710941 doesn't seem to be mutated. Here are the mutated foci.Position 112713901 doesn't seem to be mutated. Here are the mutated foci.Position 112716000 doesn't seem to be mutated. Here are the mutated foci.Position 112722806 doesn't seem to be mutated. Here are the mutated foci.Position 112723145 doesn't seem to be mutated. Here are the mutated foci.Position 112723305 doesn't seem to be mutated. Here are the mutated foci.Position 112723608 doesn't seem to be mutated. Here are the mutated foci.Position 112726057 doesn't seem to be mutated. Here are the mutated foci.Position 112728083 doesn't seem to be mutated. Here are the mutated foci.Position 112728148 doesn't seem to be mutated. Here are the mutated foci.Position 112732408 doesn't seem to be mutated. Here are the mutated foci.Position 112732960 doesn't seem to be mutated. Here are the mutated foci.Position 112733394 doesn't seem to be mutated. Here are the mutated foci.Position 112733475 doesn't seem to be mutated. Here are the mutated foci.Position 112736199 doesn't seem to be mutated. Here are the mutated foci.Position 112737311 doesn't seem to be mutated. Here are the mutated foci.Position 112738405 doesn't seem to be mutated. Here are the mutated foci.Position 112744264 doesn't seem to be mutated. Here are the mutated foci.Position 112745018 doesn't seem to be mutated. Here are the mutated foci.Position 112746993 doesn't seem to be mutated. Here are the mutated foci.Position 112751654 doesn't seem to be mutated. Here are the mutated foci.Position 112753745 doesn't seem to be mutated. Here are the mutated foci.Position 112762647 doesn't seem to be mutated. Here are the mutated foci.Position 112763854 doesn't seem to be mutated. Here are the mutated foci.Position 112768685 doesn't seem to be mutated. Here are the mutated foci.Position 112773448 doesn't seem to be mutated. Here are the mutated foci.Position 112775816 doesn't seem to be mutated. Here are the mutated foci.Position 112775993 doesn't seem to be mutated. Here are the mutated foci.Position 112777118 doesn't seem to be mutated. Here are the mutated foci.Position 112788724 doesn't seem to be mutated. Here are the mutated foci.Position 112788733 doesn't seem to be mutated. Here are the mutated foci.Position 112788984 doesn't seem to be mutated. Here are the mutated foci.Position 112789905 doesn't seem to be mutated. Here are the mutated foci.Position 112790210 doesn't seem to be mutated. Here are the mutated foci.Position 112792369 doesn't seem to be mutated. Here are the mutated foci.Position 112794914 doesn't seem to be mutated. Here are the mutated foci.Position 112800054 doesn't seem to be mutated. Here are the mutated foci.Position 112801491 doesn't seem to be mutated. Here are the mutated foci.Position 112802608 doesn't seem to be mutated. Here are the mutated foci.Position 112804763 doesn't seem to be mutated. Here are the mutated foci.Position 112808577 doesn't seem to be mutated. Here are the mutated foci.Position 112813368 doesn't seem to be mutated. Here are the mutated foci.Position 112813926 doesn't seem to be mutated. Here are the mutated foci.Position 112816662 doesn't seem to be mutated. Here are the mutated foci.Position 112820122 doesn't seem to be mutated. Here are the mutated foci.Position 112820644 doesn't seem to be mutated. Here are the mutated foci.Position 112822295 doesn't seem to be mutated. Here are the mutated foci.Position 112824752 doesn't seem to be mutated. Here are the mutated foci.Position 112827933 doesn't seem to be mutated. Here are the mutated foci.Position 112828758 doesn't seem to be mutated. Here are the mutated foci.Position 112833472 doesn't seem to be mutated. Here are the mutated foci.Position 112835661 doesn't seem to be mutated. Here are the mutated foci.Position 112835804 doesn't seem to be mutated. Here are the mutated foci.Position 112837466 doesn't seem to be mutated. Here are the mutated foci.Position 112843825 doesn't seem to be mutated. Here are the mutated foci.Position 132558314 doesn't seem to be mutated. Here are the mutated foci.Position 132558481 doesn't seem to be mutated. Here are the mutated foci.Position 132561215 doesn't seem to be mutated. Here are the mutated foci.Position 132565002 doesn't seem to be mutated. Here are the mutated foci.Position 132566642 doesn't seem to be mutated. Here are the mutated foci.Position 132571107 doesn't seem to be mutated. Here are the mutated foci.Position 132571569 doesn't seem to be mutated. Here are the mutated foci.Position 132572892 doesn't seem to be mutated. Here are the mutated foci.Position 132579629 doesn't seem to be mutated. Here are the mutated foci.Position 132584195 doesn't seem to be mutated. Here are the mutated foci.Position 132585119 doesn't seem to be mutated. Here are the mutated foci.Position 132589673 doesn't seem to be mutated. Here are the mutated foci.Position 132589700 doesn't seem to be mutated. Here are the mutated foci.Position 132590101 doesn't seem to be mutated. Here are the mutated foci.Position 132595847 doesn't seem to be mutated. Here are the mutated foci.Position 132597687 doesn't seem to be mutated. Here are the mutated foci.Position 132604139 doesn't seem to be mutated. Here are the mutated foci.Position 132605116 doesn't seem to be mutated. Here are the mutated foci.Position 132607319 doesn't seem to be mutated. Here are the mutated foci.Position 132607594 doesn't seem to be mutated. Here are the mutated foci.Position 132616441 doesn't seem to be mutated. Here are the mutated foci.Position 132617949 doesn't seem to be mutated. Here are the mutated foci.Position 132620986 doesn't seem to be mutated. Here are the mutated foci.Position 132623647 doesn't seem to be mutated. Here are the mutated foci.Position 132630972 doesn't seem to be mutated. Here are the mutated foci.Position 132636628 doesn't seem to be mutated. Here are the mutated foci.Position 132637530 doesn't seem to be mutated. Here are the mutated foci.Position 132638158 doesn't seem to be mutated. Here are the mutated foci.Position 132638479 doesn't seem to be mutated. Here are the mutated foci.Position 132645239 doesn't seem to be mutated. Here are the mutated foci.Position 132646736 doesn't seem to be mutated. Here are the mutated foci.Position 132649736 doesn't seem to be mutated. Here are the mutated foci.Position 132651305 doesn't seem to be mutated. Here are the mutated foci.Position 138608787 doesn't seem to be mutated. Here are the mutated foci.Position 138608877 doesn't seem to be mutated. Here are the mutated foci.Position 138610211 doesn't seem to be mutated. Here are the mutated foci.Position 138610402 doesn't seem to be mutated. Here are the mutated foci.Position 138629316 doesn't seem to be mutated. Here are the mutated foci.Position 138630522 doesn't seem to be mutated. Here are the mutated foci.Position 138632948 doesn't seem to be mutated. Here are the mutated foci.Position 138637557 doesn't seem to be mutated. Here are the mutated foci.Position 138641147 doesn't seem to be mutated. Here are the mutated foci.Position 138641384 doesn't seem to be mutated. Here are the mutated foci.Position 138645645 doesn't seem to be mutated. Here are the mutated foci.Position 138650378 doesn't seem to be mutated. Here are the mutated foci.Position 138653368 doesn't seem to be mutated. Here are the mutated foci.Position 138653462 doesn't seem to be mutated. Here are the mutated foci.Position 138655301 doesn't seem to be mutated. Here are the mutated foci.Position 138657046 doesn't seem to be mutated. Here are the mutated foci.Position 138661569 doesn't seem to be mutated. Here are the mutated foci.Position 138663561 doesn't seem to be mutated. Here are the mutated foci.Position 138665677 doesn't seem to be mutated. Here are the mutated foci.Position 138671244 doesn't seem to be mutated. Here are the mutated foci.Position 138671603 doesn't seem to be mutated. Here are the mutated foci.Position 138679696 doesn't seem to be mutated. Here are the mutated foci.Position 138682884 doesn't seem to be mutated. Here are the mutated foci.Position 138684488 doesn't seem to be mutated. Here are the mutated foci.Position 138688747 doesn't seem to be mutated. Here are the mutated foci.Position 138690947 doesn't seem to be mutated. Here are the mutated foci.Position 138693194 doesn't seem to be mutated. Here are the mutated foci.Position 138696553 doesn't seem to be mutated. Here are the mutated foci.Position 138696637 doesn't seem to be mutated. Here are the mutated foci.Position 138701106 doesn't seem to be mutated. Here are the mutated foci.Position 138703168 doesn't seem to be mutated. Here are the mutated foci.Position 138707143 doesn't seem to be mutated. Here are the mutated foci.Position 138710803 doesn't seem to be mutated. Here are the mutated foci.Position 138712165 doesn't seem to be mutated. Here are the mutated foci.Position 138713918 doesn't seem to be mutated. Here are the mutated foci.Position 138714018 doesn't seem to be mutated. Here are the mutated foci.Position 138718696 doesn't seem to be mutated. Here are the mutated foci.Position 138720806 doesn't seem to be mutated. Here are the mutated foci.Position 138721914 doesn't seem to be mutated. Here are the mutated foci.Position 138723784 doesn't seem to be mutated. Here are the mutated foci.Position 138724107 doesn't seem to be mutated. Here are the mutated foci.Position 138729411 doesn't seem to be mutated. Here are the mutated foci.Position 138729991 doesn't seem to be mutated. Here are the mutated foci.Position 138731030 doesn't seem to be mutated. Here are the mutated foci.Position 138734931 doesn't seem to be mutated. Here are the mutated foci.Position 138737061 doesn't seem to be mutated. Here are the mutated foci.Position 138739085 doesn't seem to be mutated. Here are the mutated foci.Position 138751006 doesn't seem to be mutated. Here are the mutated foci.Position 138753991 doesn't seem to be mutated. Here are the mutated foci.Position 138754647 doesn't seem to be mutated. Here are the mutated foci.Position 138755112 doesn't seem to be mutated. Here are the mutated foci.Position 138757010 doesn't seem to be mutated. Here are the mutated foci.Position 138757105 doesn't seem to be mutated. Here are the mutated foci.Position 138758344 doesn't seem to be mutated. Here are the mutated foci.Position 138758892 doesn't seem to be mutated. Here are the mutated foci.Position 138760596 doesn't seem to be mutated. Here are the mutated foci.Position 138762114 doesn't seem to be mutated. Here are the mutated foci.Position 138763486 doesn't seem to be mutated. Here are the mutated foci.Position 138764548 doesn't seem to be mutated. Here are the mutated foci.Position 138767726 doesn't seem to be mutated. Here are the mutated foci.Position 138768322 doesn't seem to be mutated. Here are the mutated foci.Position 138774221 doesn't seem to be mutated. Here are the mutated foci.Position 138774764 doesn't seem to be mutated. Here are the mutated foci.Position 138774823 doesn't seem to be mutated. Here are the mutated foci.Position 138778278 doesn't seem to be mutated. Here are the mutated foci.Position 138781315 doesn't seem to be mutated. Here are the mutated foci.Position 138789189 doesn't seem to be mutated. Here are the mutated foci.Position 138789796 doesn't seem to be mutated. Here are the mutated foci.Position 138793050 doesn't seem to be mutated. Here are the mutated foci.Position 138794057 doesn't seem to be mutated. Here are the mutated foci.Position 138795751 doesn't seem to be mutated. Here are the mutated foci.Position 138796038 doesn't seem to be mutated. Here are the mutated foci.Position 138798931 doesn't seem to be mutated. Here are the mutated foci.Position 138799357 doesn't seem to be mutated. Here are the mutated foci.Position 138801102 doesn't seem to be mutated. Here are the mutated foci.Position 138802357 doesn't seem to be mutated. Here are the mutated foci.Position 138804540 doesn't seem to be mutated. Here are the mutated foci.Position 138809559 doesn't seem to be mutated. Here are the mutated foci.Position 138815159 doesn't seem to be mutated. Here are the mutated foci.Position 138818900 doesn't seem to be mutated. Here are the mutated foci.Position 138820392 doesn't seem to be mutated. Here are the mutated foci.Position 138827460 doesn't seem to be mutated. Here are the mutated foci.Position 138827953 doesn't seem to be mutated. Here are the mutated foci.Position 138830039 doesn't seem to be mutated. Here are the mutated foci.Position 138831233 doesn't seem to be mutated. Here are the mutated foci.Position 138833231 doesn't seem to be mutated. Here are the mutated foci.Position 138833689 doesn't seem to be mutated. Here are the mutated foci.Position 138836046 doesn't seem to be mutated. Here are the mutated foci.Position 138841405 doesn't seem to be mutated. Here are the mutated foci.Position 138844499 doesn't seem to be mutated. Here are the mutated foci.Position 138847418 doesn't seem to be mutated. Here are the mutated foci.Position 138849546 doesn't seem to be mutated. Here are the mutated foci.Position 138851474 doesn't seem to be mutated. Here are the mutated foci.Position 138851489 doesn't seem to be mutated. Here are the mutated foci.Position 138854031 doesn't seem to be mutated. Here are the mutated foci.Position 138860816 doesn't seem to be mutated. Here are the mutated foci.Position 138861098 doesn't seem to be mutated. Here are the mutated foci.Position 138862863 doesn't seem to be mutated. Here are the mutated foci.Position 138862883 doesn't seem to be mutated. Here are the mutated foci.Position 138863378 doesn't seem to be mutated. Here are the mutated foci.Position 138864749 doesn't seem to be mutated. Here are the mutated foci.Position 138875908 doesn't seem to be mutated. Here are the mutated foci.Position 138875944 doesn't seem to be mutated. Here are the mutated foci.Position 138887434 doesn't seem to be mutated. Here are the mutated foci.Position 138887960 doesn't seem to be mutated. Here are the mutated foci.Position 138888830 doesn't seem to be mutated. Here are the mutated foci.Position 138891240 doesn't seem to be mutated. Here are the mutated foci.Position 138891396 doesn't seem to be mutated. Here are the mutated foci.Position 138892793 doesn't seem to be mutated. Here are the mutated foci.Position 138894668 doesn't seem to be mutated. Here are the mutated foci.Position 138895642 doesn't seem to be mutated. Here are the mutated foci.Position 138898900 doesn't seem to be mutated. Here are the mutated foci.Position 138899720 doesn't seem to be mutated. Here are the mutated foci.Position 138900562 doesn't seem to be mutated. Here are the mutated foci.Position 138902773 doesn't seem to be mutated. Here are the mutated foci.Position 138905287 doesn't seem to be mutated. Here are the mutated foci.Position 138907461 doesn't seem to be mutated. Here are the mutated foci.Position 138908905 doesn't seem to be mutated. Here are the mutated foci.Position 138909125 doesn't seem to be mutated. Here are the mutated foci.Position 138910824 doesn't seem to be mutated. Here are the mutated foci.Position 138923174 doesn't seem to be mutated. Here are the mutated foci.Position 138924434 doesn't seem to be mutated. Here are the mutated foci.Position 138929573 doesn't seem to be mutated. Here are the mutated foci.Position 138929875 doesn't seem to be mutated. Here are the mutated foci.Position 138937238 doesn't seem to be mutated. Here are the mutated foci.Position 157148830 doesn't seem to be mutated. Here are the mutated foci.Position 157150160 doesn't seem to be mutated. Here are the mutated foci.Position 157171935 doesn't seem to be mutated. Here are the mutated foci.Position 157177460 doesn't seem to be mutated. Here are the mutated foci.Position 157178491 doesn't seem to be mutated. Here are the mutated foci.Position 157179615 doesn't seem to be mutated. Here are the mutated foci.Position 157183342 doesn't seem to be mutated. Here are the mutated foci.Position 157187721 doesn't seem to be mutated. Here are the mutated foci.Position 157189041 doesn't seem to be mutated. Here are the mutated foci.Position 157190432 doesn't seem to be mutated. Here are the mutated foci.Position 157191980 doesn't seem to be mutated. Here are the mutated foci.Position 157195214 doesn't seem to be mutated. Here are the mutated foci.Position 157198454 doesn't seem to be mutated. Here are the mutated foci.Position 157201078 doesn't seem to be mutated. Here are the mutated foci.Position 157204331 doesn't seem to be mutated. Here are the mutated foci.Position 157209821 doesn't seem to be mutated. Here are the mutated foci.Position 157210908 doesn't seem to be mutated. Here are the mutated foci.Position 157214233 doesn't seem to be mutated. Here are the mutated foci.Position 157219343 doesn't seem to be mutated. Here are the mutated foci.Position 157221476 doesn't seem to be mutated. Here are the mutated foci.Position 157229088 doesn't seem to be mutated. Here are the mutated foci.Position 157229555 doesn't seem to be mutated. Here are the mutated foci.Position 157230155 doesn't seem to be mutated. Here are the mutated foci.Position 157232991 doesn't seem to be mutated. Here are the mutated foci.Position 157235384 doesn't seem to be mutated. Here are the mutated foci.Position 157235938 doesn't seem to be mutated. Here are the mutated foci.Position 157237095 doesn't seem to be mutated. Here are the mutated foci.Position 157241647 doesn't seem to be mutated. Here are the mutated foci.Position 157244550 doesn't seem to be mutated. Here are the mutated foci.Position 157258230 doesn't seem to be mutated. Here are the mutated foci.Position 177129703 doesn't seem to be mutated. Here are the mutated foci.Position 177131213 doesn't seem to be mutated. Here are the mutated foci.Position 177131727 doesn't seem to be mutated. Here are the mutated foci.Position 177138194 doesn't seem to be mutated. Here are the mutated foci.Position 177141895 doesn't seem to be mutated. Here are the mutated foci.Position 177147926 doesn't seem to be mutated. Here are the mutated foci.Position 177151225 doesn't seem to be mutated. Here are the mutated foci.Position 177158425 doesn't seem to be mutated. Here are the mutated foci.Position 177160556 doesn't seem to be mutated. Here are the mutated foci.Position 177160622 doesn't seem to be mutated. Here are the mutated foci.Position 177162023 doesn't seem to be mutated. Here are the mutated foci.Position 177163431 doesn't seem to be mutated. Here are the mutated foci.Position 177164484 doesn't seem to be mutated. Here are the mutated foci.Position 177164858 doesn't seem to be mutated. Here are the mutated foci.Position 177165678 doesn't seem to be mutated. Here are the mutated foci.Position 177170880 doesn't seem to be mutated. Here are the mutated foci.Position 177175790 doesn't seem to be mutated. Here are the mutated foci.Position 177181191 doesn't seem to be mutated. Here are the mutated foci.Position 177182024 doesn't seem to be mutated. Here are the mutated foci.Position 177182425 doesn't seem to be mutated. Here are the mutated foci.Position 177183839 doesn't seem to be mutated. Here are the mutated foci.Position 177189629 doesn't seem to be mutated. Here are the mutated foci.Position 177191041 doesn't seem to be mutated. Here are the mutated foci.Position 177193719 doesn't seem to be mutated. Here are the mutated foci.Position 177195659 doesn't seem to be mutated. Here are the mutated foci.Position 177197466 doesn't seem to be mutated. Here are the mutated foci.Position 177197766 doesn't seem to be mutated. Here are the mutated foci.Position 177198041 doesn't seem to be mutated. Here are the mutated foci.Position 177200001 doesn't seem to be mutated. Here are the mutated foci.Position 177206505 doesn't seem to be mutated. Here are the mutated foci.Position 177207031 doesn't seem to be mutated. Here are the mutated foci.Position 177208336 doesn't seem to be mutated. Here are the mutated foci.Position 177215420 doesn't seem to be mutated. Here are the mutated foci.Position 177215631 doesn't seem to be mutated. Here are the mutated foci.Position 177216334 doesn't seem to be mutated. Here are the mutated foci.Position 177222231 doesn't seem to be mutated. Here are the mutated foci.Position 177223281 doesn't seem to be mutated. Here are the mutated foci.Position 177225538 doesn't seem to be mutated. Here are the mutated foci.Position 177227802 doesn't seem to be mutated. Here are the mutated foci.Position 177228922 doesn't seem to be mutated. Here are the mutated foci.Position 177231231 doesn't seem to be mutated. Here are the mutated foci.Position 177232091 doesn't seem to be mutated. Here are the mutated foci.Position 177236684 doesn't seem to be mutated. Here are the mutated foci.Position 177236871 doesn't seem to be mutated. Here are the mutated foci.Position 177241229 doesn't seem to be mutated. Here are the mutated foci.Position 177241379 doesn't seem to be mutated. Here are the mutated foci.Position 177241739 doesn't seem to be mutated. Here are the mutated foci.Position 177245322 doesn't seem to be mutated. Here are the mutated foci.Position 177245537 doesn't seem to be mutated. Here are the mutated foci.Position 177245829 doesn't seem to be mutated. Here are the mutated foci.Position 177246850 doesn't seem to be mutated. Here are the mutated foci.Position 177247200 doesn't seem to be mutated. Here are the mutated foci.Position 177252087 doesn't seem to be mutated. Here are the mutated foci.Position 177254055 doesn't seem to be mutated. Here are the mutated foci.Position 177255305 doesn't seem to be mutated. Here are the mutated foci.Position 177257497 doesn't seem to be mutated. Here are the mutated foci.Position 177261042 doesn't seem to be mutated. Here are the mutated foci.Position 177263904 doesn't seem to be mutated. Here are the mutated foci.Position 177265212 doesn't seem to be mutated. Here are the mutated foci.Position 177267294 doesn't seem to be mutated. Here are the mutated foci.Position 177269919 doesn't seem to be mutated. Here are the mutated foci.Position 177271095 doesn't seem to be mutated. Here are the mutated foci.Position 177273981 doesn't seem to be mutated. Here are the mutated foci.Position 177274848 doesn't seem to be mutated. Here are the mutated foci.Position 177275497 doesn't seem to be mutated. Here are the mutated foci.Position 177276228 doesn't seem to be mutated. Here are the mutated foci.Position 177278941 doesn't seem to be mutated. Here are the mutated foci.Position 177280524 doesn't seem to be mutated. Here are the mutated foci.Position 177281806 doesn't seem to be mutated. Here are the mutated foci.Position 177284824 doesn't seem to be mutated. Here are the mutated foci.Position 177284995 doesn't seem to be mutated. Here are the mutated foci.Position 177286248 doesn't seem to be mutated. Here are the mutated foci.Position 177287491 doesn't seem to be mutated. Here are the mutated foci.Position 177291223 doesn't seem to be mutated. Here are the mutated foci.Position 177291350 doesn't seem to be mutated. Here are the mutated foci.Position 177292415 doesn't seem to be mutated. Here are the mutated foci.Position 177294062 doesn't seem to be mutated. Here are the mutated foci.Position 177294391 doesn't seem to be mutated. Here are the mutated foci.Position 177294787 doesn't seem to be mutated. Here are the mutated foci.Position 177295111 doesn't seem to be mutated. Here are the mutated foci.Position 177295348 doesn't seem to be mutated. Here are the mutated foci.Position 177297410 doesn't seem to be mutated. Here are the mutated foci.Position 177299403 doesn't seem to be mutated. Here are the mutated foci.Position 177513399 doesn't seem to be mutated. Here are the mutated foci.Position 177513847 doesn't seem to be mutated. Here are the mutated foci.Position 177514888 doesn't seem to be mutated. Here are the mutated foci.Position 177515389 doesn't seem to be mutated. Here are the mutated foci.Position 177518893 doesn't seem to be mutated. Here are the mutated foci.Position 178151536 doesn't seem to be mutated. Here are the mutated foci.Position 178151843 doesn't seem to be mutated. Here are the mutated foci.Position 178152282 doesn't seem to be mutated. Here are the mutated foci.Position 178155204 doesn't seem to be mutated. Here are the mutated foci.Position 26086317 doesn't seem to be mutated. Here are the mutated foci.Position 26086383 doesn't seem to be mutated. Here are the mutated foci.Position 26087680 doesn't seem to be mutated. Here are the mutated foci.Position 26089881 doesn't seem to be mutated. Here are the mutated foci.Position 26092738 doesn't seem to be mutated. Here are the mutated foci.Position 26094808 doesn't seem to be mutated. Here are the mutated foci.Position 26095488 doesn't seem to be mutated. Here are the mutated foci.Position 26098357 doesn't seem to be mutated. Here are the mutated foci.Position 34420014 doesn't seem to be mutated. Here are the mutated foci.Position 34420944 doesn't seem to be mutated. Here are the mutated foci.Position 34420981 doesn't seem to be mutated. Here are the mutated foci.Position 34424604 doesn't seem to be mutated. Here are the mutated foci.Position 34429735 doesn't seem to be mutated. Here are the mutated foci.Position 35448200 doesn't seem to be mutated. Here are the mutated foci.Position 35450976 doesn't seem to be mutated. Here are the mutated foci.Position 35456515 doesn't seem to be mutated. Here are the mutated foci.Position 35464173 doesn't seem to be mutated. Here are the mutated foci.Position 35468112 doesn't seem to be mutated. Here are the mutated foci.Position 35470886 doesn't seem to be mutated. Here are the mutated foci.Position 43577052 doesn't seem to be mutated. Here are the mutated foci.Position 43578205 doesn't seem to be mutated. Here are the mutated foci.Position 43579658 doesn't seem to be mutated. Here are the mutated foci.Position 43581741 doesn't seem to be mutated. Here are the mutated foci.Position 43582042 doesn't seem to be mutated. Here are the mutated foci.Position 43586289 doesn't seem to be mutated. Here are the mutated foci.Position 43587738 doesn't seem to be mutated. Here are the mutated foci.Position 43589349 doesn't seem to be mutated. Here are the mutated foci.Position 43589612 doesn't seem to be mutated. Here are the mutated foci.Position 43595367 doesn't seem to be mutated. Here are the mutated foci.Position 43597873 doesn't seem to be mutated. Here are the mutated foci.Position 43597922 doesn't seem to be mutated. Here are the mutated foci.Position 43602169 doesn't seem to be mutated. Here are the mutated foci.Position 43609736 doesn't seem to be mutated. Here are the mutated foci.Position 43613119 doesn't seem to be mutated. Here are the mutated foci.Position 43614053 doesn't seem to be mutated. Here are the mutated foci.Position 104725846 doesn't seem to be mutated. Here are the mutated foci.Position 104727127 doesn't seem to be mutated. Here are the mutated foci.Position 104727344 doesn't seem to be mutated. Here are the mutated foci.Position 104729977 doesn't seem to be mutated. Here are the mutated foci.Position 104733358 doesn't seem to be mutated. Here are the mutated foci.Position 104733838 doesn't seem to be mutated. Here are the mutated foci.Position 104740491 doesn't seem to be mutated. Here are the mutated foci.Position 104752960 doesn't seem to be mutated. Here are the mutated foci.Position 104755310 doesn't seem to be mutated. Here are the mutated foci.Position 104760448 doesn't seem to be mutated. Here are the mutated foci.Position 104762006 doesn't seem to be mutated. Here are the mutated foci.Position 104762709 doesn't seem to be mutated. Here are the mutated foci.Position 104765890 doesn't seem to be mutated. Here are the mutated foci.Position 104766029 doesn't seem to be mutated. Here are the mutated foci.Position 104766453 doesn't seem to be mutated. Here are the mutated foci.Position 104767352 doesn't seem to be mutated. Here are the mutated foci.Position 104769063 doesn't seem to be mutated. Here are the mutated foci.Position 104769430 doesn't seem to be mutated. Here are the mutated foci.Position 104771331 doesn't seem to be mutated. Here are the mutated foci.Position 104771904 doesn't seem to be mutated. Here are the mutated foci.Position 104773549 doesn't seem to be mutated. Here are the mutated foci.Position 104774829 doesn't seem to be mutated. Here are the mutated foci.Position 104776280 doesn't seem to be mutated. Here are the mutated foci.Position 104777916 doesn't seem to be mutated. Here are the mutated foci.Position 104797932 doesn't seem to be mutated. Here are the mutated foci.Position 104798628 doesn't seem to be mutated. Here are the mutated foci.Position 104799885 doesn't seem to be mutated. Here are the mutated foci.Position 104799967 doesn't seem to be mutated. Here are the mutated foci.Position 104804567 doesn't seem to be mutated. Here are the mutated foci.Position 104807677 doesn't seem to be mutated. Here are the mutated foci.Position 104809222 doesn't seem to be mutated. Here are the mutated foci.Position 104816434 doesn't seem to be mutated. Here are the mutated foci.Position 104816470 doesn't seem to be mutated. Here are the mutated foci.Position 104819896 doesn't seem to be mutated. Here are the mutated foci.Position 104820876 doesn't seem to be mutated. Here are the mutated foci.Position 104827529 doesn't seem to be mutated. Here are the mutated foci.Position 104829059 doesn't seem to be mutated. Here are the mutated foci.Position 104834127 doesn't seem to be mutated. Here are the mutated foci.Position 104838447 doesn't seem to be mutated. Here are the mutated foci.Position 104844753 doesn't seem to be mutated. Here are the mutated foci.Position 104846080 doesn't seem to be mutated. Here are the mutated foci.Position 104846520 doesn't seem to be mutated. Here are the mutated foci.Position 104848885 doesn't seem to be mutated. Here are the mutated foci.Position 104849258 doesn't seem to be mutated. Here are the mutated foci.Position 104852232 doesn't seem to be mutated. Here are the mutated foci.Position 104852761 doesn't seem to be mutated. Here are the mutated foci.Position 104852974 doesn't seem to be mutated. Here are the mutated foci.Position 104854045 doesn't seem to be mutated. Here are the mutated foci.Position 104854418 doesn't seem to be mutated. Here are the mutated foci.Position 104855214 doesn't seem to be mutated. Here are the mutated foci.Position 104857221 doesn't seem to be mutated. Here are the mutated foci.Position 104857412 doesn't seem to be mutated. Here are the mutated foci.Position 104859525 doesn't seem to be mutated. Here are the mutated foci.Position 104860226 doesn't seem to be mutated. Here are the mutated foci.Position 104861395 doesn't seem to be mutated. Here are the mutated foci.Position 5972997 doesn't seem to be mutated. Here are the mutated foci.Position 5976608 doesn't seem to be mutated. Here are the mutated foci.Position 5978703 doesn't seem to be mutated. Here are the mutated foci.Position 5982871 doesn't seem to be mutated. Here are the mutated foci.Position 5985345 doesn't seem to be mutated. Here are the mutated foci.Position 5986239 doesn't seem to be mutated. Here are the mutated foci.Position 5997509 doesn't seem to be mutated. Here are the mutated foci.Position 6001671 doesn't seem to be mutated. Here are the mutated foci.Position 6004368 doesn't seem to be mutated. Here are the mutated foci.Position 6008109 doesn't seem to be mutated. Here are the mutated foci.Position 6008200 doesn't seem to be mutated. Here are the mutated foci.Position 41956536 doesn't seem to be mutated. Here are the mutated foci.Position 41959691 doesn't seem to be mutated. Here are the mutated foci.Position 41964053 doesn't seem to be mutated. Here are the mutated foci.Position 41964469 doesn't seem to be mutated. Here are the mutated foci.Position 41966043 doesn't seem to be mutated. Here are the mutated foci.Position 41966576 doesn't seem to be mutated. Here are the mutated foci.Position 41967795 doesn't seem to be mutated. Here are the mutated foci.Position 41974810 doesn't seem to be mutated. Here are the mutated foci.Position 41982698 doesn't seem to be mutated. Here are the mutated foci.Position 41986709 doesn't seem to be mutated. Here are the mutated foci.Position 41987997 doesn't seem to be mutated. Here are the mutated foci.Position 41988587 doesn't seem to be mutated. Here are the mutated foci.Position 41989094 doesn't seem to be mutated. Here are the mutated foci.Position 41990275 doesn't seem to be mutated. Here are the mutated foci.Position 41992360 doesn't seem to be mutated. Here are the mutated foci.Position 41992433 doesn't seem to be mutated. Here are the mutated foci.Position 41993395 doesn't seem to be mutated. Here are the mutated foci.Position 41999597 doesn't seem to be mutated. Here are the mutated foci.Position 42000612 doesn't seem to be mutated. Here are the mutated foci.Position 42006203 doesn't seem to be mutated. Here are the mutated foci.Position 42006556 doesn't seem to be mutated. Here are the mutated foci.Position 42008538 doesn't seem to be mutated. Here are the mutated foci.Position 42008631 doesn't seem to be mutated. Here are the mutated foci.Position 42010698 doesn't seem to be mutated. Here are the mutated foci.Position 42012074 doesn't seem to be mutated. Here are the mutated foci.Position 42016861 doesn't seem to be mutated. Here are the mutated foci.Position 42017643 doesn't seem to be mutated. Here are the mutated foci.Position 42021638 doesn't seem to be mutated. Here are the mutated foci.Position 42023380 doesn't seem to be mutated. Here are the mutated foci.Position 42025481 doesn't seem to be mutated. Here are the mutated foci.Position 42025876 doesn't seem to be mutated. Here are the mutated foci.Position 42026317 doesn't seem to be mutated. Here are the mutated foci.Position 42027374 doesn't seem to be mutated. Here are the mutated foci.Position 42031879 doesn't seem to be mutated. Here are the mutated foci.Position 42038194 doesn't seem to be mutated. Here are the mutated foci.Position 42038771 doesn't seem to be mutated. Here are the mutated foci.Position 42044874 doesn't seem to be mutated. Here are the mutated foci.Position 42045050 doesn't seem to be mutated. Here are the mutated foci.Position 42045467 doesn't seem to be mutated. Here are the mutated foci.Position 42046431 doesn't seem to be mutated. Here are the mutated foci.Position 42049534 doesn't seem to be mutated. Here are the mutated foci.Position 42052358 doesn't seem to be mutated. Here are the mutated foci.Position 42056574 doesn't seem to be mutated. Here are the mutated foci.Position 42057926 doesn't seem to be mutated. Here are the mutated foci.Position 42059843 doesn't seem to be mutated. Here are the mutated foci.Position 42069359 doesn't seem to be mutated. Here are the mutated foci.Position 42070281 doesn't seem to be mutated. Here are the mutated foci.Position 42078205 doesn't seem to be mutated. Here are the mutated foci.Position 42080229 doesn't seem to be mutated. Here are the mutated foci.Position 42082489 doesn't seem to be mutated. Here are the mutated foci.Position 42090481 doesn't seem to be mutated. Here are the mutated foci.Position 42092297 doesn't seem to be mutated. Here are the mutated foci.Position 42095731 doesn't seem to be mutated. Here are the mutated foci.Position 42111043 doesn't seem to be mutated. Here are the mutated foci.Position 42111048 doesn't seem to be mutated. Here are the mutated foci.Position 42112930 doesn't seem to be mutated. Here are the mutated foci.Position 42118912 doesn't seem to be mutated. Here are the mutated foci.Position 42121312 doesn't seem to be mutated. Here are the mutated foci.Position 42127779 doesn't seem to be mutated. Here are the mutated foci.Position 42128490 doesn't seem to be mutated. Here are the mutated foci.Position 42129788 doesn't seem to be mutated. Here are the mutated foci.Position 42129868 doesn't seem to be mutated. Here are the mutated foci.Position 42143333 doesn't seem to be mutated. Here are the mutated foci.Position 42144375 doesn't seem to be mutated. Here are the mutated foci.Position 42152720 doesn't seem to be mutated. Here are the mutated foci.Position 42157578 doesn't seem to be mutated. Here are the mutated foci.Position 42162214 doesn't seem to be mutated. Here are the mutated foci.Position 42164605 doesn't seem to be mutated. Here are the mutated foci.Position 42168221 doesn't seem to be mutated. Here are the mutated foci.Position 42168840 doesn't seem to be mutated. Here are the mutated foci.Position 42170289 doesn't seem to be mutated. Here are the mutated foci.Position 42178196 doesn't seem to be mutated. Here are the mutated foci.Position 42179145 doesn't seem to be mutated. Here are the mutated foci.Position 42187191 doesn't seem to be mutated. Here are the mutated foci.Position 42189325 doesn't seem to be mutated. Here are the mutated foci.Position 42202627 doesn't seem to be mutated. Here are the mutated foci.Position 42203842 doesn't seem to be mutated. Here are the mutated foci.Position 42206417 doesn't seem to be mutated. Here are the mutated foci.Position 42206694 doesn't seem to be mutated. Here are the mutated foci.Position 42208302 doesn't seem to be mutated. Here are the mutated foci.Position 42209903 doesn't seem to be mutated. Here are the mutated foci.Position 42210593 doesn't seem to be mutated. Here are the mutated foci.Position 42213540 doesn't seem to be mutated. Here are the mutated foci.Position 42216687 doesn't seem to be mutated. Here are the mutated foci.Position 42217066 doesn't seem to be mutated. Here are the mutated foci.Position 42221234 doesn't seem to be mutated. Here are the mutated foci.Position 42221650 doesn't seem to be mutated. Here are the mutated foci.Position 42226478 doesn't seem to be mutated. Here are the mutated foci.Position 42231462 doesn't seem to be mutated. Here are the mutated foci.Position 42234682 doesn't seem to be mutated. Here are the mutated foci.Position 42234819 doesn't seem to be mutated. Here are the mutated foci.Position 42235713 doesn't seem to be mutated. Here are the mutated foci.Position 42237925 doesn't seem to be mutated. Here are the mutated foci.Position 50306321 doesn't seem to be mutated. Here are the mutated foci.Position 50312265 doesn't seem to be mutated. Here are the mutated foci.Position 50324298 doesn't seem to be mutated. Here are the mutated foci.Position 50326371 doesn't seem to be mutated. Here are the mutated foci.Position 50329220 doesn't seem to be mutated. Here are the mutated foci.Position 50336776 doesn't seem to be mutated. Here are the mutated foci.Position 50337571 doesn't seem to be mutated. Here are the mutated foci.Position 50339668 doesn't seem to be mutated. Here are the mutated foci.Position 50344726 doesn't seem to be mutated. Here are the mutated foci.Position 50348124 doesn't seem to be mutated. Here are the mutated foci.Position 50352163 doesn't seem to be mutated. Here are the mutated foci.Position 50353537 doesn't seem to be mutated. Here are the mutated foci.Position 50354370 doesn't seem to be mutated. Here are the mutated foci.Position 50367850 doesn't seem to be mutated. Here are the mutated foci.Position 50368568 doesn't seem to be mutated. Here are the mutated foci.Position 50369856 doesn't seem to be mutated. Here are the mutated foci.Position 50370562 doesn't seem to be mutated. Here are the mutated foci.Position 50370686 doesn't seem to be mutated. Here are the mutated foci.Position 50377529 doesn't seem to be mutated. Here are the mutated foci.Position 50380024 doesn't seem to be mutated. Here are the mutated foci.Position 50381514 doesn't seem to be mutated. Here are the mutated foci.Position 50383220 doesn't seem to be mutated. Here are the mutated foci.Position 50385768 doesn't seem to be mutated. Here are the mutated foci.Position 50390628 doesn't seem to be mutated. Here are the mutated foci.Position 50391827 doesn't seem to be mutated. Here are the mutated foci.Position 50394113 doesn't seem to be mutated. Here are the mutated foci.Position 50394570 doesn't seem to be mutated. Here are the mutated foci.Position 50402148 doesn't seem to be mutated. Here are the mutated foci.Position 50403567 doesn't seem to be mutated. Here are the mutated foci.Position 50406703 doesn't seem to be mutated. Here are the mutated foci.Position 50407327 doesn't seem to be mutated. Here are the mutated foci.Position 50409294 doesn't seem to be mutated. Here are the mutated foci.Position 55015443 doesn't seem to be mutated. Here are the mutated foci.Position 55016732 doesn't seem to be mutated. Here are the mutated foci.Position 55017280 doesn't seem to be mutated. Here are the mutated foci.Position 55018292 doesn't seem to be mutated. Here are the mutated foci.Position 55019101 doesn't seem to be mutated. Here are the mutated foci.Position 55020267 doesn't seem to be mutated. Here are the mutated foci.Position 55020739 doesn't seem to be mutated. Here are the mutated foci.Position 55020922 doesn't seem to be mutated. Here are the mutated foci.Position 55027311 doesn't seem to be mutated. Here are the mutated foci.Position 55028530 doesn't seem to be mutated. Here are the mutated foci.Position 55029021 doesn't seem to be mutated. Here are the mutated foci.Position 55034520 doesn't seem to be mutated. Here are the mutated foci.Position 55034581 doesn't seem to be mutated. Here are the mutated foci.Position 55039614 doesn't seem to be mutated. Here are the mutated foci.Position 55046410 doesn't seem to be mutated. Here are the mutated foci.Position 55048577 doesn't seem to be mutated. Here are the mutated foci.Position 55049998 doesn't seem to be mutated. Here are the mutated foci.Position 55051765 doesn't seem to be mutated. Here are the mutated foci.Position 55053707 doesn't seem to be mutated. Here are the mutated foci.Position 55054429 doesn't seem to be mutated. Here are the mutated foci.Position 55054516 doesn't seem to be mutated. Here are the mutated foci.Position 55055006 doesn't seem to be mutated. Here are the mutated foci.Position 55059490 doesn't seem to be mutated. Here are the mutated foci.Position 55061664 doesn't seem to be mutated. Here are the mutated foci.Position 55070835 doesn't seem to be mutated. Here are the mutated foci.Position 55071819 doesn't seem to be mutated. Here are the mutated foci.Position 55073683 doesn't seem to be mutated. Here are the mutated foci.Position 55077946 doesn't seem to be mutated. Here are the mutated foci.Position 55078667 doesn't seem to be mutated. Here are the mutated foci.Position 55079871 doesn't seem to be mutated. Here are the mutated foci.Position 55083672 doesn't seem to be mutated. Here are the mutated foci.Position 55086648 doesn't seem to be mutated. Here are the mutated foci.Position 55088267 doesn't seem to be mutated. Here are the mutated foci.Position 55091138 doesn't seem to be mutated. Here are the mutated foci.Position 55094242 doesn't seem to be mutated. Here are the mutated foci.Position 55095227 doesn't seem to be mutated. Here are the mutated foci.Position 55096667 doesn't seem to be mutated. Here are the mutated foci.Position 55098164 doesn't seem to be mutated. Here are the mutated foci.Position 55099637 doesn't seem to be mutated. Here are the mutated foci.Position 55101597 doesn't seem to be mutated. Here are the mutated foci.Position 55110819 doesn't seem to be mutated. Here are the mutated foci.Position 55112555 doesn't seem to be mutated. Here are the mutated foci.Position 55116599 doesn't seem to be mutated. Here are the mutated foci.Position 55119943 doesn't seem to be mutated. Here are the mutated foci.Position 55120370 doesn't seem to be mutated. Here are the mutated foci.Position 55125031 doesn't seem to be mutated. Here are the mutated foci.Position 55133773 doesn't seem to be mutated. Here are the mutated foci.Position 55134457 doesn't seem to be mutated. Here are the mutated foci.Position 55135129 doesn't seem to be mutated. Here are the mutated foci.Position 55137931 doesn't seem to be mutated. Here are the mutated foci.Position 55142147 doesn't seem to be mutated. Here are the mutated foci.Position 55150645 doesn't seem to be mutated. Here are the mutated foci.Position 55152218 doesn't seem to be mutated. Here are the mutated foci.Position 55153033 doesn't seem to be mutated. Here are the mutated foci.Position 55153468 doesn't seem to be mutated. Here are the mutated foci.Position 55154172 doesn't seem to be mutated. Here are the mutated foci.Position 55154214 doesn't seem to be mutated. Here are the mutated foci.Position 55155469 doesn't seem to be mutated. Here are the mutated foci.Position 55156524 doesn't seem to be mutated. Here are the mutated foci.Position 55158355 doesn't seem to be mutated. Here are the mutated foci.Position 55160192 doesn't seem to be mutated. Here are the mutated foci.Position 55163684 doesn't seem to be mutated. Here are the mutated foci.Position 55163693 doesn't seem to be mutated. Here are the mutated foci.Position 55164167 doesn't seem to be mutated. Here are the mutated foci.Position 55168906 doesn't seem to be mutated. Here are the mutated foci.Position 55170489 doesn't seem to be mutated. Here are the mutated foci.Position 55171199 doesn't seem to be mutated. Here are the mutated foci.Position 55171462 doesn't seem to be mutated. Here are the mutated foci.Position 55172032 doesn't seem to be mutated. Here are the mutated foci.Position 55172825 doesn't seem to be mutated. Here are the mutated foci.Position 55172984 doesn't seem to be mutated. Here are the mutated foci.Position 55175309 doesn't seem to be mutated. Here are the mutated foci.Position 55177792 doesn't seem to be mutated. Here are the mutated foci.Position 55179048 doesn't seem to be mutated. Here are the mutated foci.Position 55184804 doesn't seem to be mutated. Here are the mutated foci.Position 55186099 doesn't seem to be mutated. Here are the mutated foci.Position 55186147 doesn't seem to be mutated. Here are the mutated foci.Position 55186782 doesn't seem to be mutated. Here are the mutated foci.Position 55188764 doesn't seem to be mutated. Here are the mutated foci.Position 55189764 doesn't seem to be mutated. Here are the mutated foci.Position 55195924 doesn't seem to be mutated. Here are the mutated foci.Position 55199063 doesn't seem to be mutated. Here are the mutated foci.Position 55199183 doesn't seem to be mutated. Here are the mutated foci.Position 55200534 doesn't seem to be mutated. Here are the mutated foci.Position 55200624 doesn't seem to be mutated. Here are the mutated foci.Position 55203772 doesn't seem to be mutated. Here are the mutated foci.Position 55206147 doesn't seem to be mutated. Here are the mutated foci.Position 55211963 doesn't seem to be mutated. Here are the mutated foci.Position 55213292 doesn't seem to be mutated. Here are the mutated foci.Position 55213613 doesn't seem to be mutated. Here are the mutated foci.Position 55214234 doesn't seem to be mutated. Here are the mutated foci.Position 55215632 doesn't seem to be mutated. Here are the mutated foci.Position 55215874 doesn't seem to be mutated. Here are the mutated foci.Position 55216488 doesn't seem to be mutated. Here are the mutated foci.Position 66982682 doesn't seem to be mutated. Here are the mutated foci.Position 66985557 doesn't seem to be mutated. Here are the mutated foci.Position 66986869 doesn't seem to be mutated. Here are the mutated foci.Position 66989832 doesn't seem to be mutated. Here are the mutated foci.Position 66992561 doesn't seem to be mutated. Here are the mutated foci.Position 66992776 doesn't seem to be mutated. Here are the mutated foci.Position 66994290 doesn't seem to be mutated. Here are the mutated foci.Position 66994319 doesn't seem to be mutated. Here are the mutated foci.Position 66994507 doesn't seem to be mutated. Here are the mutated foci.Position 93094730 doesn't seem to be mutated. Here are the mutated foci.Position 93099560 doesn't seem to be mutated. Here are the mutated foci.Position 93101330 doesn't seem to be mutated. Here are the mutated foci.Position 93102150 doesn't seem to be mutated. Here are the mutated foci.Position 93102799 doesn't seem to be mutated. Here are the mutated foci.Position 93104378 doesn't seem to be mutated. Here are the mutated foci.Position 93104653 doesn't seem to be mutated. Here are the mutated foci.Position 93106443 doesn't seem to be mutated. Here are the mutated foci.Position 93108031 doesn't seem to be mutated. Here are the mutated foci.Position 93121234 doesn't seem to be mutated. Here are the mutated foci.Position 93125420 doesn't seem to be mutated. Here are the mutated foci.Position 93131405 doesn't seem to be mutated. Here are the mutated foci.Position 93131717 doesn't seem to be mutated. Here are the mutated foci.Position 93135873 doesn't seem to be mutated. Here are the mutated foci.Position 93137263 doesn't seem to be mutated. Here are the mutated foci.Position 93138828 doesn't seem to be mutated. Here are the mutated foci.Position 93140440 doesn't seem to be mutated. Here are the mutated foci.Position 93141378 doesn't seem to be mutated. Here are the mutated foci.Position 93143152 doesn't seem to be mutated. Here are the mutated foci.Position 93146830 doesn't seem to be mutated. Here are the mutated foci.Position 93153028 doesn't seem to be mutated. Here are the mutated foci.Position 96123981 doesn't seem to be mutated. Here are the mutated foci.Position 96129465 doesn't seem to be mutated. Here are the mutated foci.Position 96132071 doesn't seem to be mutated. Here are the mutated foci.Position 96136975 doesn't seem to be mutated. Here are the mutated foci.Position 96142212 doesn't seem to be mutated. Here are the mutated foci.Position 96148242 doesn't seem to be mutated. Here are the mutated foci.Position 96149253 doesn't seem to be mutated. Here are the mutated foci.Position 96150456 doesn't seem to be mutated. Here are the mutated foci.Position 96153774 doesn't seem to be mutated. Here are the mutated foci.Position 96154091 doesn't seem to be mutated. Here are the mutated foci.Position 96156974 doesn't seem to be mutated. Here are the mutated foci.Position 96158153 doesn't seem to be mutated. Here are the mutated foci.Position 96161568 doesn't seem to be mutated. Here are the mutated foci.Position 96162538 doesn't seem to be mutated. Here are the mutated foci.Position 96163378 doesn't seem to be mutated. Here are the mutated foci.Position 96165913 doesn't seem to be mutated. Here are the mutated foci.Position 96167193 doesn't seem to be mutated. Here are the mutated foci.Position 96171902 doesn't seem to be mutated. Here are the mutated foci.Position 96176290 doesn't seem to be mutated. Here are the mutated foci.Position 96177279 doesn't seem to be mutated. Here are the mutated foci.Position 96185174 doesn't seem to be mutated. Here are the mutated foci.Position 96188109 doesn't seem to be mutated. Here are the mutated foci.Position 96194489 doesn't seem to be mutated. Here are the mutated foci.Position 96206229 doesn't seem to be mutated. Here are the mutated foci.Position 96218061 doesn't seem to be mutated. Here are the mutated foci.Position 96221956 doesn't seem to be mutated. Here are the mutated foci.Position 96230991 doesn't seem to be mutated. Here are the mutated foci.Position 96238374 doesn't seem to be mutated. Here are the mutated foci.Position 96244237 doesn't seem to be mutated. Here are the mutated foci.Position 96245773 doesn't seem to be mutated. Here are the mutated foci.Position 96246846 doesn't seem to be mutated. Here are the mutated foci.Position 96253131 doesn't seem to be mutated. Here are the mutated foci.Position 96261966 doesn't seem to be mutated. Here are the mutated foci.Position 96262938 doesn't seem to be mutated. Here are the mutated foci.Position 96263704 doesn't seem to be mutated. Here are the mutated foci.Position 96271364 doesn't seem to be mutated. Here are the mutated foci.Position 96278927 doesn't seem to be mutated. Here are the mutated foci.Position 96280040 doesn't seem to be mutated. Here are the mutated foci.Position 96282037 doesn't seem to be mutated. Here are the mutated foci.Position 96282346 doesn't seem to be mutated. Here are the mutated foci.Position 96284243 doesn't seem to be mutated. Here are the mutated foci.Position 96285516 doesn't seem to be mutated. Here are the mutated foci.Position 96287503 doesn't seem to be mutated. Here are the mutated foci.Position 96287640 doesn't seem to be mutated. Here are the mutated foci.Position 96295230 doesn't seem to be mutated. Here are the mutated foci.Position 96297970 doesn't seem to be mutated. Here are the mutated foci.Position 96304234 doesn't seem to be mutated. Here are the mutated foci.Position 96304922 doesn't seem to be mutated. Here are the mutated foci.Position 96305058 doesn't seem to be mutated. Here are the mutated foci.Position 96305849 doesn't seem to be mutated. Here are the mutated foci.Position 96306159 doesn't seem to be mutated. Here are the mutated foci.Position 96310463 doesn't seem to be mutated. Here are the mutated foci.Position 96310656 doesn't seem to be mutated. Here are the mutated foci.Position 96313228 doesn't seem to be mutated. Here are the mutated foci.Position 96313814 doesn't seem to be mutated. Here are the mutated foci.Position 96314631 doesn't seem to be mutated. Here are the mutated foci.Position 96314773 doesn't seem to be mutated. Here are the mutated foci.Position 96318391 doesn't seem to be mutated. Here are the mutated foci.Position 96318635 doesn't seem to be mutated. Here are the mutated foci.Position 96320465 doesn't seem to be mutated. Here are the mutated foci.Position 96321914 doesn't seem to be mutated. Here are the mutated foci.Position 96323714 doesn't seem to be mutated. Here are the mutated foci.Position 116669170 doesn't seem to be mutated. Here are the mutated foci.Position 116670833 doesn't seem to be mutated. Here are the mutated foci.Position 116674018 doesn't seem to be mutated. Here are the mutated foci.Position 116676674 doesn't seem to be mutated. Here are the mutated foci.Position 116677904 doesn't seem to be mutated. Here are the mutated foci.Position 116682138 doesn't seem to be mutated. Here are the mutated foci.Position 116684641 doesn't seem to be mutated. Here are the mutated foci.Position 116685474 doesn't seem to be mutated. Here are the mutated foci.Position 116686125 doesn't seem to be mutated. Here are the mutated foci.Position 116689037 doesn't seem to be mutated. Here are the mutated foci.Position 116692107 doesn't seem to be mutated. Here are the mutated foci.Position 116695939 doesn't seem to be mutated. Here are the mutated foci.Position 116699450 doesn't seem to be mutated. Here are the mutated foci.Position 116702696 doesn't seem to be mutated. Here are the mutated foci.Position 116704657 doesn't seem to be mutated. Here are the mutated foci.Position 116711410 doesn't seem to be mutated. Here are the mutated foci.Position 116711847 doesn't seem to be mutated. Here are the mutated foci.Position 116712940 doesn't seem to be mutated. Here are the mutated foci.Position 116718886 doesn't seem to be mutated. Here are the mutated foci.Position 116723410 doesn't seem to be mutated. Here are the mutated foci.Position 116729542 doesn't seem to be mutated. Here are the mutated foci.Position 116733935 doesn't seem to be mutated. Here are the mutated foci.Position 116735226 doesn't seem to be mutated. Here are the mutated foci.Position 116736266 doesn't seem to be mutated. Here are the mutated foci.Position 116737470 doesn't seem to be mutated. Here are the mutated foci.Position 116740232 doesn't seem to be mutated. Here are the mutated foci.Position 116742260 doesn't seem to be mutated. Here are the mutated foci.Position 116748818 doesn't seem to be mutated. Here are the mutated foci.Position 116750559 doesn't seem to be mutated. Here are the mutated foci.Position 116751505 doesn't seem to be mutated. Here are the mutated foci.Position 116751802 doesn't seem to be mutated. Here are the mutated foci.Position 116752742 doesn't seem to be mutated. Here are the mutated foci.Position 116753492 doesn't seem to be mutated. Here are the mutated foci.Position 116757082 doesn't seem to be mutated. Here are the mutated foci.Position 116757407 doesn't seem to be mutated. Here are the mutated foci.Position 116761097 doesn't seem to be mutated. Here are the mutated foci.Position 116763970 doesn't seem to be mutated. Here are the mutated foci.Position 116764205 doesn't seem to be mutated. Here are the mutated foci.Position 116764702 doesn't seem to be mutated. Here are the mutated foci.Position 116769525 doesn't seem to be mutated. Here are the mutated foci.Position 116769809 doesn't seem to be mutated. Here are the mutated foci.Position 116770549 doesn't seem to be mutated. Here are the mutated foci.Position 116770656 doesn't seem to be mutated. Here are the mutated foci.Position 116771233 doesn't seem to be mutated. Here are the mutated foci.Position 116771470 doesn't seem to be mutated. Here are the mutated foci.Position 116775469 doesn't seem to be mutated. Here are the mutated foci.Position 116775665 doesn't seem to be mutated. Here are the mutated foci.Position 116777356 doesn't seem to be mutated. Here are the mutated foci.Position 116777975 doesn't seem to be mutated. Here are the mutated foci.Position 116785201 doesn't seem to be mutated. Here are the mutated foci.Position 116786659 doesn't seem to be mutated. Here are the mutated foci.Position 116792183 doesn't seem to be mutated. Here are the mutated foci.Position 124818691 doesn't seem to be mutated. Here are the mutated foci.Position 124819089 doesn't seem to be mutated. Here are the mutated foci.Position 124820809 doesn't seem to be mutated. Here are the mutated foci.Position 124823354 doesn't seem to be mutated. Here are the mutated foci.Position 124827767 doesn't seem to be mutated. Here are the mutated foci.Position 124832629 doesn't seem to be mutated. Here are the mutated foci.Position 124841787 doesn't seem to be mutated. Here are the mutated foci.Position 124844079 doesn't seem to be mutated. Here are the mutated foci.Position 124847002 doesn't seem to be mutated. Here are the mutated foci.Position 124847359 doesn't seem to be mutated. Here are the mutated foci.Position 124847686 doesn't seem to be mutated. Here are the mutated foci.Position 124848076 doesn't seem to be mutated. Here are the mutated foci.Position 124848755 doesn't seem to be mutated. Here are the mutated foci.Position 124850663 doesn't seem to be mutated. Here are the mutated foci.Position 124850666 doesn't seem to be mutated. Here are the mutated foci.Position 124853329 doesn't seem to be mutated. Here are the mutated foci.Position 124860307 doesn't seem to be mutated. Here are the mutated foci.Position 124860725 doesn't seem to be mutated. Here are the mutated foci.Position 124863244 doesn't seem to be mutated. Here are the mutated foci.Position 124863618 doesn't seem to be mutated. Here are the mutated foci.Position 124864978 doesn't seem to be mutated. Here are the mutated foci.Position 124865326 doesn't seem to be mutated. Here are the mutated foci.Position 124866875 doesn't seem to be mutated. Here are the mutated foci.Position 124871035 doesn't seem to be mutated. Here are the mutated foci.Position 124871880 doesn't seem to be mutated. Here are the mutated foci.Position 124873534 doesn't seem to be mutated. Here are the mutated foci.Position 124875986 doesn't seem to be mutated. Here are the mutated foci.Position 124877456 doesn't seem to be mutated. Here are the mutated foci.Position 124878259 doesn't seem to be mutated. Here are the mutated foci.Position 124888563 doesn't seem to be mutated. Here are the mutated foci.Position 124889326 doesn't seem to be mutated. Here are the mutated foci.Position 124893274 doesn't seem to be mutated. Here are the mutated foci.Position 124899340 doesn't seem to be mutated. Here are the mutated foci.Position 124901241 doesn't seem to be mutated. Here are the mutated foci.Position 124902195 doesn't seem to be mutated. Here are the mutated foci.Position 124903900 doesn't seem to be mutated. Here are the mutated foci.Position 124907354 doesn't seem to be mutated. Here are the mutated foci.Position 124913078 doesn't seem to be mutated. Here are the mutated foci.Position 124917659 doesn't seem to be mutated. Here are the mutated foci.Position 124924975 doesn't seem to be mutated. Here are the mutated foci.Position 124926786 doesn't seem to be mutated. Here are the mutated foci.Position 124930298 doesn't seem to be mutated. Here are the mutated foci.Position 124934416 doesn't seem to be mutated. Here are the mutated foci.Position 140730627 doesn't seem to be mutated. Here are the mutated foci.Position 140731295 doesn't seem to be mutated. Here are the mutated foci.Position 140731424 doesn't seem to be mutated. Here are the mutated foci.Position 140734275 doesn't seem to be mutated. Here are the mutated foci.Position 140737511 doesn't seem to be mutated. Here are the mutated foci.Position 140741702 doesn't seem to be mutated. Here are the mutated foci.Position 140744226 doesn't seem to be mutated. Here are the mutated foci.Position 140756339 doesn't seem to be mutated. Here are the mutated foci.Position 140757565 doesn't seem to be mutated. Here are the mutated foci.Position 140758103 doesn't seem to be mutated. Here are the mutated foci.Position 140758188 doesn't seem to be mutated. Here are the mutated foci.Position 140763467 doesn't seem to be mutated. Here are the mutated foci.Position 140765440 doesn't seem to be mutated. Here are the mutated foci.Position 140769693 doesn't seem to be mutated. Here are the mutated foci.Position 140770019 doesn't seem to be mutated. Here are the mutated foci.Position 140781614 doesn't seem to be mutated. Here are the mutated foci.Position 140781671 doesn't seem to be mutated. Here are the mutated foci.Position 140782665 doesn't seem to be mutated. Here are the mutated foci.Position 140783745 doesn't seem to be mutated. Here are the mutated foci.Position 140785119 doesn't seem to be mutated. Here are the mutated foci.Position 140789794 doesn't seem to be mutated. Here are the mutated foci.Position 140799199 doesn't seem to be mutated. Here are the mutated foci.Position 140802156 doesn't seem to be mutated. Here are the mutated foci.Position 140803077 doesn't seem to be mutated. Here are the mutated foci.Position 140803477 doesn't seem to be mutated. Here are the mutated foci.Position 140807223 doesn't seem to be mutated. Here are the mutated foci.Position 140812285 doesn't seem to be mutated. Here are the mutated foci.Position 140815310 doesn't seem to be mutated. Here are the mutated foci.Position 140829902 doesn't seem to be mutated. Here are the mutated foci.Position 140830053 doesn't seem to be mutated. Here are the mutated foci.Position 140832644 doesn't seem to be mutated. Here are the mutated foci.Position 140841139 doesn't seem to be mutated. Here are the mutated foci.Position 140842417 doesn't seem to be mutated. Here are the mutated foci.Position 140844478 doesn't seem to be mutated. Here are the mutated foci.Position 140847566 doesn't seem to be mutated. Here are the mutated foci.Position 140847586 doesn't seem to be mutated. Here are the mutated foci.Position 140849601 doesn't seem to be mutated. Here are the mutated foci.Position 140852893 doesn't seem to be mutated. Here are the mutated foci.Position 140854813 doesn't seem to be mutated. Here are the mutated foci.Position 140865682 doesn't seem to be mutated. Here are the mutated foci.Position 140878839 doesn't seem to be mutated. Here are the mutated foci.Position 140879715 doesn't seem to be mutated. Here are the mutated foci.Position 140881882 doesn't seem to be mutated. Here are the mutated foci.Position 140884794 doesn't seem to be mutated. Here are the mutated foci.Position 140885141 doesn't seem to be mutated. Here are the mutated foci.Position 140887765 doesn't seem to be mutated. Here are the mutated foci.Position 140893228 doesn't seem to be mutated. Here are the mutated foci.Position 140898038 doesn't seem to be mutated. Here are the mutated foci.Position 140902161 doesn't seem to be mutated. Here are the mutated foci.Position 140910979 doesn't seem to be mutated. Here are the mutated foci.Position 140911145 doesn't seem to be mutated. Here are the mutated foci.Position 140913569 doesn't seem to be mutated. Here are the mutated foci.Position 140914579 doesn't seem to be mutated. Here are the mutated foci.Position 140918561 doesn't seem to be mutated. Here are the mutated foci.Position 140920902 doesn't seem to be mutated. Here are the mutated foci.Position 140929379 doesn't seem to be mutated. Here are the mutated foci.Position 142747503 doesn't seem to be mutated. Here are the mutated foci.Position 142748473 doesn't seem to be mutated. Here are the mutated foci.Position 142751879 doesn't seem to be mutated. Here are the mutated foci.Position 142752160 doesn't seem to be mutated. Here are the mutated foci.Position 142754267 doesn't seem to be mutated. Here are the mutated foci.Position 148802635 doesn't seem to be mutated. Here are the mutated foci.Position 148803001 doesn't seem to be mutated. Here are the mutated foci.Position 148804174 doesn't seem to be mutated. Here are the mutated foci.Position 148805924 doesn't seem to be mutated. Here are the mutated foci.Position 148808846 doesn't seem to be mutated. Here are the mutated foci.Position 148813441 doesn't seem to be mutated. Here are the mutated foci.Position 148814554 doesn't seem to be mutated. Here are the mutated foci.Position 148816491 doesn't seem to be mutated. Here are the mutated foci.Position 148818340 doesn't seem to be mutated. Here are the mutated foci.Position 148825843 doesn't seem to be mutated. Here are the mutated foci.Position 148833835 doesn't seem to be mutated. Here are the mutated foci.Position 148838586 doesn't seem to be mutated. Here are the mutated foci.Position 148838827 doesn't seem to be mutated. Here are the mutated foci.Position 148839711 doesn't seem to be mutated. Here are the mutated foci.Position 148839749 doesn't seem to be mutated. Here are the mutated foci.Position 148841182 doesn't seem to be mutated. Here are the mutated foci.Position 148843941 doesn't seem to be mutated. Here are the mutated foci.Position 148848730 doesn't seem to be mutated. Here are the mutated foci.Position 148856602 doesn't seem to be mutated. Here are the mutated foci.Position 148857619 doesn't seem to be mutated. Here are the mutated foci.Position 148862930 doesn't seem to be mutated. Here are the mutated foci.Position 148866225 doesn't seem to be mutated. Here are the mutated foci.Position 148866636 doesn't seem to be mutated. Here are the mutated foci.Position 148873348 doesn't seem to be mutated. Here are the mutated foci.Position 148874361 doesn't seem to be mutated. Here are the mutated foci.Position 148874813 doesn't seem to be mutated. Here are the mutated foci.Position 148875214 doesn't seem to be mutated. Here are the mutated foci.Position 148879316 doesn't seem to be mutated. Here are the mutated foci.Position 148881015 doesn't seem to be mutated. Here are the mutated foci.Position 148885710 doesn't seem to be mutated. Here are the mutated foci.Position 148886119 doesn't seem to be mutated. Here are the mutated foci.Position 31038443 doesn't seem to be mutated. Here are the mutated foci.Position 31043569 doesn't seem to be mutated. Here are the mutated foci.Position 31048669 doesn't seem to be mutated. Here are the mutated foci.Position 31049579 doesn't seem to be mutated. Here are the mutated foci.Position 31055889 doesn't seem to be mutated. Here are the mutated foci.Position 31061244 doesn't seem to be mutated. Here are the mutated foci.Position 31064003 doesn't seem to be mutated. Here are the mutated foci.Position 31064700 doesn't seem to be mutated. Here are the mutated foci.Position 31066225 doesn't seem to be mutated. Here are the mutated foci.Position 31066248 doesn't seem to be mutated. Here are the mutated foci.Position 31069579 doesn't seem to be mutated. Here are the mutated foci.Position 31072906 doesn't seem to be mutated. Here are the mutated foci.Position 31083382 doesn't seem to be mutated. Here are the mutated foci.Position 31094464 doesn't seem to be mutated. Here are the mutated foci.Position 31096138 doesn't seem to be mutated. Here are the mutated foci.Position 31100872 doesn't seem to be mutated. Here are the mutated foci.Position 31105790 doesn't seem to be mutated. Here are the mutated foci.Position 31105994 doesn't seem to be mutated. Here are the mutated foci.Position 31105996 doesn't seem to be mutated. Here are the mutated foci.Position 31117817 doesn't seem to be mutated. Here are the mutated foci.Position 31119377 doesn't seem to be mutated. Here are the mutated foci.Position 31120155 doesn't seem to be mutated. Here are the mutated foci.Position 31120745 doesn't seem to be mutated. Here are the mutated foci.Position 31127456 doesn't seem to be mutated. Here are the mutated foci.Position 31131464 doesn't seem to be mutated. Here are the mutated foci.Position 31135123 doesn't seem to be mutated. Here are the mutated foci.Position 31136101 doesn't seem to be mutated. Here are the mutated foci.Position 31136752 doesn't seem to be mutated. Here are the mutated foci.Position 31140963 doesn't seem to be mutated. Here are the mutated foci.Position 31148414 doesn't seem to be mutated. Here are the mutated foci.Position 31151828 doesn't seem to be mutated. Here are the mutated foci.Position 31157676 doesn't seem to be mutated. Here are the mutated foci.Position 31167014 doesn't seem to be mutated. Here are the mutated foci.Position 31171414 doesn't seem to be mutated. Here are the mutated foci.Position 31172996 doesn't seem to be mutated. Here are the mutated foci.Position 31175350 doesn't seem to be mutated. Here are the mutated foci.Position 31178121 doesn't seem to be mutated. Here are the mutated foci.Position 38414835 doesn't seem to be mutated. Here are the mutated foci.Position 38416346 doesn't seem to be mutated. Here are the mutated foci.Position 38417952 doesn't seem to be mutated. Here are the mutated foci.Position 38421140 doesn't seem to be mutated. Here are the mutated foci.Position 38421654 doesn't seem to be mutated. Here are the mutated foci.Position 38422700 doesn't seem to be mutated. Here are the mutated foci.Position 38431983 doesn't seem to be mutated. Here are the mutated foci.Position 38436211 doesn't seem to be mutated. Here are the mutated foci.Position 38440978 doesn't seem to be mutated. Here are the mutated foci.Position 38446520 doesn't seem to be mutated. Here are the mutated foci.Position 38448393 doesn't seem to be mutated. Here are the mutated foci.Position 38448572 doesn't seem to be mutated. Here are the mutated foci.Position 38449001 doesn't seem to be mutated. Here are the mutated foci.Position 38452667 doesn't seem to be mutated. Here are the mutated foci.Position 38453963 doesn't seem to be mutated. Here are the mutated foci.Position 38454048 doesn't seem to be mutated. Here are the mutated foci.Position 38454300 doesn't seem to be mutated. Here are the mutated foci.Position 38455545 doesn't seem to be mutated. Here are the mutated foci.Position 38458940 doesn't seem to be mutated. Here are the mutated foci.Position 38464288 doesn't seem to be mutated. Here are the mutated foci.Position 38464516 doesn't seem to be mutated. Here are the mutated foci.Position 38465934 doesn't seem to be mutated. Here are the mutated foci.Position 38467651 doesn't seem to be mutated. Here are the mutated foci.Position 38468942 doesn't seem to be mutated. Here are the mutated foci.Position 38470404 doesn't seem to be mutated. Here are the mutated foci.Position 38472156 doesn't seem to be mutated. Here are the mutated foci.Position 89938253 doesn't seem to be mutated. Here are the mutated foci.Position 89939508 doesn't seem to be mutated. Here are the mutated foci.Position 89940614 doesn't seem to be mutated. Here are the mutated foci.Position 89941270 doesn't seem to be mutated. Here are the mutated foci.Position 89941420 doesn't seem to be mutated. Here are the mutated foci.Position 89943504 doesn't seem to be mutated. Here are the mutated foci.Position 89943969 doesn't seem to be mutated. Here are the mutated foci.Position 89945468 doesn't seem to be mutated. Here are the mutated foci.Position 89954752 doesn't seem to be mutated. Here are the mutated foci.Position 89955560 doesn't seem to be mutated. Here are the mutated foci.Position 89961653 doesn't seem to be mutated. Here are the mutated foci.Position 89964487 doesn't seem to be mutated. Here are the mutated foci.Position 89968010 doesn't seem to be mutated. Here are the mutated foci.Position 89971668 doesn't seem to be mutated. Here are the mutated foci.Position 89980304 doesn't seem to be mutated. Here are the mutated foci.Position 89982930 doesn't seem to be mutated. Here are the mutated foci.Position 89986759 doesn't seem to be mutated. Here are the mutated foci.Position 89987871 doesn't seem to be mutated. Here are the mutated foci.Position 89990657 doesn't seem to be mutated. Here are the mutated foci.Position 89991023 doesn't seem to be mutated. Here are the mutated foci.Position 89991072 doesn't seem to be mutated. Here are the mutated foci.Position 89992932 doesn't seem to be mutated. Here are the mutated foci.Position 89993595 doesn't seem to be mutated. Here are the mutated foci.Position 89994152 doesn't seem to be mutated. Here are the mutated foci.Position 89995636 doesn't seem to be mutated. Here are the mutated foci.Position 117794668 doesn't seem to be mutated. Here are the mutated foci.Position 117798284 doesn't seem to be mutated. Here are the mutated foci.Position 117799703 doesn't seem to be mutated. Here are the mutated foci.Position 117799852 doesn't seem to be mutated. Here are the mutated foci.Position 117800458 doesn't seem to be mutated. Here are the mutated foci.Position 117801576 doesn't seem to be mutated. Here are the mutated foci.Position 117801956 doesn't seem to be mutated. Here are the mutated foci.Position 117807867 doesn't seem to be mutated. Here are the mutated foci.Position 117807919 doesn't seem to be mutated. Here are the mutated foci.Position 117808035 doesn't seem to be mutated. Here are the mutated foci.Position 117809817 doesn't seem to be mutated. Here are the mutated foci.Position 117811607 doesn't seem to be mutated. Here are the mutated foci.Position 117812565 doesn't seem to be mutated. Here are the mutated foci.Position 117814894 doesn't seem to be mutated. Here are the mutated foci.Position 117817189 doesn't seem to be mutated. Here are the mutated foci.Position 117820371 doesn't seem to be mutated. Here are the mutated foci.Position 117821159 doesn't seem to be mutated. Here are the mutated foci.Position 117824378 doesn't seem to be mutated. Here are the mutated foci.Position 117825684 doesn't seem to be mutated. Here are the mutated foci.Position 117827281 doesn't seem to be mutated. Here are the mutated foci.Position 117830454 doesn't seem to be mutated. Here are the mutated foci.Position 117832253 doesn't seem to be mutated. Here are the mutated foci.Position 117838639 doesn't seem to be mutated. Here are the mutated foci.Position 117839105 doesn't seem to be mutated. Here are the mutated foci.Position 117841449 doesn't seem to be mutated. Here are the mutated foci.Position 117843503 doesn't seem to be mutated. Here are the mutated foci.Position 117850428 doesn't seem to be mutated. Here are the mutated foci.Position 117852314 doesn't seem to be mutated. Here are the mutated foci.Position 117858905 doesn't seem to be mutated. Here are the mutated foci.Position 117859171 doesn't seem to be mutated. Here are the mutated foci.Position 117861425 doesn't seem to be mutated. Here are the mutated foci.Position 117865872 doesn't seem to be mutated. Here are the mutated foci.Position 117866867 doesn't seem to be mutated. Here are the mutated foci.Position 117869426 doesn't seem to be mutated. Here are the mutated foci.Position 117869927 doesn't seem to be mutated. Here are the mutated foci.Position 117872398 doesn't seem to be mutated. Here are the mutated foci.Position 117875522 doesn't seem to be mutated. Here are the mutated foci.Position 117879778 doesn't seem to be mutated. Here are the mutated foci.Position 117879804 doesn't seem to be mutated. Here are the mutated foci.Position 117885425 doesn't seem to be mutated. Here are the mutated foci.Position 117886207 doesn't seem to be mutated. Here are the mutated foci.Position 117890909 doesn't seem to be mutated. Here are the mutated foci.Position 117893734 doesn't seem to be mutated. Here are the mutated foci.Position 117895799 doesn't seem to be mutated. Here are the mutated foci.Position 117903878 doesn't seem to be mutated. Here are the mutated foci.Position 117904093 doesn't seem to be mutated. Here are the mutated foci.Position 117905330 doesn't seem to be mutated. Here are the mutated foci.Position 117905605 doesn't seem to be mutated. Here are the mutated foci.Position 117911823 doesn't seem to be mutated. Here are the mutated foci.Position 117919194 doesn't seem to be mutated. Here are the mutated foci.Position 117922705 doesn't seem to be mutated. Here are the mutated foci.Position 117925589 doesn't seem to be mutated. Here are the mutated foci.Position 117940412 doesn't seem to be mutated. Here are the mutated foci.Position 117943285 doesn't seem to be mutated. Here are the mutated foci.Position 117946418 doesn't seem to be mutated. Here are the mutated foci.Position 117947393 doesn't seem to be mutated. Here are the mutated foci.Position 117950793 doesn't seem to be mutated. Here are the mutated foci.Position 117953348 doesn't seem to be mutated. Here are the mutated foci.Position 117955899 doesn't seem to be mutated. Here are the mutated foci.Position 117959569 doesn't seem to be mutated. Here are the mutated foci.Position 117960677 doesn't seem to be mutated. Here are the mutated foci.Position 117971760 doesn't seem to be mutated. Here are the mutated foci.Position 117972336 doesn't seem to be mutated. Here are the mutated foci.Position 117975920 doesn't seem to be mutated. Here are the mutated foci.Position 117976566 doesn't seem to be mutated. Here are the mutated foci.Position 117982035 doesn't seem to be mutated. Here are the mutated foci.Position 117982482 doesn't seem to be mutated. Here are the mutated foci.Position 117986546 doesn't seem to be mutated. Here are the mutated foci.Position 117987230 doesn't seem to be mutated. Here are the mutated foci.Position 117989443 doesn't seem to be mutated. Here are the mutated foci.Position 117990160 doesn't seem to be mutated. Here are the mutated foci.Position 117990168 doesn't seem to be mutated. Here are the mutated foci.Position 117998985 doesn't seem to be mutated. Here are the mutated foci.Position 118002680 doesn't seem to be mutated. Here are the mutated foci.Position 118003002 doesn't seem to be mutated. Here are the mutated foci.Position 118010367 doesn't seem to be mutated. Here are the mutated foci.Position 118010599 doesn't seem to be mutated. Here are the mutated foci.Position 118016893 doesn't seem to be mutated. Here are the mutated foci.Position 118022445 doesn't seem to be mutated. Here are the mutated foci.Position 118022831 doesn't seem to be mutated. Here are the mutated foci.Position 118026639 doesn't seem to be mutated. Here are the mutated foci.Position 118027193 doesn't seem to be mutated. Here are the mutated foci.Position 118028588 doesn't seem to be mutated. Here are the mutated foci.Position 118029068 doesn't seem to be mutated. Here are the mutated foci.Position 118029293 doesn't seem to be mutated. Here are the mutated foci.Position 118036947 doesn't seem to be mutated. Here are the mutated foci.Position 118037201 doesn't seem to be mutated. Here are the mutated foci.Position 118042001 doesn't seem to be mutated. Here are the mutated foci.Position 118044595 doesn't seem to be mutated. Here are the mutated foci.Position 118048819 doesn't seem to be mutated. Here are the mutated foci.Position 118051270 doesn't seem to be mutated. Here are the mutated foci.Position 118056318 doesn't seem to be mutated. Here are the mutated foci.Position 118059541 doesn't seem to be mutated. Here are the mutated foci.Position 118059997 doesn't seem to be mutated. Here are the mutated foci.Position 118061987 doesn't seem to be mutated. Here are the mutated foci.Position 118063175 doesn't seem to be mutated. Here are the mutated foci.Position 118065002 doesn't seem to be mutated. Here are the mutated foci.Position 118068141 doesn't seem to be mutated. Here are the mutated foci.Position 118071645 doesn't seem to be mutated. Here are the mutated foci.Position 118081240 doesn't seem to be mutated. Here are the mutated foci.Position 118082760 doesn't seem to be mutated. Here are the mutated foci.Position 118087765 doesn't seem to be mutated. Here are the mutated foci.Position 118091724 doesn't seem to be mutated. Here are the mutated foci.Position 118092528 doesn't seem to be mutated. Here are the mutated foci.Position 118093779 doesn't seem to be mutated. Here are the mutated foci.Position 118094475 doesn't seem to be mutated. Here are the mutated foci.Position 118095294 doesn't seem to be mutated. Here are the mutated foci.Position 118096895 doesn't seem to be mutated. Here are the mutated foci.Position 118097420 doesn't seem to be mutated. Here are the mutated foci.Position 118105417 doesn't seem to be mutated. Here are the mutated foci.Position 118108001 doesn't seem to be mutated. Here are the mutated foci.Position 118109124 doesn't seem to be mutated. Here are the mutated foci.Position 118110432 doesn't seem to be mutated. Here are the mutated foci.Position 118110595 doesn't seem to be mutated. Here are the mutated foci.Position 118111660 doesn't seem to be mutated. Here are the mutated foci.Position 118115565 doesn't seem to be mutated. Here are the mutated foci.Position 144513126 doesn't seem to be mutated. Here are the mutated foci.Position 144517386 doesn't seem to be mutated. Here are the mutated foci.Position 144517517 doesn't seem to be mutated. Here are the mutated foci.Position 219585 doesn't seem to be mutated. Here are the mutated foci.Position 226625 doesn't seem to be mutated. Here are the mutated foci.Position 230614 doesn't seem to be mutated. Here are the mutated foci.Position 231257 doesn't seem to be mutated. Here are the mutated foci.Position 240643 doesn't seem to be mutated. Here are the mutated foci.Position 241119 doesn't seem to be mutated. Here are the mutated foci.Position 252451 doesn't seem to be mutated. Here are the mutated foci.Position 257094 doesn't seem to be mutated. Here are the mutated foci.Position 262990 doesn't seem to be mutated. Here are the mutated foci.Position 263235 doesn't seem to be mutated. Here are the mutated foci.Position 270515 doesn't seem to be mutated. Here are the mutated foci.Position 270543 doesn't seem to be mutated. Here are the mutated foci.Position 279005 doesn't seem to be mutated. Here are the mutated foci.Position 280661 doesn't seem to be mutated. Here are the mutated foci.Position 282023 doesn't seem to be mutated. Here are the mutated foci.Position 287692 doesn't seem to be mutated. Here are the mutated foci.Position 288350 doesn't seem to be mutated. Here are the mutated foci.Position 294869 doesn't seem to be mutated. Here are the mutated foci.Position 298349 doesn't seem to be mutated. Here are the mutated foci.Position 302198 doesn't seem to be mutated. Here are the mutated foci.Position 302491 doesn't seem to be mutated. Here are the mutated foci.Position 302892 doesn't seem to be mutated. Here are the mutated foci.Position 304272 doesn't seem to be mutated. Here are the mutated foci.Position 304716 doesn't seem to be mutated. Here are the mutated foci.Position 310740 doesn't seem to be mutated. Here are the mutated foci.Position 310766 doesn't seem to be mutated. Here are the mutated foci.Position 315363 doesn't seem to be mutated. Here are the mutated foci.Position 324179 doesn't seem to be mutated. Here are the mutated foci.Position 325930 doesn't seem to be mutated. Here are the mutated foci.Position 326963 doesn't seem to be mutated. Here are the mutated foci.Position 327739 doesn't seem to be mutated. Here are the mutated foci.Position 338891 doesn't seem to be mutated. Here are the mutated foci.Position 339065 doesn't seem to be mutated. Here are the mutated foci.Position 341767 doesn't seem to be mutated. Here are the mutated foci.Position 345418 doesn't seem to be mutated. Here are the mutated foci.Position 347547 doesn't seem to be mutated. Here are the mutated foci.Position 352810 doesn't seem to be mutated. Here are the mutated foci.Position 352957 doesn't seem to be mutated. Here are the mutated foci.Position 355970 doesn't seem to be mutated. Here are the mutated foci.Position 357753 doesn't seem to be mutated. Here are the mutated foci.Position 361758 doesn't seem to be mutated. Here are the mutated foci.Position 362332 doesn't seem to be mutated. Here are the mutated foci.Position 363295 doesn't seem to be mutated. Here are the mutated foci.Position 363767 doesn't seem to be mutated. Here are the mutated foci.Position 364847 doesn't seem to be mutated. Here are the mutated foci.Position 366701 doesn't seem to be mutated. Here are the mutated foci.Position 376106 doesn't seem to be mutated. Here are the mutated foci.Position 382415 doesn't seem to be mutated. Here are the mutated foci.Position 385665 doesn't seem to be mutated. Here are the mutated foci.Position 388135 doesn't seem to be mutated. Here are the mutated foci.Position 391452 doesn't seem to be mutated. Here are the mutated foci.Position 392466 doesn't seem to be mutated. Here are the mutated foci.Position 401488 doesn't seem to be mutated. Here are the mutated foci.Position 408780 doesn't seem to be mutated. Here are the mutated foci.Position 409577 doesn't seem to be mutated. Here are the mutated foci.Position 410316 doesn't seem to be mutated. Here are the mutated foci.Position 410631 doesn't seem to be mutated. Here are the mutated foci.Position 414017 doesn't seem to be mutated. Here are the mutated foci.Position 414090 doesn't seem to be mutated. Here are the mutated foci.Position 416947 doesn't seem to be mutated. Here are the mutated foci.Position 418624 doesn't seem to be mutated. Here are the mutated foci.Position 418887 doesn't seem to be mutated. Here are the mutated foci.Position 420811 doesn't seem to be mutated. Here are the mutated foci.Position 423561 doesn't seem to be mutated. Here are the mutated foci.Position 423711 doesn't seem to be mutated. Here are the mutated foci.Position 425534 doesn't seem to be mutated. Here are the mutated foci.Position 428553 doesn't seem to be mutated. Here are the mutated foci.Position 431389 doesn't seem to be mutated. Here are the mutated foci.Position 431847 doesn't seem to be mutated. Here are the mutated foci.Position 444211 doesn't seem to be mutated. Here are the mutated foci.Position 444610 doesn't seem to be mutated. Here are the mutated foci.Position 445879 doesn't seem to be mutated. Here are the mutated foci.Position 446483 doesn't seem to be mutated. Here are the mutated foci.Position 449954 doesn't seem to be mutated. Here are the mutated foci.Position 450749 doesn't seem to be mutated. Here are the mutated foci.Position 452595 doesn't seem to be mutated. Here are the mutated foci.Position 452744 doesn't seem to be mutated. Here are the mutated foci.Position 454453 doesn't seem to be mutated. Here are the mutated foci.Position 457978 doesn't seem to be mutated. Here are the mutated foci.Position 460366 doesn't seem to be mutated. Here are the mutated foci.Position 463735 doesn't seem to be mutated. Here are the mutated foci.Position 465306 doesn't seem to be mutated. Here are the mutated foci.Position 465688 doesn't seem to be mutated. Here are the mutated foci.Position 465710 doesn't seem to be mutated. Here are the mutated foci.Position 466257 doesn't seem to be mutated. Here are the mutated foci.Position 467744 doesn't seem to be mutated. Here are the mutated foci.Position 1985439 doesn't seem to be mutated. Here are the mutated foci.Position 1990092 doesn't seem to be mutated. Here are the mutated foci.Position 2010081 doesn't seem to be mutated. Here are the mutated foci.Position 2011681 doesn't seem to be mutated. Here are the mutated foci.Position 2015834 doesn't seem to be mutated. Here are the mutated foci.Position 2029048 doesn't seem to be mutated. Here are the mutated foci.Position 2030078 doesn't seem to be mutated. Here are the mutated foci.Position 2039776 doesn't seem to be mutated. Here are the mutated foci.Position 2048758 doesn't seem to be mutated. Here are the mutated foci.Position 2049315 doesn't seem to be mutated. Here are the mutated foci.Position 2049602 doesn't seem to be mutated. Here are the mutated foci.Position 2050494 doesn't seem to be mutated. Here are the mutated foci.Position 2050732 doesn't seem to be mutated. Here are the mutated foci.Position 2052821 doesn't seem to be mutated. Here are the mutated foci.Position 2053984 doesn't seem to be mutated. Here are the mutated foci.Position 2057614 doesn't seem to be mutated. Here are the mutated foci.Position 2058244 doesn't seem to be mutated. Here are the mutated foci.Position 2063903 doesn't seem to be mutated. Here are the mutated foci.Position 2069513 doesn't seem to be mutated. Here are the mutated foci.Position 2076032 doesn't seem to be mutated. Here are the mutated foci.Position 2077145 doesn't seem to be mutated. Here are the mutated foci.Position 2079509 doesn't seem to be mutated. Here are the mutated foci.Position 2080835 doesn't seem to be mutated. Here are the mutated foci.Position 2081077 doesn't seem to be mutated. Here are the mutated foci.Position 2100312 doesn't seem to be mutated. Here are the mutated foci.Position 2103237 doesn't seem to be mutated. Here are the mutated foci.Position 2110569 doesn't seem to be mutated. Here are the mutated foci.Position 2112547 doesn't seem to be mutated. Here are the mutated foci.Position 2114898 doesn't seem to be mutated. Here are the mutated foci.Position 2116242 doesn't seem to be mutated. Here are the mutated foci.Position 2116437 doesn't seem to be mutated. Here are the mutated foci.Position 2117878 doesn't seem to be mutated. Here are the mutated foci.Position 2119899 doesn't seem to be mutated. Here are the mutated foci.Position 2120014 doesn't seem to be mutated. Here are the mutated foci.Position 2120106 doesn't seem to be mutated. Here are the mutated foci.Position 2121278 doesn't seem to be mutated. Here are the mutated foci.Position 2121939 doesn't seem to be mutated. Here are the mutated foci.Position 2123700 doesn't seem to be mutated. Here are the mutated foci.Position 2123976 doesn't seem to be mutated. Here are the mutated foci.Position 2124058 doesn't seem to be mutated. Here are the mutated foci.Position 2125464 doesn't seem to be mutated. Here are the mutated foci.Position 2135739 doesn't seem to be mutated. Here are the mutated foci.Position 2136408 doesn't seem to be mutated. Here are the mutated foci.Position 2142158 doesn't seem to be mutated. Here are the mutated foci.Position 2143569 doesn't seem to be mutated. Here are the mutated foci.Position 2143725 doesn't seem to be mutated. Here are the mutated foci.Position 2150520 doesn't seem to be mutated. Here are the mutated foci.Position 2152787 doesn't seem to be mutated. Here are the mutated foci.Position 2156818 doesn't seem to be mutated. Here are the mutated foci.Position 2159032 doesn't seem to be mutated. Here are the mutated foci.Position 2162759 doesn't seem to be mutated. Here are the mutated foci.Position 2170655 doesn't seem to be mutated. Here are the mutated foci.Position 2172781 doesn't seem to be mutated. Here are the mutated foci.Position 2183789 doesn't seem to be mutated. Here are the mutated foci.Position 2186361 doesn't seem to be mutated. Here are the mutated foci.Position 2187157 doesn't seem to be mutated. Here are the mutated foci.Position 2187734 doesn't seem to be mutated. Here are the mutated foci.Position 2189975 doesn't seem to be mutated. Here are the mutated foci.Position 2194541 doesn't seem to be mutated. Here are the mutated foci.Position 2195671 doesn't seem to be mutated. Here are the mutated foci.Position 2196838 doesn't seem to be mutated. Here are the mutated foci.Position 19373548 doesn't seem to be mutated. Here are the mutated foci.Position 19375079 doesn't seem to be mutated. Here are the mutated foci.Position 19377454 doesn't seem to be mutated. Here are the mutated foci.Position 19378392 doesn't seem to be mutated. Here are the mutated foci.Position 19378911 doesn't seem to be mutated. Here are the mutated foci.Position 19378941 doesn't seem to be mutated. Here are the mutated foci.Position 19379122 doesn't seem to be mutated. Here are the mutated foci.Position 19381693 doesn't seem to be mutated. Here are the mutated foci.Position 21797922 doesn't seem to be mutated. Here are the mutated foci.Position 21805173 doesn't seem to be mutated. Here are the mutated foci.Position 21806480 doesn't seem to be mutated. Here are the mutated foci.Position 21807590 doesn't seem to be mutated. Here are the mutated foci.Position 21810662 doesn't seem to be mutated. Here are the mutated foci.Position 21810829 doesn't seem to be mutated. Here are the mutated foci.Position 21811969 doesn't seem to be mutated. Here are the mutated foci.Position 21811974 doesn't seem to be mutated. Here are the mutated foci.Position 21812744 doesn't seem to be mutated. Here are the mutated foci.Position 21815706 doesn't seem to be mutated. Here are the mutated foci.Position 21816081 doesn't seem to be mutated. Here are the mutated foci.Position 21816311 doesn't seem to be mutated. Here are the mutated foci.Position 21817138 doesn't seem to be mutated. Here are the mutated foci.Position 21821916 doesn't seem to be mutated. Here are the mutated foci.Position 21824495 doesn't seem to be mutated. Here are the mutated foci.Position 21832940 doesn't seem to be mutated. Here are the mutated foci.Position 21833375 doesn't seem to be mutated. Here are the mutated foci.Position 21833734 doesn't seem to be mutated. Here are the mutated foci.Position 21837157 doesn't seem to be mutated. Here are the mutated foci.Position 21842359 doesn't seem to be mutated. Here are the mutated foci.Position 21847327 doesn't seem to be mutated. Here are the mutated foci.Position 21848856 doesn't seem to be mutated. Here are the mutated foci.Position 21849835 doesn't seem to be mutated. Here are the mutated foci.Position 21852557 doesn't seem to be mutated. Here are the mutated foci.Position 21853889 doesn't seem to be mutated. Here are the mutated foci.Position 21854523 doesn't seem to be mutated. Here are the mutated foci.Position 21856687 doesn't seem to be mutated. Here are the mutated foci.Position 21857505 doesn't seem to be mutated. Here are the mutated foci.Position 21857739 doesn't seem to be mutated. Here are the mutated foci.Position 21859947 doesn't seem to be mutated. Here are the mutated foci.Position 21863559 doesn't seem to be mutated. Here are the mutated foci.Position 21866069 doesn't seem to be mutated. Here are the mutated foci.Position 21868044 doesn't seem to be mutated. Here are the mutated foci.Position 21868421 doesn't seem to be mutated. Here are the mutated foci.Position 21870460 doesn't seem to be mutated. Here are the mutated foci.Position 21963652 doesn't seem to be mutated. Here are the mutated foci.Position 21967904 doesn't seem to be mutated. Here are the mutated foci.Position 21968198 doesn't seem to be mutated. Here are the mutated foci.Position 21968696 doesn't seem to be mutated. Here are the mutated foci.Position 21970380 doesn't seem to be mutated. Here are the mutated foci.Position 21971251 doesn't seem to be mutated. Here are the mutated foci.Position 21972034 doesn't seem to be mutated. Here are the mutated foci.Position 21977042 doesn't seem to be mutated. Here are the mutated foci.Position 35074461 doesn't seem to be mutated. Here are the mutated foci.Position 35074854 doesn't seem to be mutated. Here are the mutated foci.Position 35076220 doesn't seem to be mutated. Here are the mutated foci.Position 35077753 doesn't seem to be mutated. Here are the mutated foci.Position 35078754 doesn't seem to be mutated. Here are the mutated foci.Position 35082258 doesn't seem to be mutated. Here are the mutated foci.Position 36828486 doesn't seem to be mutated. Here are the mutated foci.Position 36840940 doesn't seem to be mutated. Here are the mutated foci.Position 36843236 doesn't seem to be mutated. Here are the mutated foci.Position 36846412 doesn't seem to be mutated. Here are the mutated foci.Position 36848598 doesn't seem to be mutated. Here are the mutated foci.Position 36865672 doesn't seem to be mutated. Here are the mutated foci.Position 36876057 doesn't seem to be mutated. Here are the mutated foci.Position 36877155 doesn't seem to be mutated. Here are the mutated foci.Position 36878924 doesn't seem to be mutated. Here are the mutated foci.Position 36881967 doesn't seem to be mutated. Here are the mutated foci.Position 36888203 doesn't seem to be mutated. Here are the mutated foci.Position 36889565 doesn't seem to be mutated. Here are the mutated foci.Position 36893862 doesn't seem to be mutated. Here are the mutated foci.Position 36895112 doesn't seem to be mutated. Here are the mutated foci.Position 36901659 doesn't seem to be mutated. Here are the mutated foci.Position 36903389 doesn't seem to be mutated. Here are the mutated foci.Position 36904115 doesn't seem to be mutated. Here are the mutated foci.Position 36909265 doesn't seem to be mutated. Here are the mutated foci.Position 36910128 doesn't seem to be mutated. Here are the mutated foci.Position 36913655 doesn't seem to be mutated. Here are the mutated foci.Position 36915558 doesn't seem to be mutated. Here are the mutated foci.Position 36916199 doesn't seem to be mutated. Here are the mutated foci.Position 36918387 doesn't seem to be mutated. Here are the mutated foci.Position 36919251 doesn't seem to be mutated. Here are the mutated foci.Position 36925514 doesn't seem to be mutated. Here are the mutated foci.Position 36926061 doesn't seem to be mutated. Here are the mutated foci.Position 36928532 doesn't seem to be mutated. Here are the mutated foci.Position 36929751 doesn't seem to be mutated. Here are the mutated foci.Position 36930066 doesn't seem to be mutated. Here are the mutated foci.Position 36933059 doesn't seem to be mutated. Here are the mutated foci.Position 36937350 doesn't seem to be mutated. Here are the mutated foci.Position 36938170 doesn't seem to be mutated. Here are the mutated foci.Position 36939397 doesn't seem to be mutated. Here are the mutated foci.Position 36939862 doesn't seem to be mutated. Here are the mutated foci.Position 36939937 doesn't seem to be mutated. Here are the mutated foci.Position 36941151 doesn't seem to be mutated. Here are the mutated foci.Position 36947316 doesn't seem to be mutated. Here are the mutated foci.Position 36947493 doesn't seem to be mutated. Here are the mutated foci.Position 36949162 doesn't seem to be mutated. Here are the mutated foci.Position 36951694 doesn't seem to be mutated. Here are the mutated foci.Position 36953798 doesn't seem to be mutated. Here are the mutated foci.Position 36956847 doesn't seem to be mutated. Here are the mutated foci.Position 36958608 doesn't seem to be mutated. Here are the mutated foci.Position 36960573 doesn't seem to be mutated. Here are the mutated foci.Position 36960954 doesn't seem to be mutated. Here are the mutated foci.Position 36966057 doesn't seem to be mutated. Here are the mutated foci.Position 36966166 doesn't seem to be mutated. Here are the mutated foci.Position 36970518 doesn't seem to be mutated. Here are the mutated foci.Position 36977518 doesn't seem to be mutated. Here are the mutated foci.Position 36978764 doesn't seem to be mutated. Here are the mutated foci.Position 36983078 doesn't seem to be mutated. Here are the mutated foci.Position 36985462 doesn't seem to be mutated. Here are the mutated foci.Position 36987163 doesn't seem to be mutated. Here are the mutated foci.Position 36989437 doesn't seem to be mutated. Here are the mutated foci.Position 36989748 doesn't seem to be mutated. Here are the mutated foci.Position 36992461 doesn't seem to be mutated. Here are the mutated foci.Position 36994173 doesn't seem to be mutated. Here are the mutated foci.Position 36997507 doesn't seem to be mutated. Here are the mutated foci.Position 36999366 doesn't seem to be mutated. Here are the mutated foci.Position 37005278 doesn't seem to be mutated. Here are the mutated foci.Position 37007493 doesn't seem to be mutated. Here are the mutated foci.Position 37008366 doesn't seem to be mutated. Here are the mutated foci.Position 37013235 doesn't seem to be mutated. Here are the mutated foci.Position 37023048 doesn't seem to be mutated. Here are the mutated foci.Position 37023649 doesn't seem to be mutated. Here are the mutated foci.Position 37026639 doesn't seem to be mutated. Here are the mutated foci.Position 37027216 doesn't seem to be mutated. Here are the mutated foci.Position 37029120 doesn't seem to be mutated. Here are the mutated foci.Position 37029463 doesn't seem to be mutated. Here are the mutated foci.Position 37033888 doesn't seem to be mutated. Here are the mutated foci.Position 37037130 doesn't seem to be mutated. Here are the mutated foci.Position 95103537 doesn't seem to be mutated. Here are the mutated foci.Position 95104649 doesn't seem to be mutated. Here are the mutated foci.Position 95107330 doesn't seem to be mutated. Here are the mutated foci.Position 95109473 doesn't seem to be mutated. Here are the mutated foci.Position 95111452 doesn't seem to be mutated. Here are the mutated foci.Position 95116004 doesn't seem to be mutated. Here are the mutated foci.Position 95122711 doesn't seem to be mutated. Here are the mutated foci.Position 95122747 doesn't seem to be mutated. Here are the mutated foci.Position 95123354 doesn't seem to be mutated. Here are the mutated foci.Position 95125966 doesn't seem to be mutated. Here are the mutated foci.Position 95126469 doesn't seem to be mutated. Here are the mutated foci.Position 95127376 doesn't seem to be mutated. Here are the mutated foci.Position 95130085 doesn't seem to be mutated. Here are the mutated foci.Position 95134767 doesn't seem to be mutated. Here are the mutated foci.Position 95134969 doesn't seem to be mutated. Here are the mutated foci.Position 95135784 doesn't seem to be mutated. Here are the mutated foci.Position 95137869 doesn't seem to be mutated. Here are the mutated foci.Position 95138242 doesn't seem to be mutated. Here are the mutated foci.Position 95143784 doesn't seem to be mutated. Here are the mutated foci.Position 95143788 doesn't seem to be mutated. Here are the mutated foci.Position 95144287 doesn't seem to be mutated. Here are the mutated foci.Position 95147239 doesn't seem to be mutated. Here are the mutated foci.Position 95147810 doesn't seem to be mutated. Here are the mutated foci.Position 95147827 doesn't seem to be mutated. Here are the mutated foci.Position 95152296 doesn't seem to be mutated. Here are the mutated foci.Position 95155826 doesn't seem to be mutated. Here are the mutated foci.Position 95157935 doesn't seem to be mutated. Here are the mutated foci.Position 95163411 doesn't seem to be mutated. Here are the mutated foci.Position 95168358 doesn't seem to be mutated. Here are the mutated foci.Position 95170736 doesn't seem to be mutated. Here are the mutated foci.Position 95172105 doesn't seem to be mutated. Here are the mutated foci.Position 95172150 doesn't seem to be mutated. Here are the mutated foci.Position 95177666 doesn't seem to be mutated. Here are the mutated foci.Position 95181113 doesn't seem to be mutated. Here are the mutated foci.Position 95183957 doesn't seem to be mutated. Here are the mutated foci.Position 95184613 doesn't seem to be mutated. Here are the mutated foci.Position 95187906 doesn't seem to be mutated. Here are the mutated foci.Position 95188977 doesn't seem to be mutated. Here are the mutated foci.Position 95196874 doesn't seem to be mutated. Here are the mutated foci.Position 95197395 doesn't seem to be mutated. Here are the mutated foci.Position 95208781 doesn't seem to be mutated. Here are the mutated foci.Position 95209018 doesn't seem to be mutated. Here are the mutated foci.Position 95211025 doesn't seem to be mutated. Here are the mutated foci.Position 95211938 doesn't seem to be mutated. Here are the mutated foci.Position 95217448 doesn't seem to be mutated. Here are the mutated foci.Position 95219102 doesn't seem to be mutated. Here are the mutated foci.Position 95220635 doesn't seem to be mutated. Here are the mutated foci.Position 95221172 doesn't seem to be mutated. Here are the mutated foci.Position 95231630 doesn't seem to be mutated. Here are the mutated foci.Position 95232770 doesn't seem to be mutated. Here are the mutated foci.Position 95233813 doesn't seem to be mutated. Here are the mutated foci.Position 95235726 doesn't seem to be mutated. Here are the mutated foci.Position 95237861 doesn't seem to be mutated. Here are the mutated foci.Position 95238506 doesn't seem to be mutated. Here are the mutated foci.Position 95239986 doesn't seem to be mutated. Here are the mutated foci.Position 95242508 doesn't seem to be mutated. Here are the mutated foci.Position 95243885 doesn't seem to be mutated. Here are the mutated foci.Position 95245534 doesn't seem to be mutated. Here are the mutated foci.Position 95248901 doesn't seem to be mutated. Here are the mutated foci.Position 95250687 doesn't seem to be mutated. Here are the mutated foci.Position 95250811 doesn't seem to be mutated. Here are the mutated foci.Position 95252565 doesn't seem to be mutated. Here are the mutated foci.Position 95255982 doesn't seem to be mutated. Here are the mutated foci.Position 95261021 doesn't seem to be mutated. Here are the mutated foci.Position 95267364 doesn't seem to be mutated. Here are the mutated foci.Position 95268545 doesn't seem to be mutated. Here are the mutated foci.Position 95270305 doesn't seem to be mutated. Here are the mutated foci.Position 95271631 doesn't seem to be mutated. Here are the mutated foci.Position 95287748 doesn't seem to be mutated. Here are the mutated foci.Position 95289788 doesn't seem to be mutated. Here are the mutated foci.Position 95297743 doesn't seem to be mutated. Here are the mutated foci.Position 95297960 doesn't seem to be mutated. Here are the mutated foci.Position 95300348 doesn't seem to be mutated. Here are the mutated foci.Position 95301727 doesn't seem to be mutated. Here are the mutated foci.Position 95302260 doesn't seem to be mutated. Here are the mutated foci.Position 95304453 doesn't seem to be mutated. Here are the mutated foci.Position 95304681 doesn't seem to be mutated. Here are the mutated foci.Position 95313416 doesn't seem to be mutated. Here are the mutated foci.Position 95313490 doesn't seem to be mutated. Here are the mutated foci.Position 95313803 doesn't seem to be mutated. Here are the mutated foci.Position 95317657 doesn't seem to be mutated. Here are the mutated foci.Position 95320580 doesn't seem to be mutated. Here are the mutated foci.Position 95322101 doesn't seem to be mutated. Here are the mutated foci.Position 95322280 doesn't seem to be mutated. Here are the mutated foci.Position 95326933 doesn't seem to be mutated. Here are the mutated foci.Position 95327058 doesn't seem to be mutated. Here are the mutated foci.Position 95331115 doesn't seem to be mutated. Here are the mutated foci.Position 95332052 doesn't seem to be mutated. Here are the mutated foci.Position 95332819 doesn't seem to be mutated. Here are the mutated foci.Position 95332851 doesn't seem to be mutated. Here are the mutated foci.Position 95333862 doesn't seem to be mutated. Here are the mutated foci.Position 95335119 doesn't seem to be mutated. Here are the mutated foci.Position 95337236 doesn't seem to be mutated. Here are the mutated foci.Position 95338351 doesn't seem to be mutated. Here are the mutated foci.Position 95341216 doesn't seem to be mutated. Here are the mutated foci.Position 95341310 doesn't seem to be mutated. Here are the mutated foci.Position 95342886 doesn't seem to be mutated. Here are the mutated foci.Position 95343256 doesn't seem to be mutated. Here are the mutated foci.Position 95343404 doesn't seem to be mutated. Here are the mutated foci.Position 95344219 doesn't seem to be mutated. Here are the mutated foci.Position 95345642 doesn't seem to be mutated. Here are the mutated foci.Position 95348566 doesn't seem to be mutated. Here are the mutated foci.Position 95351193 doesn't seem to be mutated. Here are the mutated foci.Position 95351445 doesn't seem to be mutated. Here are the mutated foci.Position 95351795 doesn't seem to be mutated. Here are the mutated foci.Position 95358074 doesn't seem to be mutated. Here are the mutated foci.Position 95359571 doesn't seem to be mutated. Here are the mutated foci.Position 95359745 doesn't seem to be mutated. Here are the mutated foci.Position 95359929 doesn't seem to be mutated. Here are the mutated foci.Position 95360937 doesn't seem to be mutated. Here are the mutated foci.Position 95367841 doesn't seem to be mutated. Here are the mutated foci.Position 95368183 doesn't seem to be mutated. Here are the mutated foci.Position 95368611 doesn't seem to be mutated. Here are the mutated foci.Position 95376001 doesn't seem to be mutated. Here are the mutated foci.Position 95376320 doesn't seem to be mutated. Here are the mutated foci.Position 95379827 doesn't seem to be mutated. Here are the mutated foci.Position 95380354 doesn't seem to be mutated. Here are the mutated foci.Position 95382673 doesn't seem to be mutated. Here are the mutated foci.Position 95384086 doesn't seem to be mutated. Here are the mutated foci.Position 95389418 doesn't seem to be mutated. Here are the mutated foci.Position 95398282 doesn't seem to be mutated. Here are the mutated foci.Position 95399116 doesn't seem to be mutated. Here are the mutated foci.Position 95418851 doesn't seem to be mutated. Here are the mutated foci.Position 95418958 doesn't seem to be mutated. Here are the mutated foci.Position 95419065 doesn't seem to be mutated. Here are the mutated foci.Position 95419371 doesn't seem to be mutated. Here are the mutated foci.Position 95423759 doesn't seem to be mutated. Here are the mutated foci.Position 95423976 doesn't seem to be mutated. Here are the mutated foci.Position 95426115 doesn't seem to be mutated. Here are the mutated foci.Position 95426205 doesn't seem to be mutated. Here are the mutated foci.Position 95427301 doesn't seem to be mutated. Here are the mutated foci.Position 95428957 doesn't seem to be mutated. Here are the mutated foci.Position 95429373 doesn't seem to be mutated. Here are the mutated foci.Position 95429406 doesn't seem to be mutated. Here are the mutated foci.Position 95429862 doesn't seem to be mutated. Here are the mutated foci.Position 95431207 doesn't seem to be mutated. Here are the mutated foci.Position 95438669 doesn't seem to be mutated. Here are the mutated foci.Position 95439439 doesn't seem to be mutated. Here are the mutated foci.Position 95439741 doesn't seem to be mutated. Here are the mutated foci.Position 95441541 doesn't seem to be mutated. Here are the mutated foci.Position 95442729 doesn't seem to be mutated. Here are the mutated foci.Position 95443513 doesn't seem to be mutated. Here are the mutated foci.Position 95446258 doesn't seem to be mutated. Here are the mutated foci.Position 95447736 doesn't seem to be mutated. Here are the mutated foci.Position 95449296 doesn't seem to be mutated. Here are the mutated foci.Position 95451473 doesn't seem to be mutated. Here are the mutated foci.Position 95453098 doesn't seem to be mutated. Here are the mutated foci.Position 95453121 doesn't seem to be mutated. Here are the mutated foci.Position 95453707 doesn't seem to be mutated. Here are the mutated foci.Position 95456346 doesn't seem to be mutated. Here are the mutated foci.Position 95464414 doesn't seem to be mutated. Here are the mutated foci.Position 95466430 doesn't seem to be mutated. Here are the mutated foci.Position 95468158 doesn't seem to be mutated. Here are the mutated foci.Position 95470133 doesn't seem to be mutated. Here are the mutated foci.Position 95470491 doesn't seem to be mutated. Here are the mutated foci.Position 95470532 doesn't seem to be mutated. Here are the mutated foci.Position 95471632 doesn't seem to be mutated. Here are the mutated foci.Position 95471769 doesn't seem to be mutated. Here are the mutated foci.Position 95472400 doesn't seem to be mutated. Here are the mutated foci.Position 95476593 doesn't seem to be mutated. Here are the mutated foci.Position 95479498 doesn't seem to be mutated. Here are the mutated foci.Position 95480777 doesn't seem to be mutated. Here are the mutated foci.Position 95491956 doesn't seem to be mutated. Here are the mutated foci.Position 95495247 doesn't seem to be mutated. Here are the mutated foci.Position 95495468 doesn't seem to be mutated. Here are the mutated foci.Position 95499198 doesn't seem to be mutated. Here are the mutated foci.Position 95499211 doesn't seem to be mutated. Here are the mutated foci.Position 95502551 doesn't seem to be mutated. Here are the mutated foci.Position 95504739 doesn't seem to be mutated. Here are the mutated foci.Position 95510259 doesn't seem to be mutated. Here are the mutated foci.Position 95512638 doesn't seem to be mutated. Here are the mutated foci.Position 95520620 doesn't seem to be mutated. Here are the mutated foci.Position 95521476 doesn't seem to be mutated. Here are the mutated foci.Position 97684330 doesn't seem to be mutated. Here are the mutated foci.Position 97685230 doesn't seem to be mutated. Here are the mutated foci.Position 97689574 doesn't seem to be mutated. Here are the mutated foci.Position 97697555 doesn't seem to be mutated. Here are the mutated foci.Position 97701977 doesn't seem to be mutated. Here are the mutated foci.Position 97702306 doesn't seem to be mutated. Here are the mutated foci.Position 99103937 doesn't seem to be mutated. Here are the mutated foci.Position 99105753 doesn't seem to be mutated. Here are the mutated foci.Position 99106831 doesn't seem to be mutated. Here are the mutated foci.Position 99113297 doesn't seem to be mutated. Here are the mutated foci.Position 99114256 doesn't seem to be mutated. Here are the mutated foci.Position 99117529 doesn't seem to be mutated. Here are the mutated foci.Position 99118760 doesn't seem to be mutated. Here are the mutated foci.Position 99118765 doesn't seem to be mutated. Here are the mutated foci.Position 99123843 doesn't seem to be mutated. Here are the mutated foci.Position 99125848 doesn't seem to be mutated. Here are the mutated foci.Position 99127386 doesn't seem to be mutated. Here are the mutated foci.Position 99129889 doesn't seem to be mutated. Here are the mutated foci.Position 99130903 doesn't seem to be mutated. Here are the mutated foci.Position 99132451 doesn't seem to be mutated. Here are the mutated foci.Position 99137287 doesn't seem to be mutated. Here are the mutated foci.Position 99140083 doesn't seem to be mutated. Here are the mutated foci.Position 99142156 doesn't seem to be mutated. Here are the mutated foci.Position 99143747 doesn't seem to be mutated. Here are the mutated foci.Position 99145798 doesn't seem to be mutated. Here are the mutated foci.Position 99146758 doesn't seem to be mutated. Here are the mutated foci.Position 99147136 doesn't seem to be mutated. Here are the mutated foci.Position 99147967 doesn't seem to be mutated. Here are the mutated foci.Position 99149252 doesn't seem to be mutated. Here are the mutated foci.Position 99150275 doesn't seem to be mutated. Here are the mutated foci.Position 99152834 doesn't seem to be mutated. Here are the mutated foci.Position 99154596 doesn't seem to be mutated. Here are the mutated foci.Position 99156265 doesn't seem to be mutated. Here are the mutated foci.Position 108871731 doesn't seem to be mutated. Here are the mutated foci.Position 108874908 doesn't seem to be mutated. Here are the mutated foci.Position 108878058 doesn't seem to be mutated. Here are the mutated foci.Position 108879809 doesn't seem to be mutated. Here are the mutated foci.Position 108891715 doesn't seem to be mutated. Here are the mutated foci.Position 108892579 doesn't seem to be mutated. Here are the mutated foci.Position 108895928 doesn't seem to be mutated. Here are the mutated foci.Position 108899104 doesn't seem to be mutated. Here are the mutated foci.Position 108902602 doesn't seem to be mutated. Here are the mutated foci.Position 108905516 doesn't seem to be mutated. Here are the mutated foci.Position 108908297 doesn't seem to be mutated. Here are the mutated foci.Position 108909345 doesn't seem to be mutated. Here are the mutated foci.Position 108911056 doesn't seem to be mutated. Here are the mutated foci.Position 108912711 doesn't seem to be mutated. Here are the mutated foci.Position 108913326 doesn't seem to be mutated. Here are the mutated foci.Position 108916195 doesn't seem to be mutated. Here are the mutated foci.Position 108918364 doesn't seem to be mutated. Here are the mutated foci.Position 108919329 doesn't seem to be mutated. Here are the mutated foci.Position 108924388 doesn't seem to be mutated. Here are the mutated foci.Position 108925553 doesn't seem to be mutated. Here are the mutated foci.Position 108927212 doesn't seem to be mutated. Here are the mutated foci.Position 108933962 doesn't seem to be mutated. Here are the mutated foci.Position 132890772 doesn't seem to be mutated. Here are the mutated foci.Position 132897809 doesn't seem to be mutated. Here are the mutated foci.Position 132900786 doesn't seem to be mutated. Here are the mutated foci.Position 132906297 doesn't seem to be mutated. Here are the mutated foci.Position 132907291 doesn't seem to be mutated. Here are the mutated foci.Position 132908587 doesn't seem to be mutated. Here are the mutated foci.Position 132911357 doesn't seem to be mutated. Here are the mutated foci.Position 132912692 doesn't seem to be mutated. Here are the mutated foci.Position 132914610 doesn't seem to be mutated. Here are the mutated foci.Position 132916656 doesn't seem to be mutated. Here are the mutated foci.Position 132919654 doesn't seem to be mutated. Here are the mutated foci.Position 132920070 doesn't seem to be mutated. Here are the mutated foci.Position 132923342 doesn't seem to be mutated. Here are the mutated foci.Position 132924822 doesn't seem to be mutated. Here are the mutated foci.Position 132925638 doesn't seem to be mutated. Here are the mutated foci.Position 132931008 doesn't seem to be mutated. Here are the mutated foci.Position 132934184 doesn't seem to be mutated. Here are the mutated foci.Position 132934217 doesn't seem to be mutated. Here are the mutated foci.Position 132941272 doesn't seem to be mutated. Here are the mutated foci.Position 132941620 doesn't seem to be mutated. Here are the mutated foci.Position 43072784 doesn't seem to be mutated. Here are the mutated foci.Position 43073787 doesn't seem to be mutated. Here are the mutated foci.Position 43075259 doesn't seem to be mutated. Here are the mutated foci.Position 43076202 doesn't seem to be mutated. Here are the mutated foci.Position 43076444 doesn't seem to be mutated. Here are the mutated foci.Position 43079125 doesn't seem to be mutated. Here are the mutated foci.Position 43079248 doesn't seem to be mutated. Here are the mutated foci.Position 43082527 doesn't seem to be mutated. Here are the mutated foci.Position 43088435 doesn't seem to be mutated. Here are the mutated foci.Position 43091393 doesn't seem to be mutated. Here are the mutated foci.Position 43094031 doesn't seem to be mutated. Here are the mutated foci.Position 43094407 doesn't seem to be mutated. Here are the mutated foci.Position 43096813 doesn't seem to be mutated. Here are the mutated foci.Position 43102437 doesn't seem to be mutated. Here are the mutated foci.Position 43102802 doesn't seem to be mutated. Here are the mutated foci.Position 43103917 doesn't seem to be mutated. Here are the mutated foci.Position 43104106 doesn't seem to be mutated. Here are the mutated foci.Position 43104350 doesn't seem to be mutated. Here are the mutated foci.Position 43104862 doesn't seem to be mutated. Here are the mutated foci.Position 43106281 doesn't seem to be mutated. Here are the mutated foci.Position 43110139 doesn't seem to be mutated. Here are the mutated foci.Position 43110721 doesn't seem to be mutated. Here are the mutated foci.Position 43117687 doesn't seem to be mutated. Here are the mutated foci.Position 43118788 doesn't seem to be mutated. Here are the mutated foci.Position 43121706 doesn't seem to be mutated. Here are the mutated foci.Position 43123079 doesn't seem to be mutated. Here are the mutated foci.Position 43123242 doesn't seem to be mutated. Here are the mutated foci.Position 43124275 doesn't seem to be mutated. Here are the mutated foci.Position 43127770 doesn't seem to be mutated. Here are the mutated foci.Position 43130401 doesn't seem to be mutated. Here are the mutated foci.Position 43130447 doesn't seem to be mutated. Here are the mutated foci.Position 43131838 doesn't seem to be mutated. Here are the mutated foci.Position 43133716 doesn't seem to be mutated. Here are the mutated foci.Position 43134961 doesn't seem to be mutated. Here are the mutated foci.Position 43135030 doesn't seem to be mutated. Here are the mutated foci.Position 61897973 doesn't seem to be mutated. Here are the mutated foci.Position 61902035 doesn't seem to be mutated. Here are the mutated foci.Position 61903718 doesn't seem to be mutated. Here are the mutated foci.Position 61910340 doesn't seem to be mutated. Here are the mutated foci.Position 61914388 doesn't seem to be mutated. Here are the mutated foci.Position 61917520 doesn't seem to be mutated. Here are the mutated foci.Position 61917708 doesn't seem to be mutated. Here are the mutated foci.Position 61919879 doesn't seem to be mutated. Here are the mutated foci.Position 61923929 doesn't seem to be mutated. Here are the mutated foci.Position 61927915 doesn't seem to be mutated. Here are the mutated foci.Position 61928068 doesn't seem to be mutated. Here are the mutated foci.Position 61929437 doesn't seem to be mutated. Here are the mutated foci.Position 61932353 doesn't seem to be mutated. Here are the mutated foci.Position 61933692 doesn't seem to be mutated. Here are the mutated foci.Position 61943066 doesn't seem to be mutated. Here are the mutated foci.Position 61943742 doesn't seem to be mutated. Here are the mutated foci.Position 61945210 doesn't seem to be mutated. Here are the mutated foci.Position 61952536 doesn't seem to be mutated. Here are the mutated foci.Position 61954024 doesn't seem to be mutated. Here are the mutated foci.Position 61956623 doesn't seem to be mutated. Here are the mutated foci.Position 61957522 doesn't seem to be mutated. Here are the mutated foci.Position 61957791 doesn't seem to be mutated. Here are the mutated foci.Position 61974313 doesn't seem to be mutated. Here are the mutated foci.Position 61978237 doesn't seem to be mutated. Here are the mutated foci.Position 61981052 doesn't seem to be mutated. Here are the mutated foci.Position 61981574 doesn't seem to be mutated. Here are the mutated foci.Position 61989088 doesn't seem to be mutated. Here are the mutated foci.Position 61989142 doesn't seem to be mutated. Here are the mutated foci.Position 61998898 doesn't seem to be mutated. Here are the mutated foci.Position 62000520 doesn't seem to be mutated. Here are the mutated foci.Position 62001388 doesn't seem to be mutated. Here are the mutated foci.Position 62003397 doesn't seem to be mutated. Here are the mutated foci.Position 62004343 doesn't seem to be mutated. Here are the mutated foci.Position 62006676 doesn't seem to be mutated. Here are the mutated foci.Position 62008172 doesn't seem to be mutated. Here are the mutated foci.Position 62011409 doesn't seem to be mutated. Here are the mutated foci.Position 62015953 doesn't seem to be mutated. Here are the mutated foci.Position 62017673 doesn't seem to be mutated. Here are the mutated foci.Position 62025592 doesn't seem to be mutated. Here are the mutated foci.Position 62032748 doesn't seem to be mutated. Here are the mutated foci.Position 62033212 doesn't seem to be mutated. Here are the mutated foci.Position 62042371 doesn't seem to be mutated. Here are the mutated foci.Position 62044679 doesn't seem to be mutated. Here are the mutated foci.Position 62049819 doesn't seem to be mutated. Here are the mutated foci.Position 62052227 doesn't seem to be mutated. Here are the mutated foci.Position 62052750 doesn't seem to be mutated. Here are the mutated foci.Position 62054394 doesn't seem to be mutated. Here are the mutated foci.Position 62054574 doesn't seem to be mutated. Here are the mutated foci.Position 62060249 doesn't seem to be mutated. Here are the mutated foci.Position 62061698 doesn't seem to be mutated. Here are the mutated foci.Position 62063379 doesn't seem to be mutated. Here are the mutated foci.Position 62072480 doesn't seem to be mutated. Here are the mutated foci.Position 62073085 doesn't seem to be mutated. Here are the mutated foci.Position 62073161 doesn't seem to be mutated. Here are the mutated foci.Position 62075055 doesn't seem to be mutated. Here are the mutated foci.Position 62075703 doesn't seem to be mutated. Here are the mutated foci.Position 62076338 doesn't seem to be mutated. Here are the mutated foci.Position 62079749 doesn't seem to be mutated. Here are the mutated foci.Position 62079817 doesn't seem to be mutated. Here are the mutated foci.Position 62081266 doesn't seem to be mutated. Here are the mutated foci.Position 62083532 doesn't seem to be mutated. Here are the mutated foci.Position 62084333 doesn't seem to be mutated. Here are the mutated foci.Position 62085311 doesn't seem to be mutated. Here are the mutated foci.Position 62093164 doesn't seem to be mutated. Here are the mutated foci.Position 62095092 doesn't seem to be mutated. Here are the mutated foci.Position 62096285 doesn't seem to be mutated. Here are the mutated foci.Position 62096510 doesn't seem to be mutated. Here are the mutated foci.Position 70593042 doesn't seem to be mutated. Here are the mutated foci.Position 70599018 doesn't seem to be mutated. Here are the mutated foci.Position 70602406 doesn't seem to be mutated. Here are the mutated foci.Position 70604537 doesn't seem to be mutated. Here are the mutated foci.Position 70604793 doesn't seem to be mutated. Here are the mutated foci.Position 78031300 doesn't seem to be mutated. Here are the mutated foci.Position 78033084 doesn't seem to be mutated. Here are the mutated foci.Position 78036918 doesn't seem to be mutated. Here are the mutated foci.Position 78039619 doesn't seem to be mutated. Here are the mutated foci.Position 78041077 doesn't seem to be mutated. Here are the mutated foci.Position 78050283 doesn't seem to be mutated. Here are the mutated foci.Position 78055027 doesn't seem to be mutated. Here are the mutated foci.Position 78059178 doesn't seem to be mutated. Here are the mutated foci.Position 78060973 doesn't seem to be mutated. Here are the mutated foci.Position 86754575 doesn't seem to be mutated. Here are the mutated foci.Position 86762053 doesn't seem to be mutated. Here are the mutated foci.Position 86762606 doesn't seem to be mutated. Here are the mutated foci.Position 86763521 doesn't seem to be mutated. Here are the mutated foci.Position 86767101 doesn't seem to be mutated. Here are the mutated foci.Position 86767369 doesn't seem to be mutated. Here are the mutated foci.Position 86775226 doesn't seem to be mutated. Here are the mutated foci.Position 86777740 doesn't seem to be mutated. Here are the mutated foci.Position 86781024 doesn't seem to be mutated. Here are the mutated foci.Position 86782307 doesn't seem to be mutated. Here are the mutated foci.Position 86787168 doesn't seem to be mutated. Here are the mutated foci.Position 86788769 doesn't seem to be mutated. Here are the mutated foci.Position 86789807 doesn't seem to be mutated. Here are the mutated foci.Position 86791502 doesn't seem to be mutated. Here are the mutated foci.Position 86797822 doesn't seem to be mutated. Here are the mutated foci.Position 86812928 doesn't seem to be mutated. Here are the mutated foci.Position 86813709 doesn't seem to be mutated. Here are the mutated foci.Position 86816360 doesn't seem to be mutated. Here are the mutated foci.Position 86822932 doesn't seem to be mutated. Here are the mutated foci.Position 86826911 doesn't seem to be mutated. Here are the mutated foci.Position 86826963 doesn't seem to be mutated. Here are the mutated foci.Position 86827643 doesn't seem to be mutated. Here are the mutated foci.Position 86827819 doesn't seem to be mutated. Here are the mutated foci.Position 86829749 doesn't seem to be mutated. Here are the mutated foci.Position 86829956 doesn't seem to be mutated. Here are the mutated foci.Position 86832175 doesn't seem to be mutated. Here are the mutated foci.Position 86834786 doesn't seem to be mutated. Here are the mutated foci.Position 86843465 doesn't seem to be mutated. Here are the mutated foci.Position 86848050 doesn't seem to be mutated. Here are the mutated foci.Position 86848813 doesn't seem to be mutated. Here are the mutated foci.Position 86856619 doesn't seem to be mutated. Here are the mutated foci.Position 86858146 doesn't seem to be mutated. Here are the mutated foci.Position 86860521 doesn't seem to be mutated. Here are the mutated foci.Position 86867340 doesn't seem to be mutated. Here are the mutated foci.Position 86870454 doesn't seem to be mutated. Here are the mutated foci.Position 86870503 doesn't seem to be mutated. Here are the mutated foci.Position 86872746 doesn't seem to be mutated. Here are the mutated foci.Position 86875037 doesn't seem to be mutated. Here are the mutated foci.Position 86878915 doesn't seem to be mutated. Here are the mutated foci.Position 86879007 doesn't seem to be mutated. Here are the mutated foci.Position 86881895 doesn't seem to be mutated. Here are the mutated foci.Position 86881995 doesn't seem to be mutated. Here are the mutated foci.Position 86885310 doesn't seem to be mutated. Here are the mutated foci.Position 86886262 doesn't seem to be mutated. Here are the mutated foci.Position 86887123 doesn't seem to be mutated. Here are the mutated foci.Position 86888028 doesn't seem to be mutated. Here are the mutated foci.Position 86892559 doesn't seem to be mutated. Here are the mutated foci.Position 86894775 doesn't seem to be mutated. Here are the mutated foci.Position 86894856 doesn't seem to be mutated. Here are the mutated foci.Position 86898446 doesn't seem to be mutated. Here are the mutated foci.Position 86902768 doesn't seem to be mutated. Here are the mutated foci.Position 86909759 doesn't seem to be mutated. Here are the mutated foci.Position 86912331 doesn't seem to be mutated. Here are the mutated foci.Position 86912796 doesn't seem to be mutated. Here are the mutated foci.Position 86915793 doesn't seem to be mutated. Here are the mutated foci.Position 86916187 doesn't seem to be mutated. Here are the mutated foci.Position 86916539 doesn't seem to be mutated. Here are the mutated foci.Position 86916566 doesn't seem to be mutated. Here are the mutated foci.Position 86920787 doesn't seem to be mutated. Here are the mutated foci.Position 86925939 doesn't seem to be mutated. Here are the mutated foci.Position 86928472 doesn't seem to be mutated. Here are the mutated foci.Position 86928586 doesn't seem to be mutated. Here are the mutated foci.Position 86929315 doesn't seem to be mutated. Here are the mutated foci.Position 86931271 doesn't seem to be mutated. Here are the mutated foci.Position 86931990 doesn't seem to be mutated. Here are the mutated foci.Position 87858632 doesn't seem to be mutated. Here are the mutated foci.Position 87864890 doesn't seem to be mutated. Here are the mutated foci.Position 87865575 doesn't seem to be mutated. Here are the mutated foci.Position 87865630 doesn't seem to be mutated. Here are the mutated foci.Position 87870144 doesn't seem to be mutated. Here are the mutated foci.Position 87870805 doesn't seem to be mutated. Here are the mutated foci.Position 87875182 doesn't seem to be mutated. Here are the mutated foci.Position 87879333 doesn't seem to be mutated. Here are the mutated foci.Position 87882005 doesn't seem to be mutated. Here are the mutated foci.Position 87887339 doesn't seem to be mutated. Here are the mutated foci.Position 87889669 doesn't seem to be mutated. Here are the mutated foci.Position 87899884 doesn't seem to be mutated. Here are the mutated foci.Position 87900615 doesn't seem to be mutated. Here are the mutated foci.Position 87901945 doesn't seem to be mutated. Here are the mutated foci.Position 87902606 doesn't seem to be mutated. Here are the mutated foci.Position 87903571 doesn't seem to be mutated. Here are the mutated foci.Position 87904291 doesn't seem to be mutated. Here are the mutated foci.Position 87906888 doesn't seem to be mutated. Here are the mutated foci.Position 87910218 doesn't seem to be mutated. Here are the mutated foci.Position 87912583 doesn't seem to be mutated. Here are the mutated foci.Position 87917334 doesn't seem to be mutated. Here are the mutated foci.Position 87921079 doesn't seem to be mutated. Here are the mutated foci.Position 87921489 doesn't seem to be mutated. Here are the mutated foci.Position 87922263 doesn't seem to be mutated. Here are the mutated foci.Position 87924810 doesn't seem to be mutated. Here are the mutated foci.Position 87933012 doesn't seem to be mutated. Here are the mutated foci.Position 87933103 doesn't seem to be mutated. Here are the mutated foci.Position 87934479 doesn't seem to be mutated. Here are the mutated foci.Position 87939521 doesn't seem to be mutated. Here are the mutated foci.Position 87942479 doesn't seem to be mutated. Here are the mutated foci.Position 87947388 doesn't seem to be mutated. Here are the mutated foci.Position 87947935 doesn't seem to be mutated. Here are the mutated foci.Position 87947942 doesn't seem to be mutated. Here are the mutated foci.Position 87948216 doesn't seem to be mutated. Here are the mutated foci.Position 87949023 doesn't seem to be mutated. Here are the mutated foci.Position 87950044 doesn't seem to be mutated. Here are the mutated foci.Position 87952031 doesn't seem to be mutated. Here are the mutated foci.Position 87952264 doesn't seem to be mutated. Here are the mutated foci.Position 87952432 doesn't seem to be mutated. Here are the mutated foci.Position 87953963 doesn't seem to be mutated. Here are the mutated foci.Position 87962177 doesn't seem to be mutated. Here are the mutated foci.Position 87962424 doesn't seem to be mutated. Here are the mutated foci.Position 87963753 doesn't seem to be mutated. Here are the mutated foci.Position 87964684 doesn't seem to be mutated. Here are the mutated foci.Position 87964942 doesn't seem to be mutated. Here are the mutated foci.Position 87966105 doesn't seem to be mutated. Here are the mutated foci.Position 87966299 doesn't seem to be mutated. Here are the mutated foci.Position 87966564 doesn't seem to be mutated. Here are the mutated foci.Position 87966621 doesn't seem to be mutated. Here are the mutated foci.Position 87968671 doesn't seem to be mutated. Here are the mutated foci.Position 87972295 doesn't seem to be mutated. Here are the mutated foci.Position 88986279 doesn't seem to be mutated. Here are the mutated foci.Position 88987534 doesn't seem to be mutated. Here are the mutated foci.Position 88990628 doesn't seem to be mutated. Here are the mutated foci.Position 88991525 doesn't seem to be mutated. Here are the mutated foci.Position 88993950 doesn't seem to be mutated. Here are the mutated foci.Position 88994034 doesn't seem to be mutated. Here are the mutated foci.Position 89000453 doesn't seem to be mutated. Here are the mutated foci.Position 89002313 doesn't seem to be mutated. Here are the mutated foci.Position 89002313 doesn't seem to be mutated. Here are the mutated foci.Position 89004038 doesn't seem to be mutated. Here are the mutated foci.Position 89011836 doesn't seem to be mutated. Here are the mutated foci.Position 89014676 doesn't seem to be mutated. Here are the mutated foci.Position 89014701 doesn't seem to be mutated. Here are the mutated foci.Position 89017804 doesn't seem to be mutated. Here are the mutated foci.Position 89019649 doesn't seem to be mutated. Here are the mutated foci.Position 102503760 doesn't seem to be mutated. Here are the mutated foci.Position 102508782 doesn't seem to be mutated. Here are the mutated foci.Position 102513956 doesn't seem to be mutated. Here are the mutated foci.Position 102514522 doesn't seem to be mutated. Here are the mutated foci.Position 102514888 doesn't seem to be mutated. Here are the mutated foci.Position 102515447 doesn't seem to be mutated. Here are the mutated foci.Position 102517830 doesn't seem to be mutated. Here are the mutated foci.Position 102519979 doesn't seem to be mutated. Here are the mutated foci.Position 102522377 doesn't seem to be mutated. Here are the mutated foci.Position 102522968 doesn't seem to be mutated. Here are the mutated foci.Position 102523438 doesn't seem to be mutated. Here are the mutated foci.Position 102523636 doesn't seem to be mutated. Here are the mutated foci.Position 102524058 doesn't seem to be mutated. Here are the mutated foci.Position 102525841 doesn't seem to be mutated. Here are the mutated foci.Position 102532471 doesn't seem to be mutated. Here are the mutated foci.Position 102532705 doesn't seem to be mutated. Here are the mutated foci.Position 102532976 doesn't seem to be mutated. Here are the mutated foci.Position 102537058 doesn't seem to be mutated. Here are the mutated foci.Position 102537433 doesn't seem to be mutated. Here are the mutated foci.Position 102542972 doesn't seem to be mutated. Here are the mutated foci.Position 102543922 doesn't seem to be mutated. Here are the mutated foci.Position 102546250 doesn't seem to be mutated. Here are the mutated foci.Position 102552808 doesn't seem to be mutated. Here are the mutated foci.Position 102553901 doesn't seem to be mutated. Here are the mutated foci.Position 102555234 doesn't seem to be mutated. Here are the mutated foci.Position 102560407 doesn't seem to be mutated. Here are the mutated foci.Position 102563816 doesn't seem to be mutated. Here are the mutated foci.Position 102569153 doesn't seem to be mutated. Here are the mutated foci.Position 102572453 doesn't seem to be mutated. Here are the mutated foci.Position 102580508 doesn't seem to be mutated. Here are the mutated foci.Position 102580622 doesn't seem to be mutated. Here are the mutated foci.Position 102586028 doesn't seem to be mutated. Here are the mutated foci.Position 102586414 doesn't seem to be mutated. Here are the mutated foci.Position 102587925 doesn't seem to be mutated. Here are the mutated foci.Position 102592719 doesn't seem to be mutated. Here are the mutated foci.Position 102596003 doesn't seem to be mutated. Here are the mutated foci.Position 102596084 doesn't seem to be mutated. Here are the mutated foci.Position 102596751 doesn't seem to be mutated. Here are the mutated foci.Position 102596816 doesn't seem to be mutated. Here are the mutated foci.Position 102596906 doesn't seem to be mutated. Here are the mutated foci.Position 102599628 doesn't seem to be mutated. Here are the mutated foci.Position 102602111 doesn't seem to be mutated. Here are the mutated foci.Position 102602520 doesn't seem to be mutated. Here are the mutated foci.Position 102602560 doesn't seem to be mutated. Here are the mutated foci.Position 102607192 doesn't seem to be mutated. Here are the mutated foci.Position 102608383 doesn't seem to be mutated. Here are the mutated foci.Position 102611548 doesn't seem to be mutated. Here are the mutated foci.Position 102611778 doesn't seem to be mutated. Here are the mutated foci.Position 102614105 doesn't seem to be mutated. Here are the mutated foci.Position 102616723 doesn't seem to be mutated. Here are the mutated foci.Position 102620975 doesn't seem to be mutated. Here are the mutated foci.Position 102622912 doesn't seem to be mutated. Here are the mutated foci.Position 102624588 doesn't seem to be mutated. Here are the mutated foci.Position 102627155 doesn't seem to be mutated. Here are the mutated foci.Position 102627703 doesn't seem to be mutated. Here are the mutated foci.Position 102628735 doesn't seem to be mutated. Here are the mutated foci.Position 102632817 doesn't seem to be mutated. Here are the mutated foci.Position 102635925 doesn't seem to be mutated. Here are the mutated foci.Position 102637927 doesn't seem to be mutated. Here are the mutated foci.Position 102638503 doesn't seem to be mutated. Here are the mutated foci.Position 110919376 doesn't seem to be mutated. Here are the mutated foci.Position 110931255 doesn't seem to be mutated. Here are the mutated foci.Position 110936640 doesn't seem to be mutated. Here are the mutated foci.Position 110939299 doesn't seem to be mutated. Here are the mutated foci.Position 110939696 doesn't seem to be mutated. Here are the mutated foci.Position 110945573 doesn't seem to be mutated. Here are the mutated foci.Position 110955077 doesn't seem to be mutated. Here are the mutated foci.Position 110964590 doesn't seem to be mutated. Here are the mutated foci.Position 110969294 doesn't seem to be mutated. Here are the mutated foci.Position 110969786 doesn't seem to be mutated. Here are the mutated foci.Position 110976198 doesn't seem to be mutated. Here are the mutated foci.Position 110982261 doesn't seem to be mutated. Here are the mutated foci.Position 110984947 doesn't seem to be mutated. Here are the mutated foci.Position 110993700 doesn't seem to be mutated. Here are the mutated foci.Position 110995802 doesn't seem to be mutated. Here are the mutated foci.Position 111003334 doesn't seem to be mutated. Here are the mutated foci.Position 111004432 doesn't seem to be mutated. Here are the mutated foci.Position 111015870 doesn't seem to be mutated. Here are the mutated foci.Position 111016167 doesn't seem to be mutated. Here are the mutated foci.Position 111016416 doesn't seem to be mutated. Here are the mutated foci.Position 111016464 doesn't seem to be mutated. Here are the mutated foci.Position 111017224 doesn't seem to be mutated. Here are the mutated foci.Position 113545923 doesn't seem to be mutated. Here are the mutated foci.Position 113546154 doesn't seem to be mutated. Here are the mutated foci.Position 113546198 doesn't seem to be mutated. Here are the mutated foci.Position 113557126 doesn't seem to be mutated. Here are the mutated foci.Position 113557727 doesn't seem to be mutated. Here are the mutated foci.Position 113560293 doesn't seem to be mutated. Here are the mutated foci.Position 113561150 doesn't seem to be mutated. Here are the mutated foci.Position 113564805 doesn't seem to be mutated. Here are the mutated foci.Position 113566302 doesn't seem to be mutated. Here are the mutated foci.Position 113570587 doesn't seem to be mutated. Here are the mutated foci.Position 113573324 doesn't seem to be mutated. Here are the mutated foci.Position 113575282 doesn't seem to be mutated. Here are the mutated foci.Position 113575667 doesn't seem to be mutated. Here are the mutated foci.Position 113582485 doesn't seem to be mutated. Here are the mutated foci.Position 113585414 doesn't seem to be mutated. Here are the mutated foci.Position 113586109 doesn't seem to be mutated. Here are the mutated foci.Position 113588012 doesn't seem to be mutated. Here are the mutated foci.Position 113588173 doesn't seem to be mutated. Here are the mutated foci.Position 113589580 doesn't seem to be mutated. Here are the mutated foci.Position 121474456 doesn't seem to be mutated. Here are the mutated foci.Position 121477094 doesn't seem to be mutated. Here are the mutated foci.Position 121477264 doesn't seem to be mutated. Here are the mutated foci.Position 121483043 doesn't seem to be mutated. Here are the mutated foci.Position 121491054 doesn't seem to be mutated. Here are the mutated foci.Position 121493422 doesn't seem to be mutated. Here are the mutated foci.Position 121495217 doesn't seem to be mutated. Here are the mutated foci.Position 121496808 doesn't seem to be mutated. Here are the mutated foci.Position 121497117 doesn't seem to be mutated. Here are the mutated foci.Position 121501448 doesn't seem to be mutated. Here are the mutated foci.Position 121504920 doesn't seem to be mutated. Here are the mutated foci.Position 121505406 doesn't seem to be mutated. Here are the mutated foci.Position 121505888 doesn't seem to be mutated. Here are the mutated foci.Position 121506201 doesn't seem to be mutated. Here are the mutated foci.Position 121507076 doesn't seem to be mutated. Here are the mutated foci.Position 121507462 doesn't seem to be mutated. Here are the mutated foci.Position 121508916 doesn't seem to be mutated. Here are the mutated foci.Position 121508971 doesn't seem to be mutated. Here are the mutated foci.Position 121510302 doesn't seem to be mutated. Here are the mutated foci.Position 121512211 doesn't seem to be mutated. Here are the mutated foci.Position 121513140 doesn't seem to be mutated. Here are the mutated foci.Position 121514969 doesn't seem to be mutated. Here are the mutated foci.Position 121515364 doesn't seem to be mutated. Here are the mutated foci.Position 121517544 doesn't seem to be mutated. Here are the mutated foci.Position 121517617 doesn't seem to be mutated. Here are the mutated foci.Position 121518209 doesn't seem to be mutated. Here are the mutated foci.Position 121518790 doesn't seem to be mutated. Here are the mutated foci.Position 121526040 doesn't seem to be mutated. Here are the mutated foci.Position 121527345 doesn't seem to be mutated. Here are the mutated foci.Position 121528955 doesn't seem to be mutated. Here are the mutated foci.Position 121530006 doesn't seem to be mutated. Here are the mutated foci.Position 121534478 doesn't seem to be mutated. Here are the mutated foci.Position 121535103 doesn't seem to be mutated. Here are the mutated foci.Position 121539863 doesn't seem to be mutated. Here are the mutated foci.Position 121540044 doesn't seem to be mutated. Here are the mutated foci.Position 121540647 doesn't seem to be mutated. Here are the mutated foci.Position 121540793 doesn't seem to be mutated. Here are the mutated foci.Position 121543420 doesn't seem to be mutated. Here are the mutated foci.Position 121545291 doesn't seem to be mutated. Here are the mutated foci.Position 121549051 doesn't seem to be mutated. Here are the mutated foci.Position 121555835 doesn't seem to be mutated. Here are the mutated foci.Position 121560490 doesn't seem to be mutated. Here are the mutated foci.Position 121560555 doesn't seem to be mutated. Here are the mutated foci.Position 121561018 doesn't seem to be mutated. Here are the mutated foci.Position 121562285 doesn't seem to be mutated. Here are the mutated foci.Position 121563579 doesn't seem to be mutated. Here are the mutated foci.Position 121569587 doesn't seem to be mutated. Here are the mutated foci.Position 121569895 doesn't seem to be mutated. Here are the mutated foci.Position 121572199 doesn't seem to be mutated. Here are the mutated foci.Position 121578904 doesn't seem to be mutated. Here are the mutated foci.Position 121579149 doesn't seem to be mutated. Here are the mutated foci.Position 121579172 doesn't seem to be mutated. Here are the mutated foci.Position 121583439 doesn't seem to be mutated. Here are the mutated foci.Position 121589092 doesn't seem to be mutated. Here are the mutated foci.Position 121589116 doesn't seem to be mutated. Here are the mutated foci.Position 121595764 doesn't seem to be mutated. Here are the mutated foci.Position 121596379 doesn't seem to be mutated. Here are the mutated foci.Position 121596846 doesn't seem to be mutated. Here are the mutated foci.Position 531442 doesn't seem to be mutated. Here are the mutated foci.Position 532190 doesn't seem to be mutated. Here are the mutated foci.Position 533835 doesn't seem to be mutated. Here are the mutated foci.Position 2882196 doesn't seem to be mutated. Here are the mutated foci.Position 2883961 doesn't seem to be mutated. Here are the mutated foci.Position 2886372 doesn't seem to be mutated. Here are the mutated foci.Position 2886849 doesn't seem to be mutated. Here are the mutated foci.Position 22619035 doesn't seem to be mutated. Here are the mutated foci.Position 22619499 doesn't seem to be mutated. Here are the mutated foci.Position 22622608 doesn't seem to be mutated. Here are the mutated foci.Position 22623120 doesn't seem to be mutated. Here are the mutated foci.Position 22626448 doesn't seem to be mutated. Here are the mutated foci.Position 22628591 doesn't seem to be mutated. Here are the mutated foci.Position 22629238 doesn't seem to be mutated. Here are the mutated foci.Position 22629897 doesn't seem to be mutated. Here are the mutated foci.Position 22630774 doesn't seem to be mutated. Here are the mutated foci.Position 32390697 doesn't seem to be mutated. Here are the mutated foci.Position 32391867 doesn't seem to be mutated. Here are the mutated foci.Position 32392411 doesn't seem to be mutated. Here are the mutated foci.Position 32395779 doesn't seem to be mutated. Here are the mutated foci.Position 32398785 doesn't seem to be mutated. Here are the mutated foci.Position 32399671 doesn't seem to be mutated. Here are the mutated foci.Position 32401889 doesn't seem to be mutated. Here are the mutated foci.Position 32402484 doesn't seem to be mutated. Here are the mutated foci.Position 32403240 doesn't seem to be mutated. Here are the mutated foci.Position 32404729 doesn't seem to be mutated. Here are the mutated foci.Position 32409644 doesn't seem to be mutated. Here are the mutated foci.Position 32414772 doesn't seem to be mutated. Here are the mutated foci.Position 32419668 doesn't seem to be mutated. Here are the mutated foci.Position 32422811 doesn't seem to be mutated. Here are the mutated foci.Position 32423792 doesn't seem to be mutated. Here are the mutated foci.Position 32425052 doesn't seem to be mutated. Here are the mutated foci.Position 32426039 doesn't seem to be mutated. Here are the mutated foci.Position 32431876 doesn't seem to be mutated. Here are the mutated foci.Position 32435488 doesn't seem to be mutated. Here are the mutated foci.Position 32438427 doesn't seem to be mutated. Here are the mutated foci.Position 44097427 doesn't seem to be mutated. Here are the mutated foci.Position 44099209 doesn't seem to be mutated. Here are the mutated foci.Position 44101858 doesn't seem to be mutated. Here are the mutated foci.Position 44113459 doesn't seem to be mutated. Here are the mutated foci.Position 44123722 doesn't seem to be mutated. Here are the mutated foci.Position 44125019 doesn't seem to be mutated. Here are the mutated foci.Position 44126415 doesn't seem to be mutated. Here are the mutated foci.Position 44128069 doesn't seem to be mutated. Here are the mutated foci.Position 44128816 doesn't seem to be mutated. Here are the mutated foci.Position 44129683 doesn't seem to be mutated. Here are the mutated foci.Position 44133208 doesn't seem to be mutated. Here are the mutated foci.Position 44133823 doesn't seem to be mutated. Here are the mutated foci.Position 44137221 doesn't seem to be mutated. Here are the mutated foci.Position 44137418 doesn't seem to be mutated. Here are the mutated foci.Position 44141899 doesn't seem to be mutated. Here are the mutated foci.Position 44143940 doesn't seem to be mutated. Here are the mutated foci.Position 44146091 doesn't seem to be mutated. Here are the mutated foci.Position 44146515 doesn't seem to be mutated. Here are the mutated foci.Position 44149951 doesn't seem to be mutated. Here are the mutated foci.Position 44151368 doesn't seem to be mutated. Here are the mutated foci.Position 44157029 doesn't seem to be mutated. Here are the mutated foci.Position 44157267 doesn't seem to be mutated. Here are the mutated foci.Position 44161249 doesn't seem to be mutated. Here are the mutated foci.Position 44161449 doesn't seem to be mutated. Here are the mutated foci.Position 44162486 doesn't seem to be mutated. Here are the mutated foci.Position 44163920 doesn't seem to be mutated. Here are the mutated foci.Position 44166211 doesn't seem to be mutated. Here are the mutated foci.Position 44174660 doesn't seem to be mutated. Here are the mutated foci.Position 44175257 doesn't seem to be mutated. Here are the mutated foci.Position 44178792 doesn't seem to be mutated. Here are the mutated foci.Position 44185241 doesn't seem to be mutated. Here are the mutated foci.Position 44186980 doesn't seem to be mutated. Here are the mutated foci.Position 44187237 doesn't seem to be mutated. Here are the mutated foci.Position 44189271 doesn't seem to be mutated. Here are the mutated foci.Position 44191107 doesn't seem to be mutated. Here are the mutated foci.Position 44193780 doesn't seem to be mutated. Here are the mutated foci.Position 44194353 doesn't seem to be mutated. Here are the mutated foci.Position 44195071 doesn't seem to be mutated. Here are the mutated foci.Position 44197975 doesn't seem to be mutated. Here are the mutated foci.Position 44198628 doesn't seem to be mutated. Here are the mutated foci.Position 44199598 doesn't seem to be mutated. Here are the mutated foci.Position 44200151 doesn't seem to be mutated. Here are the mutated foci.Position 44200941 doesn't seem to be mutated. Here are the mutated foci.Position 44213834 doesn't seem to be mutated. Here are the mutated foci.Position 44218548 doesn't seem to be mutated. Here are the mutated foci.Position 44219231 doesn't seem to be mutated. Here are the mutated foci.Position 44221936 doesn't seem to be mutated. Here are the mutated foci.Position 44225582 doesn't seem to be mutated. Here are the mutated foci.Position 44227356 doesn't seem to be mutated. Here are the mutated foci.Position 44231091 doesn't seem to be mutated. Here are the mutated foci.Position 44234254 doesn't seem to be mutated. Here are the mutated foci.Position 44234851 doesn't seem to be mutated. Here are the mutated foci.Position 44236332 doesn't seem to be mutated. Here are the mutated foci.Position 44238484 doesn't seem to be mutated. Here are the mutated foci.Position 44242833 doesn't seem to be mutated. Here are the mutated foci.Position 44243229 doesn't seem to be mutated. Here are the mutated foci.Position 44244701 doesn't seem to be mutated. Here are the mutated foci.Position 44247589 doesn't seem to be mutated. Here are the mutated foci.Position 47210519 doesn't seem to be mutated. Here are the mutated foci.Position 47212625 doesn't seem to be mutated. Here are the mutated foci.Position 47213626 doesn't seem to be mutated. Here are the mutated foci.Position 47213684 doesn't seem to be mutated. Here are the mutated foci.Position 47214138 doesn't seem to be mutated. Here are the mutated foci.Position 47214651 doesn't seem to be mutated. Here are the mutated foci.Position 47217249 doesn't seem to be mutated. Here are the mutated foci.Position 47218005 doesn't seem to be mutated. Here are the mutated foci.Position 47220446 doesn't seem to be mutated. Here are the mutated foci.Position 47220799 doesn't seem to be mutated. Here are the mutated foci.Position 47222733 doesn't seem to be mutated. Here are the mutated foci.Position 47225047 doesn't seem to be mutated. Here are the mutated foci.Position 47233177 doesn't seem to be mutated. Here are the mutated foci.Position 47234200 doesn't seem to be mutated. Here are the mutated foci.Position 47235098 doesn't seem to be mutated. Here are the mutated foci.Position 47236027 doesn't seem to be mutated. Here are the mutated foci.Position 47237310 doesn't seem to be mutated. Here are the mutated foci.Position 47238006 doesn't seem to be mutated. Here are the mutated foci.Position 47238308 doesn't seem to be mutated. Here are the mutated foci.Position 61431962 doesn't seem to be mutated. Here are the mutated foci.Position 61433836 doesn't seem to be mutated. Here are the mutated foci.Position 61435323 doesn't seem to be mutated. Here are the mutated foci.Position 61436045 doesn't seem to be mutated. Here are the mutated foci.Position 61438259 doesn't seem to be mutated. Here are the mutated foci.Position 61438590 doesn't seem to be mutated. Here are the mutated foci.Position 61447129 doesn't seem to be mutated. Here are the mutated foci.Position 64808047 doesn't seem to be mutated. Here are the mutated foci.Position 64810861 doesn't seem to be mutated. Here are the mutated foci.Position 64813852 doesn't seem to be mutated. Here are the mutated foci.Position 67480827 doesn't seem to be mutated. Here are the mutated foci.Position 67483793 doesn't seem to be mutated. Here are the mutated foci.Position 67487637 doesn't seem to be mutated. Here are the mutated foci.Position 67488784 doesn't seem to be mutated. Here are the mutated foci.Position 67489405 doesn't seem to be mutated. Here are the mutated foci.Position 67491025 doesn't seem to be mutated. Here are the mutated foci.Position 108222680 doesn't seem to be mutated. Here are the mutated foci.Position 108226135 doesn't seem to be mutated. Here are the mutated foci.Position 108236653 doesn't seem to be mutated. Here are the mutated foci.Position 108247365 doesn't seem to be mutated. Here are the mutated foci.Position 108247401 doesn't seem to be mutated. Here are the mutated foci.Position 108251719 doesn't seem to be mutated. Here are the mutated foci.Position 108251801 doesn't seem to be mutated. Here are the mutated foci.Position 108256239 doesn't seem to be mutated. Here are the mutated foci.Position 108261671 doesn't seem to be mutated. Here are the mutated foci.Position 108262195 doesn't seem to be mutated. Here are the mutated foci.Position 108266378 doesn't seem to be mutated. Here are the mutated foci.Position 108270927 doesn't seem to be mutated. Here are the mutated foci.Position 108276759 doesn't seem to be mutated. Here are the mutated foci.Position 108278393 doesn't seem to be mutated. Here are the mutated foci.Position 108282267 doesn't seem to be mutated. Here are the mutated foci.Position 108286634 doesn't seem to be mutated. Here are the mutated foci.Position 108288645 doesn't seem to be mutated. Here are the mutated foci.Position 108294599 doesn't seem to be mutated. Here are the mutated foci.Position 108295962 doesn't seem to be mutated. Here are the mutated foci.Position 108296315 doesn't seem to be mutated. Here are the mutated foci.Position 108296518 doesn't seem to be mutated. Here are the mutated foci.Position 108297283 doesn't seem to be mutated. Here are the mutated foci.Position 108299125 doesn't seem to be mutated. Here are the mutated foci.Position 108299226 doesn't seem to be mutated. Here are the mutated foci.Position 108300058 doesn't seem to be mutated. Here are the mutated foci.Position 108301004 doesn't seem to be mutated. Here are the mutated foci.Position 108301754 doesn't seem to be mutated. Here are the mutated foci.Position 108301921 doesn't seem to be mutated. Here are the mutated foci.Position 108302297 doesn't seem to be mutated. Here are the mutated foci.Position 108303988 doesn't seem to be mutated. Here are the mutated foci.Position 108305754 doesn't seem to be mutated. Here are the mutated foci.Position 108306757 doesn't seem to be mutated. Here are the mutated foci.Position 108316648 doesn't seem to be mutated. Here are the mutated foci.Position 108316782 doesn't seem to be mutated. Here are the mutated foci.Position 108325202 doesn't seem to be mutated. Here are the mutated foci.Position 108327469 doesn't seem to be mutated. Here are the mutated foci.Position 108329108 doesn't seem to be mutated. Here are the mutated foci.Position 108329175 doesn't seem to be mutated. Here are the mutated foci.Position 108331889 doesn't seem to be mutated. Here are the mutated foci.Position 108332209 doesn't seem to be mutated. Here are the mutated foci.Position 108333030 doesn't seem to be mutated. Here are the mutated foci.Position 108335956 doesn't seem to be mutated. Here are the mutated foci.Position 108342496 doesn't seem to be mutated. Here are the mutated foci.Position 108343282 doesn't seem to be mutated. Here are the mutated foci.Position 108344163 doesn't seem to be mutated. Here are the mutated foci.Position 108354857 doesn't seem to be mutated. Here are the mutated foci.Position 108356435 doesn't seem to be mutated. Here are the mutated foci.Position 108357499 doesn't seem to be mutated. Here are the mutated foci.Position 108358822 doesn't seem to be mutated. Here are the mutated foci.Position 108365238 doesn't seem to be mutated. Here are the mutated foci.Position 108365919 doesn't seem to be mutated. Here are the mutated foci.Position 108366434 doesn't seem to be mutated. Here are the mutated foci.Position 112089782 doesn't seem to be mutated. Here are the mutated foci.Position 112092349 doesn't seem to be mutated. Here are the mutated foci.Position 112096380 doesn't seem to be mutated. Here are the mutated foci.Position 112096726 doesn't seem to be mutated. Here are the mutated foci.Position 112098444 doesn't seem to be mutated. Here are the mutated foci.Position 119088426 doesn't seem to be mutated. Here are the mutated foci.Position 119092264 doesn't seem to be mutated. Here are the mutated foci.Position 119092375 doesn't seem to be mutated. Here are the mutated foci.Position 119096340 doesn't seem to be mutated. Here are the mutated foci.Position 119204339 doesn't seem to be mutated. Here are the mutated foci.Position 119204860 doesn't seem to be mutated. Here are the mutated foci.Position 119206441 doesn't seem to be mutated. Here are the mutated foci.Position 119207787 doesn't seem to be mutated. Here are the mutated foci.Position 119209333 doesn't seem to be mutated. Here are the mutated foci.Position 119217687 doesn't seem to be mutated. Here are the mutated foci.Position 119218456 doesn't seem to be mutated. Here are the mutated foci.Position 119221740 doesn't seem to be mutated. Here are the mutated foci.Position 119221897 doesn't seem to be mutated. Here are the mutated foci.Position 119223885 doesn't seem to be mutated. Here are the mutated foci.Position 119225636 doesn't seem to be mutated. Here are the mutated foci.Position 119226361 doesn't seem to be mutated. Here are the mutated foci.Position 119226577 doesn't seem to be mutated. Here are the mutated foci.Position 119230523 doesn't seem to be mutated. Here are the mutated foci.Position 119231098 doesn't seem to be mutated. Here are the mutated foci.Position 119234369 doesn't seem to be mutated. Here are the mutated foci.Position 119242383 doesn't seem to be mutated. Here are the mutated foci.Position 119259718 doesn't seem to be mutated. Here are the mutated foci.Position 119262185 doesn't seem to be mutated. Here are the mutated foci.Position 119263400 doesn't seem to be mutated. Here are the mutated foci.Position 119263634 doesn't seem to be mutated. Here are the mutated foci.Position 119269451 doesn't seem to be mutated. Here are the mutated foci.Position 119270041 doesn't seem to be mutated. Here are the mutated foci.Position 119272101 doesn't seem to be mutated. Here are the mutated foci.Position 119275337 doesn't seem to be mutated. Here are the mutated foci.Position 119275454 doesn't seem to be mutated. Here are the mutated foci.Position 119277915 doesn't seem to be mutated. Here are the mutated foci.Position 119278173 doesn't seem to be mutated. Here are the mutated foci.Position 119278272 doesn't seem to be mutated. Here are the mutated foci.Position 119285868 doesn't seem to be mutated. Here are the mutated foci.Position 119285966 doesn't seem to be mutated. Here are the mutated foci.Position 119289575 doesn't seem to be mutated. Here are the mutated foci.Position 119295492 doesn't seem to be mutated. Here are the mutated foci.Position 119297027 doesn't seem to be mutated. Here are the mutated foci.Position 11647753 doesn't seem to be mutated. Here are the mutated foci.Position 11650651 doesn't seem to be mutated. Here are the mutated foci.Position 11651619 doesn't seem to be mutated. Here are the mutated foci.Position 11653961 doesn't seem to be mutated. Here are the mutated foci.Position 11659330 doesn't seem to be mutated. Here are the mutated foci.Position 11663659 doesn't seem to be mutated. Here are the mutated foci.Position 11666071 doesn't seem to be mutated. Here are the mutated foci.Position 11666364 doesn't seem to be mutated. Here are the mutated foci.Position 11678038 doesn't seem to be mutated. Here are the mutated foci.Position 11683897 doesn't seem to be mutated. Here are the mutated foci.Position 11695835 doesn't seem to be mutated. Here are the mutated foci.Position 11706229 doesn't seem to be mutated. Here are the mutated foci.Position 11709728 doesn't seem to be mutated. Here are the mutated foci.Position 11713836 doesn't seem to be mutated. Here are the mutated foci.Position 11714442 doesn't seem to be mutated. Here are the mutated foci.Position 11716087 doesn't seem to be mutated. Here are the mutated foci.Position 11717856 doesn't seem to be mutated. Here are the mutated foci.Position 11723153 doesn't seem to be mutated. Here are the mutated foci.Position 11729339 doesn't seem to be mutated. Here are the mutated foci.Position 11730090 doesn't seem to be mutated. Here are the mutated foci.Position 11732832 doesn't seem to be mutated. Here are the mutated foci.Position 11734912 doesn't seem to be mutated. Here are the mutated foci.Position 11736643 doesn't seem to be mutated. Here are the mutated foci.Position 11739738 doesn't seem to be mutated. Here are the mutated foci.Position 11745712 doesn't seem to be mutated. Here are the mutated foci.Position 11747600 doesn't seem to be mutated. Here are the mutated foci.Position 11748604 doesn't seem to be mutated. Here are the mutated foci.Position 11750490 doesn't seem to be mutated. Here are the mutated foci.Position 11752439 doesn't seem to be mutated. Here are the mutated foci.Position 11753853 doesn't seem to be mutated. Here are the mutated foci.Position 11756850 doesn't seem to be mutated. Here are the mutated foci.Position 11758400 doesn't seem to be mutated. Here are the mutated foci.Position 11763373 doesn't seem to be mutated. Here are the mutated foci.Position 11764359 doesn't seem to be mutated. Here are the mutated foci.Position 11764389 doesn't seem to be mutated. Here are the mutated foci.Position 11766163 doesn't seem to be mutated. Here are the mutated foci.Position 11767028 doesn't seem to be mutated. Here are the mutated foci.Position 11772093 doesn't seem to be mutated. Here are the mutated foci.Position 11775808 doesn't seem to be mutated. Here are the mutated foci.Position 11776174 doesn't seem to be mutated. Here are the mutated foci.Position 11776830 doesn't seem to be mutated. Here are the mutated foci.Position 11785184 doesn't seem to be mutated. Here are the mutated foci.Position 11797038 doesn't seem to be mutated. Here are the mutated foci.Position 11798878 doesn't seem to be mutated. Here are the mutated foci.Position 11800739 doesn't seem to be mutated. Here are the mutated foci.Position 11806852 doesn't seem to be mutated. Here are the mutated foci.Position 11807665 doesn't seem to be mutated. Here are the mutated foci.Position 11814325 doesn't seem to be mutated. Here are the mutated foci.Position 11818116 doesn't seem to be mutated. Here are the mutated foci.Position 11818338 doesn't seem to be mutated. Here are the mutated foci.Position 11823311 doesn't seem to be mutated. Here are the mutated foci.Position 11823625 doesn't seem to be mutated. Here are the mutated foci.Position 11824033 doesn't seem to be mutated. Here are the mutated foci.Position 11832839 doesn't seem to be mutated. Here are the mutated foci.Position 11836896 doesn't seem to be mutated. Here are the mutated foci.Position 11841497 doesn't seem to be mutated. Here are the mutated foci.Position 11841781 doesn't seem to be mutated. Here are the mutated foci.Position 11842474 doesn't seem to be mutated. Here are the mutated foci.Position 11848205 doesn't seem to be mutated. Here are the mutated foci.Position 11848725 doesn't seem to be mutated. Here are the mutated foci.Position 11849991 doesn't seem to be mutated. Here are the mutated foci.Position 11850501 doesn't seem to be mutated. Here are the mutated foci.Position 11851299 doesn't seem to be mutated. Here are the mutated foci.Position 11852908 doesn't seem to be mutated. Here are the mutated foci.Position 11860449 doesn't seem to be mutated. Here are the mutated foci.Position 11862256 doesn't seem to be mutated. Here are the mutated foci.Position 11866759 doesn't seem to be mutated. Here are the mutated foci.Position 11867934 doesn't seem to be mutated. Here are the mutated foci.Position 11870248 doesn't seem to be mutated. Here are the mutated foci.Position 11872250 doesn't seem to be mutated. Here are the mutated foci.Position 11884295 doesn't seem to be mutated. Here are the mutated foci.Position 11890964 doesn't seem to be mutated. Here are the mutated foci.Position 11891658 doesn't seem to be mutated. Here are the mutated foci.Position 11892828 doesn't seem to be mutated. Here are the mutated foci.Position 11893242 doesn't seem to be mutated. Here are the mutated foci.Position 11898798 doesn't seem to be mutated. Here are the mutated foci.Position 11900141 doesn't seem to be mutated. Here are the mutated foci.Position 12710421 doesn't seem to be mutated. Here are the mutated foci.Position 12715936 doesn't seem to be mutated. Here are the mutated foci.Position 12717852 doesn't seem to be mutated. Here are the mutated foci.Position 25207805 doesn't seem to be mutated. Here are the mutated foci.Position 25210634 doesn't seem to be mutated. Here are the mutated foci.Position 25211326 doesn't seem to be mutated. Here are the mutated foci.Position 25211933 doesn't seem to be mutated. Here are the mutated foci.Position 25213637 doesn't seem to be mutated. Here are the mutated foci.Position 25219359 doesn't seem to be mutated. Here are the mutated foci.Position 25221515 doesn't seem to be mutated. Here are the mutated foci.Position 25226690 doesn't seem to be mutated. Here are the mutated foci.Position 25229329 doesn't seem to be mutated. Here are the mutated foci.Position 25231251 doesn't seem to be mutated. Here are the mutated foci.Position 25233520 doesn't seem to be mutated. Here are the mutated foci.Position 25242592 doesn't seem to be mutated. Here are the mutated foci.Position 25248318 doesn't seem to be mutated. Here are the mutated foci.Position 25248592 doesn't seem to be mutated. Here are the mutated foci.Position 25252986 doesn't seem to be mutated. Here are the mutated foci.Position 57743749 doesn't seem to be mutated. Here are the mutated foci.Position 57743816 doesn't seem to be mutated. Here are the mutated foci.Position 57754937 doesn't seem to be mutated. Here are the mutated foci.Position 111402344 doesn't seem to be mutated. Here are the mutated foci.Position 111403144 doesn't seem to be mutated. Here are the mutated foci.Position 111408461 doesn't seem to be mutated. Here are the mutated foci.Position 111411931 doesn't seem to be mutated. Here are the mutated foci.Position 111413449 doesn't seem to be mutated. Here are the mutated foci.Position 111419900 doesn't seem to be mutated. Here are the mutated foci.Position 111420519 doesn't seem to be mutated. Here are the mutated foci.Position 111429494 doesn't seem to be mutated. Here are the mutated foci.Position 111431713 doesn't seem to be mutated. Here are the mutated foci.Position 111432551 doesn't seem to be mutated. Here are the mutated foci.Position 111433288 doesn't seem to be mutated. Here are the mutated foci.Position 111433374 doesn't seem to be mutated. Here are the mutated foci.Position 111434906 doesn't seem to be mutated. Here are the mutated foci.Position 111435192 doesn't seem to be mutated. Here are the mutated foci.Position 111437468 doesn't seem to be mutated. Here are the mutated foci.Position 111439444 doesn't seem to be mutated. Here are the mutated foci.Position 111439550 doesn't seem to be mutated. Here are the mutated foci.Position 111440444 doesn't seem to be mutated. Here are the mutated foci.Position 111447501 doesn't seem to be mutated. Here are the mutated foci.Position 111449824 doesn't seem to be mutated. Here are the mutated foci.Position 112417916 doesn't seem to be mutated. Here are the mutated foci.Position 112418588 doesn't seem to be mutated. Here are the mutated foci.Position 112421730 doesn't seem to be mutated. Here are the mutated foci.Position 112425036 doesn't seem to be mutated. Here are the mutated foci.Position 112426701 doesn't seem to be mutated. Here are the mutated foci.Position 112430763 doesn't seem to be mutated. Here are the mutated foci.Position 112432202 doesn't seem to be mutated. Here are the mutated foci.Position 112435856 doesn't seem to be mutated. Here are the mutated foci.Position 112436204 doesn't seem to be mutated. Here are the mutated foci.Position 112438444 doesn't seem to be mutated. Here are the mutated foci.Position 112439658 doesn't seem to be mutated. Here are the mutated foci.Position 112441042 doesn't seem to be mutated. Here are the mutated foci.Position 112442258 doesn't seem to be mutated. Here are the mutated foci.Position 112442417 doesn't seem to be mutated. Here are the mutated foci.Position 112445540 doesn't seem to be mutated. Here are the mutated foci.Position 112452948 doesn't seem to be mutated. Here are the mutated foci.Position 112457592 doesn't seem to be mutated. Here are the mutated foci.Position 112459070 doesn't seem to be mutated. Here are the mutated foci.Position 112459653 doesn't seem to be mutated. Here are the mutated foci.Position 112464002 doesn't seem to be mutated. Here are the mutated foci.Position 112466128 doesn't seem to be mutated. Here are the mutated foci.Position 112470386 doesn't seem to be mutated. Here are the mutated foci.Position 112474447 doesn't seem to be mutated. Here are the mutated foci.Position 112474729 doesn't seem to be mutated. Here are the mutated foci.Position 112476489 doesn't seem to be mutated. Here are the mutated foci.Position 112477933 doesn't seem to be mutated. Here are the mutated foci.Position 112481733 doesn't seem to be mutated. Here are the mutated foci.Position 112481743 doesn't seem to be mutated. Here are the mutated foci.Position 112483100 doesn't seem to be mutated. Here are the mutated foci.Position 112486541 doesn't seem to be mutated. Here are the mutated foci.Position 112487351 doesn't seem to be mutated. Here are the mutated foci.Position 112488978 doesn't seem to be mutated. Here are the mutated foci.Position 112490451 doesn't seem to be mutated. Here are the mutated foci.Position 112498101 doesn't seem to be mutated. Here are the mutated foci.Position 112498924 doesn't seem to be mutated. Here are the mutated foci.Position 112500220 doesn't seem to be mutated. Here are the mutated foci.Position 112502033 doesn't seem to be mutated. Here are the mutated foci.Position 112502917 doesn't seem to be mutated. Here are the mutated foci.Position 112506794 doesn't seem to be mutated. Here are the mutated foci.Position 112507294 doesn't seem to be mutated. Here are the mutated foci.Position 112509811 doesn't seem to be mutated. Here are the mutated foci.Position 112511077 doesn't seem to be mutated. Here are the mutated foci.Position 112512773 doesn't seem to be mutated. Here are the mutated foci.Position 132622980 doesn't seem to be mutated. Here are the mutated foci.Position 132627733 doesn't seem to be mutated. Here are the mutated foci.Position 132627775 doesn't seem to be mutated. Here are the mutated foci.Position 132628082 doesn't seem to be mutated. Here are the mutated foci.Position 132628732 doesn't seem to be mutated. Here are the mutated foci.Position 132629334 doesn't seem to be mutated. Here are the mutated foci.Position 132631465 doesn't seem to be mutated. Here are the mutated foci.Position 132631828 doesn't seem to be mutated. Here are the mutated foci.Position 132634949 doesn't seem to be mutated. Here are the mutated foci.Position 132642557 doesn't seem to be mutated. Here are the mutated foci.Position 132642972 doesn't seem to be mutated. Here are the mutated foci.Position 132647082 doesn't seem to be mutated. Here are the mutated foci.Position 132648807 doesn't seem to be mutated. Here are the mutated foci.Position 132650444 doesn't seem to be mutated. Here are the mutated foci.Position 132654600 doesn't seem to be mutated. Here are the mutated foci.Position 132658546 doesn't seem to be mutated. Here are the mutated foci.Position 132663089 doesn't seem to be mutated. Here are the mutated foci.Position 132664112 doesn't seem to be mutated. Here are the mutated foci.Position 132666357 doesn't seem to be mutated. Here are the mutated foci.Position 132667288 doesn't seem to be mutated. Here are the mutated foci.Position 132668287 doesn't seem to be mutated. Here are the mutated foci.Position 132670360 doesn't seem to be mutated. Here are the mutated foci.Position 132674428 doesn't seem to be mutated. Here are the mutated foci.Position 132675935 doesn't seem to be mutated. Here are the mutated foci.Position 132676565 doesn't seem to be mutated. Here are the mutated foci.Position 132678221 doesn't seem to be mutated. Here are the mutated foci.Position 132681383 doesn't seem to be mutated. Here are the mutated foci.Position 132685485 doesn't seem to be mutated. Here are the mutated foci.Position 132685937 doesn't seem to be mutated. Here are the mutated foci.Position 132686289 doesn't seem to be mutated. Here are the mutated foci.Position 20188297 doesn't seem to be mutated. Here are the mutated foci.Position 20189411 doesn't seem to be mutated. Here are the mutated foci.Position 20191455 doesn't seem to be mutated. Here are the mutated foci.Position 20191471 doesn't seem to be mutated. Here are the mutated foci.Position 20193528 doesn't seem to be mutated. Here are the mutated foci.Position 20195032 doesn't seem to be mutated. Here are the mutated foci.Position 32319353 doesn't seem to be mutated. Here are the mutated foci.Position 32320684 doesn't seem to be mutated. Here are the mutated foci.Position 32325198 doesn't seem to be mutated. Here are the mutated foci.Position 32329650 doesn't seem to be mutated. Here are the mutated foci.Position 32329843 doesn't seem to be mutated. Here are the mutated foci.Position 32335151 doesn't seem to be mutated. Here are the mutated foci.Position 32336129 doesn't seem to be mutated. Here are the mutated foci.Position 32336205 doesn't seem to be mutated. Here are the mutated foci.Position 32338844 doesn't seem to be mutated. Here are the mutated foci.Position 32339782 doesn't seem to be mutated. Here are the mutated foci.Position 32341591 doesn't seem to be mutated. Here are the mutated foci.Position 32342364 doesn't seem to be mutated. Here are the mutated foci.Position 32342400 doesn't seem to be mutated. Here are the mutated foci.Position 32344306 doesn't seem to be mutated. Here are the mutated foci.Position 32344461 doesn't seem to be mutated. Here are the mutated foci.Position 32345364 doesn't seem to be mutated. Here are the mutated foci.Position 32346440 doesn't seem to be mutated. Here are the mutated foci.Position 32348608 doesn't seem to be mutated. Here are the mutated foci.Position 32350948 doesn't seem to be mutated. Here are the mutated foci.Position 32351743 doesn't seem to be mutated. Here are the mutated foci.Position 32352363 doesn't seem to be mutated. Here are the mutated foci.Position 32352654 doesn't seem to be mutated. Here are the mutated foci.Position 32354502 doesn't seem to be mutated. Here are the mutated foci.Position 32355540 doesn't seem to be mutated. Here are the mutated foci.Position 32360027 doesn't seem to be mutated. Here are the mutated foci.Position 32360406 doesn't seem to be mutated. Here are the mutated foci.Position 32362961 doesn't seem to be mutated. Here are the mutated foci.Position 32366558 doesn't seem to be mutated. Here are the mutated foci.Position 32368513 doesn't seem to be mutated. Here are the mutated foci.Position 32369219 doesn't seem to be mutated. Here are the mutated foci.Position 32369495 doesn't seem to be mutated. Here are the mutated foci.Position 32369816 doesn't seem to be mutated. Here are the mutated foci.Position 32375091 doesn't seem to be mutated. Here are the mutated foci.Position 32378276 doesn't seem to be mutated. Here are the mutated foci.Position 32378519 doesn't seem to be mutated. Here are the mutated foci.Position 32380403 doesn't seem to be mutated. Here are the mutated foci.Position 32380806 doesn't seem to be mutated. Here are the mutated foci.Position 32383307 doesn't seem to be mutated. Here are the mutated foci.Position 32388557 doesn't seem to be mutated. Here are the mutated foci.Position 32390340 doesn't seem to be mutated. Here are the mutated foci.Position 32391972 doesn't seem to be mutated. Here are the mutated foci.Position 32395402 doesn't seem to be mutated. Here are the mutated foci.Position 32395795 doesn't seem to be mutated. Here are the mutated foci.Position 32397050 doesn't seem to be mutated. Here are the mutated foci.Position 32400052 doesn't seem to be mutated. Here are the mutated foci.Position 48305505 doesn't seem to be mutated. Here are the mutated foci.Position 48308221 doesn't seem to be mutated. Here are the mutated foci.Position 48312042 doesn't seem to be mutated. Here are the mutated foci.Position 48317838 doesn't seem to be mutated. Here are the mutated foci.Position 48319463 doesn't seem to be mutated. Here are the mutated foci.Position 48319713 doesn't seem to be mutated. Here are the mutated foci.Position 48320507 doesn't seem to be mutated. Here are the mutated foci.Position 48327648 doesn't seem to be mutated. Here are the mutated foci.Position 48331050 doesn't seem to be mutated. Here are the mutated foci.Position 48331101 doesn't seem to be mutated. Here are the mutated foci.Position 48332224 doesn't seem to be mutated. Here are the mutated foci.Position 48333811 doesn't seem to be mutated. Here are the mutated foci.Position 48337472 doesn't seem to be mutated. Here are the mutated foci.Position 48337757 doesn't seem to be mutated. Here are the mutated foci.Position 48338729 doesn't seem to be mutated. Here are the mutated foci.Position 48343224 doesn't seem to be mutated. Here are the mutated foci.Position 48348699 doesn't seem to be mutated. Here are the mutated foci.Position 48350445 doesn't seem to be mutated. Here are the mutated foci.Position 48350871 doesn't seem to be mutated. Here are the mutated foci.Position 48359668 doesn't seem to be mutated. Here are the mutated foci.Position 48359692 doesn't seem to be mutated. Here are the mutated foci.Position 48363202 doesn't seem to be mutated. Here are the mutated foci.Position 48372049 doesn't seem to be mutated. Here are the mutated foci.Position 48372099 doesn't seem to be mutated. Here are the mutated foci.Position 48373960 doesn't seem to be mutated. Here are the mutated foci.Position 48381838 doesn't seem to be mutated. Here are the mutated foci.Position 48382474 doesn't seem to be mutated. Here are the mutated foci.Position 48383825 doesn't seem to be mutated. Here are the mutated foci.Position 48384085 doesn't seem to be mutated. Here are the mutated foci.Position 48393188 doesn't seem to be mutated. Here are the mutated foci.Position 48394367 doesn't seem to be mutated. Here are the mutated foci.Position 48396136 doesn't seem to be mutated. Here are the mutated foci.Position 48406188 doesn't seem to be mutated. Here are the mutated foci.Position 48410905 doesn't seem to be mutated. Here are the mutated foci.Position 48414463 doesn't seem to be mutated. Here are the mutated foci.Position 48429796 doesn't seem to be mutated. Here are the mutated foci.Position 48439715 doesn't seem to be mutated. Here are the mutated foci.Position 48441351 doesn't seem to be mutated. Here are the mutated foci.Position 48445299 doesn't seem to be mutated. Here are the mutated foci.Position 48447276 doesn't seem to be mutated. Here are the mutated foci.Position 48455785 doesn't seem to be mutated. Here are the mutated foci.Position 48456850 doesn't seem to be mutated. Here are the mutated foci.Position 48459296 doesn't seem to be mutated. Here are the mutated foci.Position 48461143 doesn't seem to be mutated. Here are the mutated foci.Position 48464139 doesn't seem to be mutated. Here are the mutated foci.Position 48474700 doesn't seem to be mutated. Here are the mutated foci.Position 48485536 doesn't seem to be mutated. Here are the mutated foci.Position 48538476 doesn't seem to be mutated. Here are the mutated foci.Position 48544040 doesn't seem to be mutated. Here are the mutated foci.Position 48546625 doesn't seem to be mutated. Here are the mutated foci.Position 48547852 doesn't seem to be mutated. Here are the mutated foci.Position 48548166 doesn't seem to be mutated. Here are the mutated foci.Position 48553783 doesn't seem to be mutated. Here are the mutated foci.Position 48553829 doesn't seem to be mutated. Here are the mutated foci.Position 48556195 doesn't seem to be mutated. Here are the mutated foci.Position 48559667 doesn't seem to be mutated. Here are the mutated foci.Position 48560720 doesn't seem to be mutated. Here are the mutated foci.Position 48562101 doesn't seem to be mutated. Here are the mutated foci.Position 48564018 doesn't seem to be mutated. Here are the mutated foci.Position 48585195 doesn't seem to be mutated. Here are the mutated foci.Position 48588199 doesn't seem to be mutated. Here are the mutated foci.Position 48589007 doesn't seem to be mutated. Here are the mutated foci.Position 48590432 doesn't seem to be mutated. Here are the mutated foci.Position 48594372 doesn't seem to be mutated. Here are the mutated foci.Position 48597315 doesn't seem to be mutated. Here are the mutated foci.Position 77891499 doesn't seem to be mutated. Here are the mutated foci.Position 77894736 doesn't seem to be mutated. Here are the mutated foci.Position 77900456 doesn't seem to be mutated. Here are the mutated foci.Position 77901806 doesn't seem to be mutated. Here are the mutated foci.Position 77905575 doesn't seem to be mutated. Here are the mutated foci.Position 77905887 doesn't seem to be mutated. Here are the mutated foci.Position 77907726 doesn't seem to be mutated. Here are the mutated foci.Position 77908406 doesn't seem to be mutated. Here are the mutated foci.Position 77909460 doesn't seem to be mutated. Here are the mutated foci.Position 77911570 doesn't seem to be mutated. Here are the mutated foci.Position 77915024 doesn't seem to be mutated. Here are the mutated foci.Position 77915171 doesn't seem to be mutated. Here are the mutated foci.Position 77917825 doesn't seem to be mutated. Here are the mutated foci.Position 77918902 doesn't seem to be mutated. Here are the mutated foci.Position 77920156 doesn't seem to be mutated. Here are the mutated foci.Position 77920730 doesn't seem to be mutated. Here are the mutated foci.Position 102842953 doesn't seem to be mutated. Here are the mutated foci.Position 102843811 doesn't seem to be mutated. Here are the mutated foci.Position 102843913 doesn't seem to be mutated. Here are the mutated foci.Position 102845156 doesn't seem to be mutated. Here are the mutated foci.Position 102847144 doesn't seem to be mutated. Here are the mutated foci.Position 102847211 doesn't seem to be mutated. Here are the mutated foci.Position 102849243 doesn't seem to be mutated. Here are the mutated foci.Position 102849987 doesn't seem to be mutated. Here are the mutated foci.Position 102850461 doesn't seem to be mutated. Here are the mutated foci.Position 102855289 doesn't seem to be mutated. Here are the mutated foci.Position 102857847 doesn't seem to be mutated. Here are the mutated foci.Position 102859767 doesn't seem to be mutated. Here are the mutated foci.Position 102863202 doesn't seem to be mutated. Here are the mutated foci.Position 102865490 doesn't seem to be mutated. Here are the mutated foci.Position 102866221 doesn't seem to be mutated. Here are the mutated foci.Position 102869713 doesn't seem to be mutated. Here are the mutated foci.Position 102874623 doesn't seem to be mutated. Here are the mutated foci.Position 102877955 doesn't seem to be mutated. Here are the mutated foci.Position 23113659 doesn't seem to be mutated. Here are the mutated foci.Position 23114347 doesn't seem to be mutated. Here are the mutated foci.Position 23116518 doesn't seem to be mutated. Here are the mutated foci.Position 23117883 doesn't seem to be mutated. Here are the mutated foci.Position 23118604 doesn't seem to be mutated. Here are the mutated foci.Position 23120642 doesn't seem to be mutated. Here are the mutated foci.Position 23121214 doesn't seem to be mutated. Here are the mutated foci.Position 23123090 doesn't seem to be mutated. Here are the mutated foci.Position 24239457 doesn't seem to be mutated. Here are the mutated foci.Position 24239810 doesn't seem to be mutated. Here are the mutated foci.Position 24241595 doesn't seem to be mutated. Here are the mutated foci.Position 36515419 doesn't seem to be mutated. Here are the mutated foci.Position 36517186 doesn't seem to be mutated. Here are the mutated foci.Position 36517623 doesn't seem to be mutated. Here are the mutated foci.Position 36517811 doesn't seem to be mutated. Here are the mutated foci.Position 36522187 doesn't seem to be mutated. Here are the mutated foci.Position 45136850 doesn't seem to be mutated. Here are the mutated foci.Position 45139433 doesn't seem to be mutated. Here are the mutated foci.Position 45146031 doesn't seem to be mutated. Here are the mutated foci.Position 45146332 doesn't seem to be mutated. Here are the mutated foci.Position 45147398 doesn't seem to be mutated. Here are the mutated foci.Position 45147614 doesn't seem to be mutated. Here are the mutated foci.Position 45157690 doesn't seem to be mutated. Here are the mutated foci.Position 45160542 doesn't seem to be mutated. Here are the mutated foci.Position 45161146 doesn't seem to be mutated. Here are the mutated foci.Position 45163350 doesn't seem to be mutated. Here are the mutated foci.Position 45166673 doesn't seem to be mutated. Here are the mutated foci.Position 45169848 doesn't seem to be mutated. Here are the mutated foci.Position 45174373 doesn't seem to be mutated. Here are the mutated foci.Position 45178604 doesn't seem to be mutated. Here are the mutated foci.Position 45180424 doesn't seem to be mutated. Here are the mutated foci.Position 45185202 doesn't seem to be mutated. Here are the mutated foci.Position 45189696 doesn't seem to be mutated. Here are the mutated foci.Position 45193888 doesn't seem to be mutated. Here are the mutated foci.Position 45196021 doesn't seem to be mutated. Here are the mutated foci.Position 45202460 doesn't seem to be mutated. Here are the mutated foci.Position 50116715 doesn't seem to be mutated. Here are the mutated foci.Position 50118594 doesn't seem to be mutated. Here are the mutated foci.Position 50123217 doesn't seem to be mutated. Here are the mutated foci.Position 50125865 doesn't seem to be mutated. Here are the mutated foci.Position 50128197 doesn't seem to be mutated. Here are the mutated foci.Position 50132167 doesn't seem to be mutated. Here are the mutated foci.Position 50139746 doesn't seem to be mutated. Here are the mutated foci.Position 50139896 doesn't seem to be mutated. Here are the mutated foci.Position 50140372 doesn't seem to be mutated. Here are the mutated foci.Position 50142763 doesn't seem to be mutated. Here are the mutated foci.Position 50154019 doesn't seem to be mutated. Here are the mutated foci.Position 50157658 doesn't seem to be mutated. Here are the mutated foci.Position 50162382 doesn't seem to be mutated. Here are the mutated foci.Position 50162413 doesn't seem to be mutated. Here are the mutated foci.Position 50173160 doesn't seem to be mutated. Here are the mutated foci.Position 50173896 doesn't seem to be mutated. Here are the mutated foci.Position 50175632 doesn't seem to be mutated. Here are the mutated foci.Position 50176044 doesn't seem to be mutated. Here are the mutated foci.Position 50176735 doesn't seem to be mutated. Here are the mutated foci.Position 50177490 doesn't seem to be mutated. Here are the mutated foci.Position 50183928 doesn't seem to be mutated. Here are the mutated foci.Position 50185256 doesn't seem to be mutated. Here are the mutated foci.Position 50188380 doesn't seem to be mutated. Here are the mutated foci.Position 50200012 doesn't seem to be mutated. Here are the mutated foci.Position 50200049 doesn't seem to be mutated. Here are the mutated foci.Position 50211659 doesn't seem to be mutated. Here are the mutated foci.Position 50215765 doesn't seem to be mutated. Here are the mutated foci.Position 50217982 doesn't seem to be mutated. Here are the mutated foci.Position 50220274 doesn't seem to be mutated. Here are the mutated foci.Position 50223547 doesn't seem to be mutated. Here are the mutated foci.Position 50223826 doesn't seem to be mutated. Here are the mutated foci.Position 50224780 doesn't seem to be mutated. Here are the mutated foci.Position 50226437 doesn't seem to be mutated. Here are the mutated foci.Position 50227014 doesn't seem to be mutated. Here are the mutated foci.Position 50229476 doesn't seem to be mutated. Here are the mutated foci.Position 50236075 doesn't seem to be mutated. Here are the mutated foci.Position 65068116 doesn't seem to be mutated. Here are the mutated foci.Position 65068517 doesn't seem to be mutated. Here are the mutated foci.Position 65069098 doesn't seem to be mutated. Here are the mutated foci.Position 65070248 doesn't seem to be mutated. Here are the mutated foci.Position 65070582 doesn't seem to be mutated. Here are the mutated foci.Position 65072301 doesn't seem to be mutated. Here are the mutated foci.Position 65075547 doesn't seem to be mutated. Here are the mutated foci.Position 65076670 doesn't seem to be mutated. Here are the mutated foci.Position 65079449 doesn't seem to be mutated. Here are the mutated foci.Position 65083044 doesn't seem to be mutated. Here are the mutated foci.Position 65084609 doesn't seem to be mutated. Here are the mutated foci.Position 65085327 doesn't seem to be mutated. Here are the mutated foci.Position 65085912 doesn't seem to be mutated. Here are the mutated foci.Position 65086094 doesn't seem to be mutated. Here are the mutated foci.Position 65088957 doesn't seem to be mutated. Here are the mutated foci.Position 65089529 doesn't seem to be mutated. Here are the mutated foci.Position 65095141 doesn't seem to be mutated. Here are the mutated foci.Position 65097075 doesn't seem to be mutated. Here are the mutated foci.Position 65098077 doesn't seem to be mutated. Here are the mutated foci.Position 65102254 doesn't seem to be mutated. Here are the mutated foci.Position 65104463 doesn't seem to be mutated. Here are the mutated foci.Position 65106109 doesn't seem to be mutated. Here are the mutated foci.Position 94372035 doesn't seem to be mutated. Here are the mutated foci.Position 94373420 doesn't seem to be mutated. Here are the mutated foci.Position 94375315 doesn't seem to be mutated. Here are the mutated foci.Position 94375728 doesn't seem to be mutated. Here are the mutated foci.Position 94376322 doesn't seem to be mutated. Here are the mutated foci.Position 94377902 doesn't seem to be mutated. Here are the mutated foci.Position 94378627 doesn't seem to be mutated. Here are the mutated foci.Position 94380342 doesn't seem to be mutated. Here are the mutated foci.Position 94381269 doesn't seem to be mutated. Here are the mutated foci.Position 94381991 doesn't seem to be mutated. Here are the mutated foci.Position 94384188 doesn't seem to be mutated. Here are the mutated foci.Position 94384522 doesn't seem to be mutated. Here are the mutated foci.Position 94386001 doesn't seem to be mutated. Here are the mutated foci.Position 94387156 doesn't seem to be mutated. Here are the mutated foci.Position 94388599 doesn't seem to be mutated. Here are the mutated foci.Position 94388623 doesn't seem to be mutated. Here are the mutated foci.Position 95081962 doesn't seem to be mutated. Here are the mutated foci.Position 95083216 doesn't seem to be mutated. Here are the mutated foci.Position 95084140 doesn't seem to be mutated. Here are the mutated foci.Position 95084928 doesn't seem to be mutated. Here are the mutated foci.Position 95085054 doesn't seem to be mutated. Here are the mutated foci.Position 95085131 doesn't seem to be mutated. Here are the mutated foci.Position 95085865 doesn't seem to be mutated. Here are the mutated foci.Position 95086237 doesn't seem to be mutated. Here are the mutated foci.Position 95090442 doesn't seem to be mutated. Here are the mutated foci.Position 95090837 doesn't seem to be mutated. Here are the mutated foci.Position 95091215 doesn't seem to be mutated. Here are the mutated foci.Position 95092168 doesn't seem to be mutated. Here are the mutated foci.Position 95094931 doesn't seem to be mutated. Here are the mutated foci.Position 95100192 doesn't seem to be mutated. Here are the mutated foci.Position 95104580 doesn't seem to be mutated. Here are the mutated foci.Position 95105316 doesn't seem to be mutated. Here are the mutated foci.Position 95107253 doesn't seem to be mutated. Here are the mutated foci.Position 95110021 doesn't seem to be mutated. Here are the mutated foci.Position 95111104 doesn't seem to be mutated. Here are the mutated foci.Position 95119603 doesn't seem to be mutated. Here are the mutated foci.Position 95127109 doesn't seem to be mutated. Here are the mutated foci.Position 95136557 doesn't seem to be mutated. Here are the mutated foci.Position 95138539 doesn't seem to be mutated. Here are the mutated foci.Position 95140600 doesn't seem to be mutated. Here are the mutated foci.Position 95143105 doesn't seem to be mutated. Here are the mutated foci.Position 95147690 doesn't seem to be mutated. Here are the mutated foci.Position 95150361 doesn't seem to be mutated. Here are the mutated foci.Position 95153868 doesn't seem to be mutated. Here are the mutated foci.Position 95156387 doesn't seem to be mutated. Here are the mutated foci.Position 95159705 doesn't seem to be mutated. Here are the mutated foci.Position 103698789 doesn't seem to be mutated. Here are the mutated foci.Position 103707284 doesn't seem to be mutated. Here are the mutated foci.Position 103707790 doesn't seem to be mutated. Here are the mutated foci.Position 103712939 doesn't seem to be mutated. Here are the mutated foci.Position 104765122 doesn't seem to be mutated. Here are the mutated foci.Position 104768501 doesn't seem to be mutated. Here are the mutated foci.Position 104769569 doesn't seem to be mutated. Here are the mutated foci.Position 104773059 doesn't seem to be mutated. Here are the mutated foci.Position 104773437 doesn't seem to be mutated. Here are the mutated foci.Position 104773647 doesn't seem to be mutated. Here are the mutated foci.Position 104774133 doesn't seem to be mutated. Here are the mutated foci.Position 104774271 doesn't seem to be mutated. Here are the mutated foci.Position 104775448 doesn't seem to be mutated. Here are the mutated foci.Position 104775498 doesn't seem to be mutated. Here are the mutated foci.Position 104776612 doesn't seem to be mutated. Here are the mutated foci.Position 104784572 doesn't seem to be mutated. Here are the mutated foci.Position 104785850 doesn't seem to be mutated. Here are the mutated foci.Position 104787050 doesn't seem to be mutated. Here are the mutated foci.Position 104791187 doesn't seem to be mutated. Here are the mutated foci.Position 104793160 doesn't seem to be mutated. Here are the mutated foci.Position 32717179 doesn't seem to be mutated. Here are the mutated foci.Position 32717255 doesn't seem to be mutated. Here are the mutated foci.Position 32720058 doesn't seem to be mutated. Here are the mutated foci.Position 32721632 doesn't seem to be mutated. Here are the mutated foci.Position 32721756 doesn't seem to be mutated. Here are the mutated foci.Position 32722747 doesn't seem to be mutated. Here are the mutated foci.Position 32723319 doesn't seem to be mutated. Here are the mutated foci.Position 32725167 doesn't seem to be mutated. Here are the mutated foci.Position 32727316 doesn't seem to be mutated. Here are the mutated foci.Position 32731671 doesn't seem to be mutated. Here are the mutated foci.Position 32733389 doesn't seem to be mutated. Here are the mutated foci.Position 32735323 doesn't seem to be mutated. Here are the mutated foci.Position 32739330 doesn't seem to be mutated. Here are the mutated foci.Position 32740928 doesn't seem to be mutated. Here are the mutated foci.Position 32742302 doesn't seem to be mutated. Here are the mutated foci.Position 32746999 doesn't seem to be mutated. Here are the mutated foci.Position 32748509 doesn't seem to be mutated. Here are the mutated foci.Position 32749651 doesn't seem to be mutated. Here are the mutated foci.Position 34342278 doesn't seem to be mutated. Here are the mutated foci.Position 38248188 doesn't seem to be mutated. Here are the mutated foci.Position 38253270 doesn't seem to be mutated. Here are the mutated foci.Position 38253979 doesn't seem to be mutated. Here are the mutated foci.Position 38259228 doesn't seem to be mutated. Here are the mutated foci.Position 38259509 doesn't seem to be mutated. Here are the mutated foci.Position 38263327 doesn't seem to be mutated. Here are the mutated foci.Position 38263473 doesn't seem to be mutated. Here are the mutated foci.Position 38264949 doesn't seem to be mutated. Here are the mutated foci.Position 38267438 doesn't seem to be mutated. Here are the mutated foci.Position 38272678 doesn't seem to be mutated. Here are the mutated foci.Position 38278607 doesn't seem to be mutated. Here are the mutated foci.Position 38280505 doesn't seem to be mutated. Here are the mutated foci.Position 38288645 doesn't seem to be mutated. Here are the mutated foci.Position 38289073 doesn't seem to be mutated. Here are the mutated foci.Position 38290562 doesn't seem to be mutated. Here are the mutated foci.Position 38292632 doesn't seem to be mutated. Here are the mutated foci.Position 38294488 doesn't seem to be mutated. Here are the mutated foci.Position 38294981 doesn't seem to be mutated. Here are the mutated foci.Position 38295703 doesn't seem to be mutated. Here are the mutated foci.Position 38299288 doesn't seem to be mutated. Here are the mutated foci.Position 38304606 doesn't seem to be mutated. Here are the mutated foci.Position 38305911 doesn't seem to be mutated. Here are the mutated foci.Position 38306659 doesn't seem to be mutated. Here are the mutated foci.Position 38313760 doesn't seem to be mutated. Here are the mutated foci.Position 38323975 doesn't seem to be mutated. Here are the mutated foci.Position 38324686 doesn't seem to be mutated. Here are the mutated foci.Position 38327104 doesn't seem to be mutated. Here are the mutated foci.Position 38331043 doesn't seem to be mutated. Here are the mutated foci.Position 38331726 doesn't seem to be mutated. Here are the mutated foci.Position 38332520 doesn't seem to be mutated. Here are the mutated foci.Position 38335349 doesn't seem to be mutated. Here are the mutated foci.Position 38335614 doesn't seem to be mutated. Here are the mutated foci.Position 38336903 doesn't seem to be mutated. Here are the mutated foci.Position 38337809 doesn't seem to be mutated. Here are the mutated foci.Position 38338557 doesn't seem to be mutated. Here are the mutated foci.Position 38341196 doesn't seem to be mutated. Here are the mutated foci.Position 38345629 doesn't seem to be mutated. Here are the mutated foci.Position 38346190 doesn't seem to be mutated. Here are the mutated foci.Position 38346415 doesn't seem to be mutated. Here are the mutated foci.Position 38347397 doesn't seem to be mutated. Here are the mutated foci.Position 38348272 doesn't seem to be mutated. Here are the mutated foci.Position 38351206 doesn't seem to be mutated. Here are the mutated foci.Position 38351612 doesn't seem to be mutated. Here are the mutated foci.Position 38353068 doesn't seem to be mutated. Here are the mutated foci.Position 40156540 doesn't seem to be mutated. Here are the mutated foci.Position 40160178 doesn't seem to be mutated. Here are the mutated foci.Position 40160299 doesn't seem to be mutated. Here are the mutated foci.Position 40161380 doesn't seem to be mutated. Here are the mutated foci.Position 40167403 doesn't seem to be mutated. Here are the mutated foci.Position 40170423 doesn't seem to be mutated. Here are the mutated foci.Position 40172603 doesn't seem to be mutated. Here are the mutated foci.Position 40180757 doesn't seem to be mutated. Here are the mutated foci.Position 40181937 doesn't seem to be mutated. Here are the mutated foci.Position 40183549 doesn't seem to be mutated. Here are the mutated foci.Position 40184084 doesn't seem to be mutated. Here are the mutated foci.Position 40184159 doesn't seem to be mutated. Here are the mutated foci.Position 40184523 doesn't seem to be mutated. Here are the mutated foci.Position 40187358 doesn't seem to be mutated. Here are the mutated foci.Position 40190911 doesn't seem to be mutated. Here are the mutated foci.Position 40192687 doesn't seem to be mutated. Here are the mutated foci.Position 40196499 doesn't seem to be mutated. Here are the mutated foci.Position 40197650 doesn't seem to be mutated. Here are the mutated foci.Position 40198047 doesn't seem to be mutated. Here are the mutated foci.Position 40200255 doesn't seem to be mutated. Here are the mutated foci.Position 40202242 doesn't seem to be mutated. Here are the mutated foci.Position 40204546 doesn't seem to be mutated. Here are the mutated foci.Position 40208645 doesn't seem to be mutated. Here are the mutated foci.Position 40208846 doesn't seem to be mutated. Here are the mutated foci.Position 40210828 doesn't seem to be mutated. Here are the mutated foci.Position 40211398 doesn't seem to be mutated. Here are the mutated foci.Position 40212654 doesn't seem to be mutated. Here are the mutated foci.Position 40212770 doesn't seem to be mutated. Here are the mutated foci.Position 40690258 doesn't seem to be mutated. Here are the mutated foci.Position 40691000 doesn't seem to be mutated. Here are the mutated foci.Position 40694181 doesn't seem to be mutated. Here are the mutated foci.Position 40699925 doesn't seem to be mutated. Here are the mutated foci.Position 40709264 doesn't seem to be mutated. Here are the mutated foci.Position 40711068 doesn't seem to be mutated. Here are the mutated foci.Position 40712857 doesn't seem to be mutated. Here are the mutated foci.Position 40714938 doesn't seem to be mutated. Here are the mutated foci.Position 40715216 doesn't seem to be mutated. Here are the mutated foci.Position 40716192 doesn't seem to be mutated. Here are the mutated foci.Position 40716375 doesn't seem to be mutated. Here are the mutated foci.Position 40720157 doesn't seem to be mutated. Here are the mutated foci.Position 40721365 doesn't seem to be mutated. Here are the mutated foci.Position 40723509 doesn't seem to be mutated. Here are the mutated foci.Position 40724997 doesn't seem to be mutated. Here are the mutated foci.Position 40728631 doesn't seem to be mutated. Here are the mutated foci.Position 40729526 doesn't seem to be mutated. Here are the mutated foci.Position 40731765 doesn't seem to be mutated. Here are the mutated foci.Position 40732186 doesn't seem to be mutated. Here are the mutated foci.Position 66383959 doesn't seem to be mutated. Here are the mutated foci.Position 66383998 doesn't seem to be mutated. Here are the mutated foci.Position 66384578 doesn't seem to be mutated. Here are the mutated foci.Position 66385947 doesn't seem to be mutated. Here are the mutated foci.Position 66386664 doesn't seem to be mutated. Here are the mutated foci.Position 66391615 doesn't seem to be mutated. Here are the mutated foci.Position 66400012 doesn't seem to be mutated. Here are the mutated foci.Position 66400961 doesn't seem to be mutated. Here are the mutated foci.Position 66403077 doesn't seem to be mutated. Here are the mutated foci.Position 66405419 doesn't seem to be mutated. Here are the mutated foci.Position 66409077 doesn't seem to be mutated. Here are the mutated foci.Position 66409434 doesn't seem to be mutated. Here are the mutated foci.Position 66411703 doesn't seem to be mutated. Here are the mutated foci.Position 66412456 doesn't seem to be mutated. Here are the mutated foci.Position 66416092 doesn't seem to be mutated. Here are the mutated foci.Position 66417735 doesn't seem to be mutated. Here are the mutated foci.Position 66419659 doesn't seem to be mutated. Here are the mutated foci.Position 66421429 doesn't seem to be mutated. Here are the mutated foci.Position 66423959 doesn't seem to be mutated. Here are the mutated foci.Position 66426041 doesn't seem to be mutated. Here are the mutated foci.Position 66431225 doesn't seem to be mutated. Here are the mutated foci.Position 66436016 doesn't seem to be mutated. Here are the mutated foci.Position 66440991 doesn't seem to be mutated. Here are the mutated foci.Position 66448960 doesn't seem to be mutated. Here are the mutated foci.Position 66452697 doesn't seem to be mutated. Here are the mutated foci.Position 66454427 doesn't seem to be mutated. Here are the mutated foci.Position 66458063 doesn't seem to be mutated. Here are the mutated foci.Position 66460334 doesn't seem to be mutated. Here are the mutated foci.Position 66464309 doesn't seem to be mutated. Here are the mutated foci.Position 66466762 doesn't seem to be mutated. Here are the mutated foci.Position 66476487 doesn't seem to be mutated. Here are the mutated foci.Position 66477192 doesn't seem to be mutated. Here are the mutated foci.Position 66478633 doesn't seem to be mutated. Here are the mutated foci.Position 80151591 doesn't seem to be mutated. Here are the mutated foci.Position 80154108 doesn't seem to be mutated. Here are the mutated foci.Position 80155627 doesn't seem to be mutated. Here are the mutated foci.Position 80155986 doesn't seem to be mutated. Here are the mutated foci.Position 80158485 doesn't seem to be mutated. Here are the mutated foci.Position 80158609 doesn't seem to be mutated. Here are the mutated foci.Position 80159480 doesn't seem to be mutated. Here are the mutated foci.Position 80160292 doesn't seem to be mutated. Here are the mutated foci.Position 80163536 doesn't seem to be mutated. Here are the mutated foci.Position 80164128 doesn't seem to be mutated. Here are the mutated foci.Position 80165463 doesn't seem to be mutated. Here are the mutated foci.Position 80167634 doesn't seem to be mutated. Here are the mutated foci.Position 80168817 doesn't seem to be mutated. Here are the mutated foci.Position 80173418 doesn't seem to be mutated. Here are the mutated foci.Position 80179259 doesn't seem to be mutated. Here are the mutated foci.Position 80181076 doesn't seem to be mutated. Here are the mutated foci.Position 80182245 doesn't seem to be mutated. Here are the mutated foci.Position 80183421 doesn't seem to be mutated. Here are the mutated foci.Position 80184188 doesn't seem to be mutated. Here are the mutated foci.Position 80188221 doesn't seem to be mutated. Here are the mutated foci.Position 82532263 doesn't seem to be mutated. Here are the mutated foci.Position 89238984 doesn't seem to be mutated. Here are the mutated foci.Position 89239647 doesn't seem to be mutated. Here are the mutated foci.Position 89240258 doesn't seem to be mutated. Here are the mutated foci.Position 89245213 doesn't seem to be mutated. Here are the mutated foci.Position 89248712 doesn't seem to be mutated. Here are the mutated foci.Position 89248806 doesn't seem to be mutated. Here are the mutated foci.Position 89250358 doesn't seem to be mutated. Here are the mutated foci.Position 89252054 doesn't seem to be mutated. Here are the mutated foci.Position 89252107 doesn't seem to be mutated. Here are the mutated foci.Position 89254066 doesn't seem to be mutated. Here are the mutated foci.Position 89254780 doesn't seem to be mutated. Here are the mutated foci.Position 89255079 doesn't seem to be mutated. Here are the mutated foci.Position 89255935 doesn't seem to be mutated. Here are the mutated foci.Position 89264901 doesn't seem to be mutated. Here are the mutated foci.Position 89265286 doesn't seem to be mutated. Here are the mutated foci.Position 89265673 doesn't seem to be mutated. Here are the mutated foci.Position 89266571 doesn't seem to be mutated. Here are the mutated foci.Position 89267121 doesn't seem to be mutated. Here are the mutated foci.Position 89271339 doesn't seem to be mutated. Here are the mutated foci.Position 89274171 doesn't seem to be mutated. Here are the mutated foci.Position 89276745 doesn't seem to be mutated. Here are the mutated foci.Position 89278076 doesn't seem to be mutated. Here are the mutated foci.Position 89278116 doesn't seem to be mutated. Here are the mutated foci.Position 89278657 doesn't seem to be mutated. Here are the mutated foci.Position 89283422 doesn't seem to be mutated. Here are the mutated foci.Position 89284789 doesn't seem to be mutated. Here are the mutated foci.Position 89286556 doesn't seem to be mutated. Here are the mutated foci.Position 89286792 doesn't seem to be mutated. Here are the mutated foci.Position 89288493 doesn't seem to be mutated. Here are the mutated foci.Position 89289014 doesn't seem to be mutated. Here are the mutated foci.Position 89291730 doesn't seem to be mutated. Here are the mutated foci.Position 89292174 doesn't seem to be mutated. Here are the mutated foci.Position 89293414 doesn't seem to be mutated. Here are the mutated foci.Position 89297125 doesn't seem to be mutated. Here are the mutated foci.Position 89297284 doesn't seem to be mutated. Here are the mutated foci.Position 89304863 doesn't seem to be mutated. Here are the mutated foci.Position 89307543 doesn't seem to be mutated. Here are the mutated foci.Position 89309038 doesn't seem to be mutated. Here are the mutated foci.Position 89313068 doesn't seem to be mutated. Here are the mutated foci.Position 89315165 doesn't seem to be mutated. Here are the mutated foci.Position 90712927 doesn't seem to be mutated. Here are the mutated foci.Position 90716098 doesn't seem to be mutated. Here are the mutated foci.Position 90717839 doesn't seem to be mutated. Here are the mutated foci.Position 90718146 doesn't seem to be mutated. Here are the mutated foci.Position 90719832 doesn't seem to be mutated. Here are the mutated foci.Position 90721140 doesn't seem to be mutated. Here are the mutated foci.Position 90727338 doesn't seem to be mutated. Here are the mutated foci.Position 90729183 doesn't seem to be mutated. Here are the mutated foci.Position 90731369 doesn't seem to be mutated. Here are the mutated foci.Position 90734293 doesn't seem to be mutated. Here are the mutated foci.Position 90744850 doesn't seem to be mutated. Here are the mutated foci.Position 90748924 doesn't seem to be mutated. Here are the mutated foci.Position 90749192 doesn't seem to be mutated. Here are the mutated foci.Position 90757032 doesn't seem to be mutated. Here are the mutated foci.Position 90757056 doesn't seem to be mutated. Here are the mutated foci.Position 90758962 doesn't seem to be mutated. Here are the mutated foci.Position 90760190 doesn't seem to be mutated. Here are the mutated foci.Position 90765306 doesn't seem to be mutated. Here are the mutated foci.Position 90765338 doesn't seem to be mutated. Here are the mutated foci.Position 90765425 doesn't seem to be mutated. Here are the mutated foci.Position 90766057 doesn't seem to be mutated. Here are the mutated foci.Position 90768141 doesn't seem to be mutated. Here are the mutated foci.Position 90779076 doesn't seem to be mutated. Here are the mutated foci.Position 90783002 doesn't seem to be mutated. Here are the mutated foci.Position 90787585 doesn't seem to be mutated. Here are the mutated foci.Position 90789854 doesn't seem to be mutated. Here are the mutated foci.Position 90792541 doesn't seem to be mutated. Here are the mutated foci.Position 90794528 doesn't seem to be mutated. Here are the mutated foci.Position 90803370 doesn't seem to be mutated. Here are the mutated foci.Position 90805214 doesn't seem to be mutated. Here are the mutated foci.Position 90811470 doesn't seem to be mutated. Here are the mutated foci.Position 90813013 doesn't seem to be mutated. Here are the mutated foci.Position 90813319 doesn't seem to be mutated. Here are the mutated foci.Position 90813336 doesn't seem to be mutated. Here are the mutated foci.Position 90815004 doesn't seem to be mutated. Here are the mutated foci.Position 90815695 doesn't seem to be mutated. Here are the mutated foci.Position 90819090 doesn't seem to be mutated. Here are the mutated foci.Position 2039769 doesn't seem to be mutated. Here are the mutated foci.Position 2040248 doesn't seem to be mutated. Here are the mutated foci.Position 2044101 doesn't seem to be mutated. Here are the mutated foci.Position 2045354 doesn't seem to be mutated. Here are the mutated foci.Position 2046204 doesn't seem to be mutated. Here are the mutated foci.Position 2048876 doesn't seem to be mutated. Here are the mutated foci.Position 2050853 doesn't seem to be mutated. Here are the mutated foci.Position 2055778 doesn't seem to be mutated. Here are the mutated foci.Position 2056496 doesn't seem to be mutated. Here are the mutated foci.Position 2057155 doesn't seem to be mutated. Here are the mutated foci.Position 2057170 doesn't seem to be mutated. Here are the mutated foci.Position 2057702 doesn't seem to be mutated. Here are the mutated foci.Position 2063068 doesn't seem to be mutated. Here are the mutated foci.Position 2063560 doesn't seem to be mutated. Here are the mutated foci.Position 2064640 doesn't seem to be mutated. Here are the mutated foci.Position 2064974 doesn't seem to be mutated. Here are the mutated foci.Position 2065863 doesn't seem to be mutated. Here are the mutated foci.Position 2068276 doesn't seem to be mutated. Here are the mutated foci.Position 2068660 doesn't seem to be mutated. Here are the mutated foci.Position 2069325 doesn't seem to be mutated. Here are the mutated foci.Position 2071601 doesn't seem to be mutated. Here are the mutated foci.Position 2071653 doesn't seem to be mutated. Here are the mutated foci.Position 2071664 doesn't seem to be mutated. Here are the mutated foci.Position 2072224 doesn't seem to be mutated. Here are the mutated foci.Position 2075084 doesn't seem to be mutated. Here are the mutated foci.Position 2075927 doesn't seem to be mutated. Here are the mutated foci.Position 2077005 doesn't seem to be mutated. Here are the mutated foci.Position 2078006 doesn't seem to be mutated. Here are the mutated foci.Position 2078521 doesn't seem to be mutated. Here are the mutated foci.Position 2078570 doesn't seem to be mutated. Here are the mutated foci.Position 2084000 doesn't seem to be mutated. Here are the mutated foci.Position 2086807 doesn't seem to be mutated. Here are the mutated foci.Position 2086812 doesn't seem to be mutated. Here are the mutated foci.Position 2086896 doesn't seem to be mutated. Here are the mutated foci.Position 2088350 doesn't seem to be mutated. Here are the mutated foci.Position 3578101 doesn't seem to be mutated. Here are the mutated foci.Position 3581000 doesn't seem to be mutated. Here are the mutated foci.Position 3581907 doesn't seem to be mutated. Here are the mutated foci.Position 3583066 doesn't seem to be mutated. Here are the mutated foci.Position 3583906 doesn't seem to be mutated. Here are the mutated foci.Position 3584093 doesn't seem to be mutated. Here are the mutated foci.Position 3585050 doesn't seem to be mutated. Here are the mutated foci.Position 3587451 doesn't seem to be mutated. Here are the mutated foci.Position 3590146 doesn't seem to be mutated. Here are the mutated foci.Position 3592402 doesn't seem to be mutated. Here are the mutated foci.Position 3593653 doesn't seem to be mutated. Here are the mutated foci.Position 3594395 doesn't seem to be mutated. Here are the mutated foci.Position 3594566 doesn't seem to be mutated. Here are the mutated foci.Position 3595111 doesn't seem to be mutated. Here are the mutated foci.Position 3595496 doesn't seem to be mutated. Here are the mutated foci.Position 3600321 doesn't seem to be mutated. Here are the mutated foci.Position 3604850 doesn't seem to be mutated. Here are the mutated foci.Position 3605868 doesn't seem to be mutated. Here are the mutated foci.Position 3606135 doesn't seem to be mutated. Here are the mutated foci.Position 3606592 doesn't seem to be mutated. Here are the mutated foci.Position 3607640 doesn't seem to be mutated. Here are the mutated foci.Position 3609166 doesn't seem to be mutated. Here are the mutated foci.Position 3609522 doesn't seem to be mutated. Here are the mutated foci.Position 3609680 doesn't seem to be mutated. Here are the mutated foci.Position 3610113 doesn't seem to be mutated. Here are the mutated foci.Position 3610314 doesn't seem to be mutated. Here are the mutated foci.Position 3613891 doesn't seem to be mutated. Here are the mutated foci.Position 3614389 doesn't seem to be mutated. Here are the mutated foci.Position 3726876 doesn't seem to be mutated. Here are the mutated foci.Position 3730993 doesn't seem to be mutated. Here are the mutated foci.Position 3733535 doesn't seem to be mutated. Here are the mutated foci.Position 3735058 doesn't seem to be mutated. Here are the mutated foci.Position 3736246 doesn't seem to be mutated. Here are the mutated foci.Position 3742370 doesn't seem to be mutated. Here are the mutated foci.Position 3745097 doesn't seem to be mutated. Here are the mutated foci.Position 3756863 doesn't seem to be mutated. Here are the mutated foci.Position 3756867 doesn't seem to be mutated. Here are the mutated foci.Position 3757531 doesn't seem to be mutated. Here are the mutated foci.Position 3758904 doesn't seem to be mutated. Here are the mutated foci.Position 3762701 doesn't seem to be mutated. Here are the mutated foci.Position 3763198 doesn't seem to be mutated. Here are the mutated foci.Position 3764037 doesn't seem to be mutated. Here are the mutated foci.Position 3773743 doesn't seem to be mutated. Here are the mutated foci.Position 3778143 doesn't seem to be mutated. Here are the mutated foci.Position 3781265 doesn't seem to be mutated. Here are the mutated foci.Position 3783302 doesn't seem to be mutated. Here are the mutated foci.Position 3787011 doesn't seem to be mutated. Here are the mutated foci.Position 3796951 doesn't seem to be mutated. Here are the mutated foci.Position 3797330 doesn't seem to be mutated. Here are the mutated foci.Position 3800126 doesn't seem to be mutated. Here are the mutated foci.Position 3804447 doesn't seem to be mutated. Here are the mutated foci.Position 3806254 doesn't seem to be mutated. Here are the mutated foci.Position 3806677 doesn't seem to be mutated. Here are the mutated foci.Position 3808168 doesn't seem to be mutated. Here are the mutated foci.Position 3809280 doesn't seem to be mutated. Here are the mutated foci.Position 3809346 doesn't seem to be mutated. Here are the mutated foci.Position 3814423 doesn't seem to be mutated. Here are the mutated foci.Position 3820457 doesn't seem to be mutated. Here are the mutated foci.Position 3821160 doesn't seem to be mutated. Here are the mutated foci.Position 3822321 doesn't seem to be mutated. Here are the mutated foci.Position 3823892 doesn't seem to be mutated. Here are the mutated foci.Position 3824227 doesn't seem to be mutated. Here are the mutated foci.Position 3825053 doesn't seem to be mutated. Here are the mutated foci.Position 3834489 doesn't seem to be mutated. Here are the mutated foci.Position 3835195 doesn't seem to be mutated. Here are the mutated foci.Position 3835876 doesn't seem to be mutated. Here are the mutated foci.Position 3839666 doesn't seem to be mutated. Here are the mutated foci.Position 3841413 doesn't seem to be mutated. Here are the mutated foci.Position 3845121 doesn't seem to be mutated. Here are the mutated foci.Position 3845555 doesn't seem to be mutated. Here are the mutated foci.Position 3846645 doesn't seem to be mutated. Here are the mutated foci.Position 3847895 doesn't seem to be mutated. Here are the mutated foci.Position 3851727 doesn't seem to be mutated. Here are the mutated foci.Position 3852493 doesn't seem to be mutated. Here are the mutated foci.Position 3852836 doesn't seem to be mutated. Here are the mutated foci.Position 3856515 doesn't seem to be mutated. Here are the mutated foci.Position 3857552 doesn't seem to be mutated. Here are the mutated foci.Position 3863854 doesn't seem to be mutated. Here are the mutated foci.Position 3864021 doesn't seem to be mutated. Here are the mutated foci.Position 3864231 doesn't seem to be mutated. Here are the mutated foci.Position 3865104 doesn't seem to be mutated. Here are the mutated foci.Position 3875651 doesn't seem to be mutated. Here are the mutated foci.Position 3881779 doesn't seem to be mutated. Here are the mutated foci.Position 3884444 doesn't seem to be mutated. Here are the mutated foci.Position 13918155 doesn't seem to be mutated. Here are the mutated foci.Position 13920885 doesn't seem to be mutated. Here are the mutated foci.Position 13929618 doesn't seem to be mutated. Here are the mutated foci.Position 13932918 doesn't seem to be mutated. Here are the mutated foci.Position 13933774 doesn't seem to be mutated. Here are the mutated foci.Position 13935293 doesn't seem to be mutated. Here are the mutated foci.Position 13935604 doesn't seem to be mutated. Here are the mutated foci.Position 13937449 doesn't seem to be mutated. Here are the mutated foci.Position 13937772 doesn't seem to be mutated. Here are the mutated foci.Position 13938321 doesn't seem to be mutated. Here are the mutated foci.Position 13943216 doesn't seem to be mutated. Here are the mutated foci.Position 13950022 doesn't seem to be mutated. Here are the mutated foci.Position 13952548 doesn't seem to be mutated. Here are the mutated foci.Position 13956957 doesn't seem to be mutated. Here are the mutated foci.Position 23606536 doesn't seem to be mutated. Here are the mutated foci.Position 23607917 doesn't seem to be mutated. Here are the mutated foci.Position 23608571 doesn't seem to be mutated. Here are the mutated foci.Position 23609580 doesn't seem to be mutated. Here are the mutated foci.Position 23614800 doesn't seem to be mutated. Here are the mutated foci.Position 23615492 doesn't seem to be mutated. Here are the mutated foci.Position 23617977 doesn't seem to be mutated. Here are the mutated foci.Position 23619987 doesn't seem to be mutated. Here are the mutated foci.Position 23621097 doesn't seem to be mutated. Here are the mutated foci.Position 23622046 doesn't seem to be mutated. Here are the mutated foci.Position 23623933 doesn't seem to be mutated. Here are the mutated foci.Position 23629194 doesn't seem to be mutated. Here are the mutated foci.Position 23632207 doesn't seem to be mutated. Here are the mutated foci.Position 23636665 doesn't seem to be mutated. Here are the mutated foci.Position 50742402 doesn't seem to be mutated. Here are the mutated foci.Position 50745471 doesn't seem to be mutated. Here are the mutated foci.Position 50749381 doesn't seem to be mutated. Here are the mutated foci.Position 50750512 doesn't seem to be mutated. Here are the mutated foci.Position 50760204 doesn't seem to be mutated. Here are the mutated foci.Position 50772244 doesn't seem to be mutated. Here are the mutated foci.Position 50773427 doesn't seem to be mutated. Here are the mutated foci.Position 50773927 doesn't seem to be mutated. Here are the mutated foci.Position 50781175 doesn't seem to be mutated. Here are the mutated foci.Position 50788391 doesn't seem to be mutated. Here are the mutated foci.Position 50792318 doesn't seem to be mutated. Here are the mutated foci.Position 50801823 doesn't seem to be mutated. Here are the mutated foci.Position 68732842 doesn't seem to be mutated. Here are the mutated foci.Position 68736743 doesn't seem to be mutated. Here are the mutated foci.Position 68737113 doesn't seem to be mutated. Here are the mutated foci.Position 68740216 doesn't seem to be mutated. Here are the mutated foci.Position 68740267 doesn't seem to be mutated. Here are the mutated foci.Position 68746196 doesn't seem to be mutated. Here are the mutated foci.Position 68750362 doesn't seem to be mutated. Here are the mutated foci.Position 68755113 doesn't seem to be mutated. Here are the mutated foci.Position 68755851 doesn't seem to be mutated. Here are the mutated foci.Position 68756095 doesn't seem to be mutated. Here are the mutated foci.Position 68756480 doesn't seem to be mutated. Here are the mutated foci.Position 68757183 doesn't seem to be mutated. Here are the mutated foci.Position 68757608 doesn't seem to be mutated. Here are the mutated foci.Position 68765478 doesn't seem to be mutated. Here are the mutated foci.Position 68767049 doesn't seem to be mutated. Here are the mutated foci.Position 68770033 doesn't seem to be mutated. Here are the mutated foci.Position 68772311 doesn't seem to be mutated. Here are the mutated foci.Position 68772430 doesn't seem to be mutated. Here are the mutated foci.Position 68778802 doesn't seem to be mutated. Here are the mutated foci.Position 68779430 doesn't seem to be mutated. Here are the mutated foci.Position 68781618 doesn't seem to be mutated. Here are the mutated foci.Position 68789564 doesn't seem to be mutated. Here are the mutated foci.Position 68790160 doesn't seem to be mutated. Here are the mutated foci.Position 68792031 doesn't seem to be mutated. Here are the mutated foci.Position 68795336 doesn't seem to be mutated. Here are the mutated foci.Position 68796049 doesn't seem to be mutated. Here are the mutated foci.Position 68799693 doesn't seem to be mutated. Here are the mutated foci.Position 68801877 doesn't seem to be mutated. Here are the mutated foci.Position 68802469 doesn't seem to be mutated. Here are the mutated foci.Position 68807600 doesn't seem to be mutated. Here are the mutated foci.Position 68809792 doesn't seem to be mutated. Here are the mutated foci.Position 68810452 doesn't seem to be mutated. Here are the mutated foci.Position 68811751 doesn't seem to be mutated. Here are the mutated foci.Position 68814755 doesn't seem to be mutated. Here are the mutated foci.Position 68814994 doesn't seem to be mutated. Here are the mutated foci.Position 68816046 doesn't seem to be mutated. Here are the mutated foci.Position 68816547 doesn't seem to be mutated. Here are the mutated foci.Position 68817617 doesn't seem to be mutated. Here are the mutated foci.Position 68820030 doesn't seem to be mutated. Here are the mutated foci.Position 68826581 doesn't seem to be mutated. Here are the mutated foci.Position 68826824 doesn't seem to be mutated. Here are the mutated foci.Position 68827260 doesn't seem to be mutated. Here are the mutated foci.Position 68828210 doesn't seem to be mutated. Here are the mutated foci.Position 68838062 doesn't seem to be mutated. Here are the mutated foci.Position 68839310 doesn't seem to be mutated. Here are the mutated foci.Position 89750477 doesn't seem to be mutated. Here are the mutated foci.Position 89755965 doesn't seem to be mutated. Here are the mutated foci.Position 89763665 doesn't seem to be mutated. Here are the mutated foci.Position 89764336 doesn't seem to be mutated. Here are the mutated foci.Position 89765950 doesn't seem to be mutated. Here are the mutated foci.Position 89767256 doesn't seem to be mutated. Here are the mutated foci.Position 89767367 doesn't seem to be mutated. Here are the mutated foci.Position 89769298 doesn't seem to be mutated. Here are the mutated foci.Position 89769715 doesn't seem to be mutated. Here are the mutated foci.Position 89770861 doesn't seem to be mutated. Here are the mutated foci.Position 89771684 doesn't seem to be mutated. Here are the mutated foci.Position 89774810 doesn't seem to be mutated. Here are the mutated foci.Position 89775460 doesn't seem to be mutated. Here are the mutated foci.Position 89777759 doesn't seem to be mutated. Here are the mutated foci.Position 89777889 doesn't seem to be mutated. Here are the mutated foci.Position 89781654 doesn't seem to be mutated. Here are the mutated foci.Position 89782757 doesn't seem to be mutated. Here are the mutated foci.Position 89783033 doesn't seem to be mutated. Here are the mutated foci.Position 89783291 doesn't seem to be mutated. Here are the mutated foci.Position 89783567 doesn't seem to be mutated. Here are the mutated foci.Position 89789493 doesn't seem to be mutated. Here are the mutated foci.Position 89789808 doesn't seem to be mutated. Here are the mutated foci.Position 89790459 doesn't seem to be mutated. Here are the mutated foci.Position 89790718 doesn't seem to be mutated. Here are the mutated foci.Position 89791769 doesn't seem to be mutated. Here are the mutated foci.Position 89794276 doesn't seem to be mutated. Here are the mutated foci.Position 89794654 doesn't seem to be mutated. Here are the mutated foci.Position 89795510 doesn't seem to be mutated. Here are the mutated foci.Position 89795554 doesn't seem to be mutated. Here are the mutated foci.Position 89796334 doesn't seem to be mutated. Here are the mutated foci.Position 89796533 doesn't seem to be mutated. Here are the mutated foci.Position 89797549 doesn't seem to be mutated. Here are the mutated foci.Position 89800181 doesn't seem to be mutated. Here are the mutated foci.Position 89803228 doesn't seem to be mutated. Here are the mutated foci.Position 89804228 doesn't seem to be mutated. Here are the mutated foci.Position 89811635 doesn't seem to be mutated. Here are the mutated foci.Position 89813436 doesn't seem to be mutated. Here are the mutated foci.Position 89817124 doesn't seem to be mutated. Here are the mutated foci.Position 89817151 doesn't seem to be mutated. Here are the mutated foci.Position 89820412 doesn't seem to be mutated. Here are the mutated foci.Position 89821526 doesn't seem to be mutated. Here are the mutated foci.Position 7664203 doesn't seem to be mutated. Here are the mutated foci.Position 7666171 doesn't seem to be mutated. Here are the mutated foci.Position 7666915 doesn't seem to be mutated. Here are the mutated foci.Position 7667131 doesn't seem to be mutated. Here are the mutated foci.Position 7667737 doesn't seem to be mutated. Here are the mutated foci.Position 7670445 doesn't seem to be mutated. Here are the mutated foci.Position 7670918 doesn't seem to be mutated. Here are the mutated foci.Position 7673856 doesn't seem to be mutated. Here are the mutated foci.Position 7674894 doesn't seem to be mutated. Here are the mutated foci.Position 7675071 doesn't seem to be mutated. Here are the mutated foci.Position 7675195 doesn't seem to be mutated. Here are the mutated foci.Position 7675914 doesn't seem to be mutated. Here are the mutated foci.Position 7677392 doesn't seem to be mutated. Here are the mutated foci.Position 7678824 doesn't seem to be mutated. Here are the mutated foci.Position 7679566 doesn't seem to be mutated. Here are the mutated foci.Position 7680215 doesn't seem to be mutated. Here are the mutated foci.Position 7681303 doesn't seem to be mutated. Here are the mutated foci.Position 7681736 doesn't seem to be mutated. Here are the mutated foci.Position 7683593 doesn't seem to be mutated. Here are the mutated foci.Position 7693717 doesn't seem to be mutated. Here are the mutated foci.Position 7698961 doesn't seem to be mutated. Here are the mutated foci.Position 7699831 doesn't seem to be mutated. Here are the mutated foci.Position 7703479 doesn't seem to be mutated. Here are the mutated foci.Position 17207866 doesn't seem to be mutated. Here are the mutated foci.Position 17210263 doesn't seem to be mutated. Here are the mutated foci.Position 17213167 doesn't seem to be mutated. Here are the mutated foci.Position 17224784 doesn't seem to be mutated. Here are the mutated foci.Position 17226667 doesn't seem to be mutated. Here are the mutated foci.Position 17228279 doesn't seem to be mutated. Here are the mutated foci.Position 17232493 doesn't seem to be mutated. Here are the mutated foci.Position 17233471 doesn't seem to be mutated. Here are the mutated foci.Position 17238152 doesn't seem to be mutated. Here are the mutated foci.Position 17238913 doesn't seem to be mutated. Here are the mutated foci.Position 17239385 doesn't seem to be mutated. Here are the mutated foci.Position 17241077 doesn't seem to be mutated. Here are the mutated foci.Position 31101971 doesn't seem to be mutated. Here are the mutated foci.Position 31102310 doesn't seem to be mutated. Here are the mutated foci.Position 31104020 doesn't seem to be mutated. Here are the mutated foci.Position 31105911 doesn't seem to be mutated. Here are the mutated foci.Position 31109847 doesn't seem to be mutated. Here are the mutated foci.Position 31111801 doesn't seem to be mutated. Here are the mutated foci.Position 31115105 doesn't seem to be mutated. Here are the mutated foci.Position 31116707 doesn't seem to be mutated. Here are the mutated foci.Position 31120728 doesn't seem to be mutated. Here are the mutated foci.Position 31125318 doesn't seem to be mutated. Here are the mutated foci.Position 31131018 doesn't seem to be mutated. Here are the mutated foci.Position 31135716 doesn't seem to be mutated. Here are the mutated foci.Position 31136068 doesn't seem to be mutated. Here are the mutated foci.Position 31140613 doesn't seem to be mutated. Here are the mutated foci.Position 31143038 doesn't seem to be mutated. Here are the mutated foci.Position 31146366 doesn't seem to be mutated. Here are the mutated foci.Position 31153906 doesn't seem to be mutated. Here are the mutated foci.Position 31157231 doesn't seem to be mutated. Here are the mutated foci.Position 31159316 doesn't seem to be mutated. Here are the mutated foci.Position 31161642 doesn't seem to be mutated. Here are the mutated foci.Position 31163626 doesn't seem to be mutated. Here are the mutated foci.Position 31164460 doesn't seem to be mutated. Here are the mutated foci.Position 31166323 doesn't seem to be mutated. Here are the mutated foci.Position 31167733 doesn't seem to be mutated. Here are the mutated foci.Position 31169632 doesn't seem to be mutated. Here are the mutated foci.Position 31179797 doesn't seem to be mutated. Here are the mutated foci.Position 31181380 doesn't seem to be mutated. Here are the mutated foci.Position 31182206 doesn't seem to be mutated. Here are the mutated foci.Position 31183945 doesn't seem to be mutated. Here are the mutated foci.Position 31186220 doesn't seem to be mutated. Here are the mutated foci.Position 31193152 doesn't seem to be mutated. Here are the mutated foci.Position 31195462 doesn't seem to be mutated. Here are the mutated foci.Position 31196476 doesn't seem to be mutated. Here are the mutated foci.Position 31205187 doesn't seem to be mutated. Here are the mutated foci.Position 31208806 doesn't seem to be mutated. Here are the mutated foci.Position 31209060 doesn't seem to be mutated. Here are the mutated foci.Position 31220675 doesn't seem to be mutated. Here are the mutated foci.Position 31223635 doesn't seem to be mutated. Here are the mutated foci.Position 31224862 doesn't seem to be mutated. Here are the mutated foci.Position 31224993 doesn't seem to be mutated. Here are the mutated foci.Position 31227397 doesn't seem to be mutated. Here are the mutated foci.Position 31227858 doesn't seem to be mutated. Here are the mutated foci.Position 31232081 doesn't seem to be mutated. Here are the mutated foci.Position 31232487 doesn't seem to be mutated. Here are the mutated foci.Position 31235841 doesn't seem to be mutated. Here are the mutated foci.Position 31236189 doesn't seem to be mutated. Here are the mutated foci.Position 31238120 doesn't seem to be mutated. Here are the mutated foci.Position 31243762 doesn't seem to be mutated. Here are the mutated foci.Position 31248440 doesn't seem to be mutated. Here are the mutated foci.Position 31248910 doesn't seem to be mutated. Here are the mutated foci.Position 31252482 doesn't seem to be mutated. Here are the mutated foci.Position 31254822 doesn't seem to be mutated. Here are the mutated foci.Position 31257689 doesn't seem to be mutated. Here are the mutated foci.Position 31260068 doesn't seem to be mutated. Here are the mutated foci.Position 31271145 doesn't seem to be mutated. Here are the mutated foci.Position 31273347 doesn't seem to be mutated. Here are the mutated foci.Position 31273412 doesn't seem to be mutated. Here are the mutated foci.Position 31273714 doesn't seem to be mutated. Here are the mutated foci.Position 31274767 doesn't seem to be mutated. Here are the mutated foci.Position 31275243 doesn't seem to be mutated. Here are the mutated foci.Position 31276846 doesn't seem to be mutated. Here are the mutated foci.Position 31277766 doesn't seem to be mutated. Here are the mutated foci.Position 31278984 doesn't seem to be mutated. Here are the mutated foci.Position 31281071 doesn't seem to be mutated. Here are the mutated foci.Position 31290527 doesn't seem to be mutated. Here are the mutated foci.Position 31299152 doesn't seem to be mutated. Here are the mutated foci.Position 31301087 doesn't seem to be mutated. Here are the mutated foci.Position 31302677 doesn't seem to be mutated. Here are the mutated foci.Position 31303487 doesn't seem to be mutated. Here are the mutated foci.Position 31314990 doesn't seem to be mutated. Here are the mutated foci.Position 31322572 doesn't seem to be mutated. Here are the mutated foci.Position 31337936 doesn't seem to be mutated. Here are the mutated foci.Position 31345376 doesn't seem to be mutated. Here are the mutated foci.Position 31354112 doesn't seem to be mutated. Here are the mutated foci.Position 31355821 doesn't seem to be mutated. Here are the mutated foci.Position 31360578 doesn't seem to be mutated. Here are the mutated foci.Position 31360852 doesn't seem to be mutated. Here are the mutated foci.Position 31361060 doesn't seem to be mutated. Here are the mutated foci.Position 31365489 doesn't seem to be mutated. Here are the mutated foci.Position 31366683 doesn't seem to be mutated. Here are the mutated foci.Position 31370363 doesn't seem to be mutated. Here are the mutated foci.Position 31372582 doesn't seem to be mutated. Here are the mutated foci.Position 31373820 doesn't seem to be mutated. Here are the mutated foci.Position 31374371 doesn't seem to be mutated. Here are the mutated foci.Position 31374683 doesn't seem to be mutated. Here are the mutated foci.Position 31375303 doesn't seem to be mutated. Here are the mutated foci.Position 31375438 doesn't seem to be mutated. Here are the mutated foci.Position 31378387 doesn't seem to be mutated. Here are the mutated foci.Position 31383336 doesn't seem to be mutated. Here are the mutated foci.Position 31384035 doesn't seem to be mutated. Here are the mutated foci.Position 35100649 doesn't seem to be mutated. Here are the mutated foci.Position 35102263 doesn't seem to be mutated. Here are the mutated foci.Position 35105728 doesn't seem to be mutated. Here are the mutated foci.Position 35107178 doesn't seem to be mutated. Here are the mutated foci.Position 35108581 doesn't seem to be mutated. Here are the mutated foci.Position 35114452 doesn't seem to be mutated. Here are the mutated foci.Position 35114627 doesn't seem to be mutated. Here are the mutated foci.Position 35116969 doesn't seem to be mutated. Here are the mutated foci.Position 35119512 doesn't seem to be mutated. Here are the mutated foci.Position 35119913 doesn't seem to be mutated. Here are the mutated foci.Position 39202154 doesn't seem to be mutated. Here are the mutated foci.Position 39204207 doesn't seem to be mutated. Here are the mutated foci.Position 39204261 doesn't seem to be mutated. Here are the mutated foci.Position 39204588 doesn't seem to be mutated. Here are the mutated foci.Position 39205706 doesn't seem to be mutated. Here are the mutated foci.Position 39207553 doesn't seem to be mutated. Here are the mutated foci.Position 40622635 doesn't seem to be mutated. Here are the mutated foci.Position 40622715 doesn't seem to be mutated. Here are the mutated foci.Position 40625896 doesn't seem to be mutated. Here are the mutated foci.Position 40626508 doesn't seem to be mutated. Here are the mutated foci.Position 40626928 doesn't seem to be mutated. Here are the mutated foci.Position 40627422 doesn't seem to be mutated. Here are the mutated foci.Position 40628578 doesn't seem to be mutated. Here are the mutated foci.Position 40641236 doesn't seem to be mutated. Here are the mutated foci.Position 40645751 doesn't seem to be mutated. Here are the mutated foci.Position 40647285 doesn't seem to be mutated. Here are the mutated foci.Position 40648649 doesn't seem to be mutated. Here are the mutated foci.Position 40649314 doesn't seem to be mutated. Here are the mutated foci.Position 40650696 doesn't seem to be mutated. Here are the mutated foci.Position 40651311 doesn't seem to be mutated. Here are the mutated foci.Position 42314893 doesn't seem to be mutated. Here are the mutated foci.Position 42316541 doesn't seem to be mutated. Here are the mutated foci.Position 42321206 doesn't seem to be mutated. Here are the mutated foci.Position 42324090 doesn't seem to be mutated. Here are the mutated foci.Position 42327926 doesn't seem to be mutated. Here are the mutated foci.Position 42331191 doesn't seem to be mutated. Here are the mutated foci.Position 42331921 doesn't seem to be mutated. Here are the mutated foci.Position 42334700 doesn't seem to be mutated. Here are the mutated foci.Position 42338608 doesn't seem to be mutated. Here are the mutated foci.Position 42338714 doesn't seem to be mutated. Here are the mutated foci.Position 42339792 doesn't seem to be mutated. Here are the mutated foci.Position 42342161 doesn't seem to be mutated. Here are the mutated foci.Position 42345457 doesn't seem to be mutated. Here are the mutated foci.Position 42352268 doesn't seem to be mutated. Here are the mutated foci.Position 42352552 doesn't seem to be mutated. Here are the mutated foci.Position 42361953 doesn't seem to be mutated. Here are the mutated foci.Position 42362457 doesn't seem to be mutated. Here are the mutated foci.Position 42362594 doesn't seem to be mutated. Here are the mutated foci.Position 42372810 doesn't seem to be mutated. Here are the mutated foci.Position 42373126 doesn't seem to be mutated. Here are the mutated foci.Position 42373880 doesn't seem to be mutated. Here are the mutated foci.Position 42375977 doesn't seem to be mutated. Here are the mutated foci.Position 42377704 doesn't seem to be mutated. Here are the mutated foci.Position 42378104 doesn't seem to be mutated. Here are the mutated foci.Position 42386584 doesn't seem to be mutated. Here are the mutated foci.Position 42387258 doesn't seem to be mutated. Here are the mutated foci.Position 42388517 doesn't seem to be mutated. Here are the mutated foci.Position 42392656 doesn't seem to be mutated. Here are the mutated foci.Position 42392987 doesn't seem to be mutated. Here are the mutated foci.Position 43046213 doesn't seem to be mutated. Here are the mutated foci.Position 43053212 doesn't seem to be mutated. Here are the mutated foci.Position 43055795 doesn't seem to be mutated. Here are the mutated foci.Position 43062394 doesn't seem to be mutated. Here are the mutated foci.Position 43065271 doesn't seem to be mutated. Here are the mutated foci.Position 43067941 doesn't seem to be mutated. Here are the mutated foci.Position 43071984 doesn't seem to be mutated. Here are the mutated foci.Position 43073998 doesn't seem to be mutated. Here are the mutated foci.Position 43075169 doesn't seem to be mutated. Here are the mutated foci.Position 43084709 doesn't seem to be mutated. Here are the mutated foci.Position 43085846 doesn't seem to be mutated. Here are the mutated foci.Position 43088628 doesn't seem to be mutated. Here are the mutated foci.Position 43089668 doesn't seem to be mutated. Here are the mutated foci.Position 43092345 doesn't seem to be mutated. Here are the mutated foci.Position 43093731 doesn't seem to be mutated. Here are the mutated foci.Position 43094715 doesn't seem to be mutated. Here are the mutated foci.Position 43101665 doesn't seem to be mutated. Here are the mutated foci.Position 43102306 doesn't seem to be mutated. Here are the mutated foci.Position 43102660 doesn't seem to be mutated. Here are the mutated foci.Position 43103322 doesn't seem to be mutated. Here are the mutated foci.Position 43103962 doesn't seem to be mutated. Here are the mutated foci.Position 43109289 doesn't seem to be mutated. Here are the mutated foci.Position 43115401 doesn't seem to be mutated. Here are the mutated foci.Position 43115453 doesn't seem to be mutated. Here are the mutated foci.Position 43116639 doesn't seem to be mutated. Here are the mutated foci.Position 43118666 doesn't seem to be mutated. Here are the mutated foci.Position 43124990 doesn't seem to be mutated. Here are the mutated foci.Position 43125158 doesn't seem to be mutated. Here are the mutated foci.Position 43126825 doesn't seem to be mutated. Here are the mutated foci.Position 43153411 doesn't seem to be mutated. Here are the mutated foci.Position 44069636 doesn't seem to be mutated. Here are the mutated foci.Position 44075165 doesn't seem to be mutated. Here are the mutated foci.Position 44075286 doesn't seem to be mutated. Here are the mutated foci.Position 44075676 doesn't seem to be mutated. Here are the mutated foci.Position 44076074 doesn't seem to be mutated. Here are the mutated foci.Position 48725126 doesn't seem to be mutated. Here are the mutated foci.Position 48728562 doesn't seem to be mutated. Here are the mutated foci.Position 48729235 doesn't seem to be mutated. Here are the mutated foci.Position 48729283 doesn't seem to be mutated. Here are the mutated foci.Position 48729687 doesn't seem to be mutated. Here are the mutated foci.Position 48732306 doesn't seem to be mutated. Here are the mutated foci.Position 48733422 doesn't seem to be mutated. Here are the mutated foci.Position 58695831 doesn't seem to be mutated. Here are the mutated foci.Position 58696874 doesn't seem to be mutated. Here are the mutated foci.Position 58698002 doesn't seem to be mutated. Here are the mutated foci.Position 58699298 doesn't seem to be mutated. Here are the mutated foci.Position 58702238 doesn't seem to be mutated. Here are the mutated foci.Position 58709224 doesn't seem to be mutated. Here are the mutated foci.Position 58711769 doesn't seem to be mutated. Here are the mutated foci.Position 58713480 doesn't seem to be mutated. Here are the mutated foci.Position 58716963 doesn't seem to be mutated. Here are the mutated foci.Position 58717079 doesn't seem to be mutated. Here are the mutated foci.Position 58726830 doesn't seem to be mutated. Here are the mutated foci.Position 58727826 doesn't seem to be mutated. Here are the mutated foci.Position 58727908 doesn't seem to be mutated. Here are the mutated foci.Position 58729201 doesn't seem to be mutated. Here are the mutated foci.Position 58729745 doesn't seem to be mutated. Here are the mutated foci.Position 58730211 doesn't seem to be mutated. Here are the mutated foci.Position 58731207 doesn't seem to be mutated. Here are the mutated foci.Position 58733254 doesn't seem to be mutated. Here are the mutated foci.Position 58735535 doesn't seem to be mutated. Here are the mutated foci.Position 58735810 doesn't seem to be mutated. Here are the mutated foci.Position 58739930 doesn't seem to be mutated. Here are the mutated foci.Position 58991828 doesn't seem to be mutated. Here are the mutated foci.Position 58994240 doesn't seem to be mutated. Here are the mutated foci.Position 58994313 doesn't seem to be mutated. Here are the mutated foci.Position 58995858 doesn't seem to be mutated. Here are the mutated foci.Position 58998074 doesn't seem to be mutated. Here are the mutated foci.Position 59009564 doesn't seem to be mutated. Here are the mutated foci.Position 59010206 doesn't seem to be mutated. Here are the mutated foci.Position 59011801 doesn't seem to be mutated. Here are the mutated foci.Position 59012815 doesn't seem to be mutated. Here are the mutated foci.Position 59013499 doesn't seem to be mutated. Here are the mutated foci.Position 59014468 doesn't seem to be mutated. Here are the mutated foci.Position 59017516 doesn't seem to be mutated. Here are the mutated foci.Position 59030429 doesn't seem to be mutated. Here are the mutated foci.Position 59035071 doesn't seem to be mutated. Here are the mutated foci.Position 59039642 doesn't seem to be mutated. Here are the mutated foci.Position 59042158 doesn't seem to be mutated. Here are the mutated foci.Position 59043560 doesn't seem to be mutated. Here are the mutated foci.Position 59045365 doesn't seem to be mutated. Here are the mutated foci.Position 59049772 doesn't seem to be mutated. Here are the mutated foci.Position 59049965 doesn't seem to be mutated. Here are the mutated foci.Position 59049997 doesn't seem to be mutated. Here are the mutated foci.Position 59051613 doesn't seem to be mutated. Here are the mutated foci.Position 59053186 doesn't seem to be mutated. Here are the mutated foci.Position 59054099 doesn't seem to be mutated. Here are the mutated foci.Position 59055738 doesn't seem to be mutated. Here are the mutated foci.Position 59056153 doesn't seem to be mutated. Here are the mutated foci.Position 59056339 doesn't seem to be mutated. Here are the mutated foci.Position 59057133 doesn't seem to be mutated. Here are the mutated foci.Position 59064054 doesn't seem to be mutated. Here are the mutated foci.Position 59069923 doesn't seem to be mutated. Here are the mutated foci.Position 59078064 doesn't seem to be mutated. Here are the mutated foci.Position 59079387 doesn't seem to be mutated. Here are the mutated foci.Position 59081374 doesn't seem to be mutated. Here are the mutated foci.Position 59083973 doesn't seem to be mutated. Here are the mutated foci.Position 59084226 doesn't seem to be mutated. Here are the mutated foci.Position 59084763 doesn't seem to be mutated. Here are the mutated foci.Position 59087192 doesn't seem to be mutated. Here are the mutated foci.Position 59088630 doesn't seem to be mutated. Here are the mutated foci.Position 59093097 doesn't seem to be mutated. Here are the mutated foci.Position 59098166 doesn't seem to be mutated. Here are the mutated foci.Position 59098235 doesn't seem to be mutated. Here are the mutated foci.Position 59098247 doesn't seem to be mutated. Here are the mutated foci.Position 59099238 doesn't seem to be mutated. Here are the mutated foci.Position 59099270 doesn't seem to be mutated. Here are the mutated foci.Position 59100478 doesn't seem to be mutated. Here are the mutated foci.Position 59102355 doesn't seem to be mutated. Here are the mutated foci.Position 59104511 doesn't seem to be mutated. Here are the mutated foci.Position 59105023 doesn't seem to be mutated. Here are the mutated foci.Position 59107879 doesn't seem to be mutated. Here are the mutated foci.Position 59108037 doesn't seem to be mutated. Here are the mutated foci.Position 59108852 doesn't seem to be mutated. Here are the mutated foci.Position 61677622 doesn't seem to be mutated. Here are the mutated foci.Position 61679294 doesn't seem to be mutated. Here are the mutated foci.Position 61680174 doesn't seem to be mutated. Here are the mutated foci.Position 61683426 doesn't seem to be mutated. Here are the mutated foci.Position 61685633 doesn't seem to be mutated. Here are the mutated foci.Position 61687270 doesn't seem to be mutated. Here are the mutated foci.Position 61690125 doesn't seem to be mutated. Here are the mutated foci.Position 61691195 doesn't seem to be mutated. Here are the mutated foci.Position 61695342 doesn't seem to be mutated. Here are the mutated foci.Position 61696902 doesn't seem to be mutated. Here are the mutated foci.Position 61697949 doesn't seem to be mutated. Here are the mutated foci.Position 61699293 doesn't seem to be mutated. Here are the mutated foci.Position 61702079 doesn't seem to be mutated. Here are the mutated foci.Position 61702103 doesn't seem to be mutated. Here are the mutated foci.Position 61702623 doesn't seem to be mutated. Here are the mutated foci.Position 61703002 doesn't seem to be mutated. Here are the mutated foci.Position 61703340 doesn't seem to be mutated. Here are the mutated foci.Position 61711606 doesn't seem to be mutated. Here are the mutated foci.Position 61713387 doesn't seem to be mutated. Here are the mutated foci.Position 61719333 doesn't seem to be mutated. Here are the mutated foci.Position 61730098 doesn't seem to be mutated. Here are the mutated foci.Position 61732855 doesn't seem to be mutated. Here are the mutated foci.Position 61733752 doesn't seem to be mutated. Here are the mutated foci.Position 61736772 doesn't seem to be mutated. Here are the mutated foci.Position 61737625 doesn't seem to be mutated. Here are the mutated foci.Position 61738978 doesn't seem to be mutated. Here are the mutated foci.Position 61739599 doesn't seem to be mutated. Here are the mutated foci.Position 61740156 doesn't seem to be mutated. Here are the mutated foci.Position 61744662 doesn't seem to be mutated. Here are the mutated foci.Position 61746066 doesn't seem to be mutated. Here are the mutated foci.Position 61750075 doesn't seem to be mutated. Here are the mutated foci.Position 61752983 doesn't seem to be mutated. Here are the mutated foci.Position 61755867 doesn't seem to be mutated. Here are the mutated foci.Position 61761788 doesn't seem to be mutated. Here are the mutated foci.Position 61761933 doesn't seem to be mutated. Here are the mutated foci.Position 61763327 doesn't seem to be mutated. Here are the mutated foci.Position 61770416 doesn't seem to be mutated. Here are the mutated foci.Position 61775775 doesn't seem to be mutated. Here are the mutated foci.Position 61779111 doesn't seem to be mutated. Here are the mutated foci.Position 61783938 doesn't seem to be mutated. Here are the mutated foci.Position 61784869 doesn't seem to be mutated. Here are the mutated foci.Position 61790148 doesn't seem to be mutated. Here are the mutated foci.Position 61792799 doesn't seem to be mutated. Here are the mutated foci.Position 61796023 doesn't seem to be mutated. Here are the mutated foci.Position 61796130 doesn't seem to be mutated. Here are the mutated foci.Position 61799231 doesn't seem to be mutated. Here are the mutated foci.Position 61805565 doesn't seem to be mutated. Here are the mutated foci.Position 61806606 doesn't seem to be mutated. Here are the mutated foci.Position 61812031 doesn't seem to be mutated. Here are the mutated foci.Position 61827185 doesn't seem to be mutated. Here are the mutated foci.Position 61829345 doesn't seem to be mutated. Here are the mutated foci.Position 61836823 doesn't seem to be mutated. Here are the mutated foci.Position 61837259 doesn't seem to be mutated. Here are the mutated foci.Position 61839446 doesn't seem to be mutated. Here are the mutated foci.Position 61842631 doesn't seem to be mutated. Here are the mutated foci.Position 61844428 doesn't seem to be mutated. Here are the mutated foci.Position 61846915 doesn't seem to be mutated. Here are the mutated foci.Position 61847098 doesn't seem to be mutated. Here are the mutated foci.Position 61847896 doesn't seem to be mutated. Here are the mutated foci.Position 61848159 doesn't seem to be mutated. Here are the mutated foci.Position 61853873 doesn't seem to be mutated. Here are the mutated foci.Position 61856405 doesn't seem to be mutated. Here are the mutated foci.Position 61856720 doesn't seem to be mutated. Here are the mutated foci.Position 61857663 doesn't seem to be mutated. Here are the mutated foci.Position 61859192 doesn't seem to be mutated. Here are the mutated foci.Position 61860504 doesn't seem to be mutated. Here are the mutated foci.Position 61861169 doesn't seem to be mutated. Here are the mutated foci.Position 65527791 doesn't seem to be mutated. Here are the mutated foci.Position 65528523 doesn't seem to be mutated. Here are the mutated foci.Position 65533488 doesn't seem to be mutated. Here are the mutated foci.Position 65537186 doesn't seem to be mutated. Here are the mutated foci.Position 65548460 doesn't seem to be mutated. Here are the mutated foci.Position 65549915 doesn't seem to be mutated. Here are the mutated foci.Position 65551837 doesn't seem to be mutated. Here are the mutated foci.Position 65554895 doesn't seem to be mutated. Here are the mutated foci.Position 65560193 doesn't seem to be mutated. Here are the mutated foci.Position 65561458 doesn't seem to be mutated. Here are the mutated foci.Position 65564312 doesn't seem to be mutated. Here are the mutated foci.Position 65564730 doesn't seem to be mutated. Here are the mutated foci.Position 68506784 doesn't seem to be mutated. Here are the mutated foci.Position 68506859 doesn't seem to be mutated. Here are the mutated foci.Position 68507398 doesn't seem to be mutated. Here are the mutated foci.Position 68509659 doesn't seem to be mutated. Here are the mutated foci.Position 68511563 doesn't seem to be mutated. Here are the mutated foci.Position 68511869 doesn't seem to be mutated. Here are the mutated foci.Position 68512377 doesn't seem to be mutated. Here are the mutated foci.Position 68513021 doesn't seem to be mutated. Here are the mutated foci.Position 68514660 doesn't seem to be mutated. Here are the mutated foci.Position 68516857 doesn't seem to be mutated. Here are the mutated foci.Position 68522196 doesn't seem to be mutated. Here are the mutated foci.Position 68524717 doesn't seem to be mutated. Here are the mutated foci.Position 68530796 doesn't seem to be mutated. Here are the mutated foci.Position 68532189 doesn't seem to be mutated. Here are the mutated foci.Position 68534066 doesn't seem to be mutated. Here are the mutated foci.Position 68538023 doesn't seem to be mutated. Here are the mutated foci.Position 76471437 doesn't seem to be mutated. Here are the mutated foci.Position 76471824 doesn't seem to be mutated. Here are the mutated foci.Position 76474188 doesn't seem to be mutated. Here are the mutated foci.Position 76475639 doesn't seem to be mutated. Here are the mutated foci.Position 76476066 doesn't seem to be mutated. Here are the mutated foci.Position 76477175 doesn't seem to be mutated. Here are the mutated foci.Position 76477781 doesn't seem to be mutated. Here are the mutated foci.Position 76478093 doesn't seem to be mutated. Here are the mutated foci.Position 76479283 doesn't seem to be mutated. Here are the mutated foci.Position 76485651 doesn't seem to be mutated. Here are the mutated foci.Position 76487613 doesn't seem to be mutated. Here are the mutated foci.Position 76488124 doesn't seem to be mutated. Here are the mutated foci.Position 76491975 doesn't seem to be mutated. Here are the mutated foci.Position 76492325 doesn't seem to be mutated. Here are the mutated foci.Position 76497903 doesn't seem to be mutated. Here are the mutated foci.Position 76498278 doesn't seem to be mutated. Here are the mutated foci.Position 76502047 doesn't seem to be mutated. Here are the mutated foci.Position 76505942 doesn't seem to be mutated. Here are the mutated foci.Position 51031401 doesn't seem to be mutated. Here are the mutated foci.Position 51034788 doesn't seem to be mutated. Here are the mutated foci.Position 51036080 doesn't seem to be mutated. Here are the mutated foci.Position 51047296 doesn't seem to be mutated. Here are the mutated foci.Position 51048301 doesn't seem to be mutated. Here are the mutated foci.Position 51048706 doesn't seem to be mutated. Here are the mutated foci.Position 51051523 doesn't seem to be mutated. Here are the mutated foci.Position 51052059 doesn't seem to be mutated. Here are the mutated foci.Position 51052392 doesn't seem to be mutated. Here are the mutated foci.Position 51054905 doesn't seem to be mutated. Here are the mutated foci.Position 51057571 doesn't seem to be mutated. Here are the mutated foci.Position 51058348 doesn't seem to be mutated. Here are the mutated foci.Position 51058428 doesn't seem to be mutated. Here are the mutated foci.Position 51059355 doesn't seem to be mutated. Here are the mutated foci.Position 51059496 doesn't seem to be mutated. Here are the mutated foci.Position 51059986 doesn't seem to be mutated. Here are the mutated foci.Position 51060752 doesn't seem to be mutated. Here are the mutated foci.Position 51060826 doesn't seem to be mutated. Here are the mutated foci.Position 51064240 doesn't seem to be mutated. Here are the mutated foci.Position 51064842 doesn't seem to be mutated. Here are the mutated foci.Position 51067097 doesn't seem to be mutated. Here are the mutated foci.Position 51067128 doesn't seem to be mutated. Here are the mutated foci.Position 51068300 doesn't seem to be mutated. Here are the mutated foci.Position 51068459 doesn't seem to be mutated. Here are the mutated foci.Position 51068959 doesn't seem to be mutated. Here are the mutated foci.Position 51072171 doesn't seem to be mutated. Here are the mutated foci.Position 51074010 doesn't seem to be mutated. Here are the mutated foci.Position 51080935 doesn't seem to be mutated. Here are the mutated foci.Position 51081394 doesn't seem to be mutated. Here are the mutated foci.Position 51082155 doesn't seem to be mutated. Here are the mutated foci.Position 51084013 doesn't seem to be mutated. Here are the mutated foci.Position 51085458 doesn't seem to be mutated. Here are the mutated foci.Position 51086261 doesn't seem to be mutated. Here are the mutated foci.Position 51088553 doesn't seem to be mutated. Here are the mutated foci.Position 854008 doesn't seem to be mutated. Here are the mutated foci.Position 855360 doesn't seem to be mutated. Here are the mutated foci.Position 855557 doesn't seem to be mutated. Here are the mutated foci.Position 858988 doesn't seem to be mutated. Here are the mutated foci.Position 1180648 doesn't seem to be mutated. Here are the mutated foci.Position 1180895 doesn't seem to be mutated. Here are the mutated foci.Position 1185221 doesn't seem to be mutated. Here are the mutated foci.Position 1186580 doesn't seem to be mutated. Here are the mutated foci.Position 1189648 doesn't seem to be mutated. Here are the mutated foci.Position 1191760 doesn't seem to be mutated. Here are the mutated foci.Position 1193392 doesn't seem to be mutated. Here are the mutated foci.Position 1203776 doesn't seem to be mutated. Here are the mutated foci.Position 1204108 doesn't seem to be mutated. Here are the mutated foci.Position 1206194 doesn't seem to be mutated. Here are the mutated foci.Position 1208498 doesn't seem to be mutated. Here are the mutated foci.Position 1209847 doesn't seem to be mutated. Here are the mutated foci.Position 1213549 doesn't seem to be mutated. Here are the mutated foci.Position 1213859 doesn't seem to be mutated. Here are the mutated foci.Position 1217248 doesn't seem to be mutated. Here are the mutated foci.Position 1225614 doesn't seem to be mutated. Here are the mutated foci.Position 1227036 doesn't seem to be mutated. Here are the mutated foci.Position 4090455 doesn't seem to be mutated. Here are the mutated foci.Position 4091188 doesn't seem to be mutated. Here are the mutated foci.Position 4091293 doesn't seem to be mutated. Here are the mutated foci.Position 4095812 doesn't seem to be mutated. Here are the mutated foci.Position 4097134 doesn't seem to be mutated. Here are the mutated foci.Position 4097743 doesn't seem to be mutated. Here are the mutated foci.Position 4097926 doesn't seem to be mutated. Here are the mutated foci.Position 4099157 doesn't seem to be mutated. Here are the mutated foci.Position 4102595 doesn't seem to be mutated. Here are the mutated foci.Position 4105622 doesn't seem to be mutated. Here are the mutated foci.Position 4109313 doesn't seem to be mutated. Here are the mutated foci.Position 4111122 doesn't seem to be mutated. Here are the mutated foci.Position 4111559 doesn't seem to be mutated. Here are the mutated foci.Position 4113818 doesn't seem to be mutated. Here are the mutated foci.Position 4117067 doesn't seem to be mutated. Here are the mutated foci.Position 4117476 doesn't seem to be mutated. Here are the mutated foci.Position 4117647 doesn't seem to be mutated. Here are the mutated foci.Position 4125095 doesn't seem to be mutated. Here are the mutated foci.Position 4125950 doesn't seem to be mutated. Here are the mutated foci.Position 10960150 doesn't seem to be mutated. Here are the mutated foci.Position 10962588 doesn't seem to be mutated. Here are the mutated foci.Position 10962812 doesn't seem to be mutated. Here are the mutated foci.Position 10963870 doesn't seem to be mutated. Here are the mutated foci.Position 10964873 doesn't seem to be mutated. Here are the mutated foci.Position 10965644 doesn't seem to be mutated. Here are the mutated foci.Position 10968152 doesn't seem to be mutated. Here are the mutated foci.Position 10970839 doesn't seem to be mutated. Here are the mutated foci.Position 10972042 doesn't seem to be mutated. Here are the mutated foci.Position 10972775 doesn't seem to be mutated. Here are the mutated foci.Position 10977404 doesn't seem to be mutated. Here are the mutated foci.Position 10977417 doesn't seem to be mutated. Here are the mutated foci.Position 10977687 doesn't seem to be mutated. Here are the mutated foci.Position 10978241 doesn't seem to be mutated. Here are the mutated foci.Position 10981475 doesn't seem to be mutated. Here are the mutated foci.Position 10983521 doesn't seem to be mutated. Here are the mutated foci.Position 10985916 doesn't seem to be mutated. Here are the mutated foci.Position 10985987 doesn't seem to be mutated. Here are the mutated foci.Position 10986705 doesn't seem to be mutated. Here are the mutated foci.Position 10987514 doesn't seem to be mutated. Here are the mutated foci.Position 10995770 doesn't seem to be mutated. Here are the mutated foci.Position 10996332 doesn't seem to be mutated. Here are the mutated foci.Position 10997416 doesn't seem to be mutated. Here are the mutated foci.Position 11003707 doesn't seem to be mutated. Here are the mutated foci.Position 11005549 doesn't seem to be mutated. Here are the mutated foci.Position 11009938 doesn't seem to be mutated. Here are the mutated foci.Position 11012305 doesn't seem to be mutated. Here are the mutated foci.Position 11014505 doesn't seem to be mutated. Here are the mutated foci.Position 11014899 doesn't seem to be mutated. Here are the mutated foci.Position 11020744 doesn't seem to be mutated. Here are the mutated foci.Position 11021825 doesn't seem to be mutated. Here are the mutated foci.Position 11021866 doesn't seem to be mutated. Here are the mutated foci.Position 11024548 doesn't seem to be mutated. Here are the mutated foci.Position 11025979 doesn't seem to be mutated. Here are the mutated foci.Position 11033234 doesn't seem to be mutated. Here are the mutated foci.Position 11033318 doesn't seem to be mutated. Here are the mutated foci.Position 11034935 doesn't seem to be mutated. Here are the mutated foci.Position 11039040 doesn't seem to be mutated. Here are the mutated foci.Position 11039996 doesn't seem to be mutated. Here are the mutated foci.Position 11041771 doesn't seem to be mutated. Here are the mutated foci.Position 11042857 doesn't seem to be mutated. Here are the mutated foci.Position 11043902 doesn't seem to be mutated. Here are the mutated foci.Position 11044294 doesn't seem to be mutated. Here are the mutated foci.Position 11045148 doesn't seem to be mutated. Here are the mutated foci.Position 11049595 doesn't seem to be mutated. Here are the mutated foci.Position 11050401 doesn't seem to be mutated. Here are the mutated foci.Position 11052908 doesn't seem to be mutated. Here are the mutated foci.Position 11055988 doesn't seem to be mutated. Here are the mutated foci.Position 11059611 doesn't seem to be mutated. Here are the mutated foci.Position 11062524 doesn't seem to be mutated. Here are the mutated foci.Position 11064596 doesn't seem to be mutated. Here are the mutated foci.Position 11067616 doesn't seem to be mutated. Here are the mutated foci.Position 11069844 doesn't seem to be mutated. Here are the mutated foci.Position 11078913 doesn't seem to be mutated. Here are the mutated foci.Position 11079608 doesn't seem to be mutated. Here are the mutated foci.Position 11082117 doesn't seem to be mutated. Here are the mutated foci.Position 11082810 doesn't seem to be mutated. Here are the mutated foci.Position 33295909 doesn't seem to be mutated. Here are the mutated foci.Position 33298029 doesn't seem to be mutated. Here are the mutated foci.Position 33298980 doesn't seem to be mutated. Here are the mutated foci.Position 33307082 doesn't seem to be mutated. Here are the mutated foci.Position 41855668 doesn't seem to be mutated. Here are the mutated foci.Position 41857056 doesn't seem to be mutated. Here are the mutated foci.Position 41857797 doesn't seem to be mutated. Here are the mutated foci.Position 41861234 doesn't seem to be mutated. Here are the mutated foci.Position 41861578 doesn't seem to be mutated. Here are the mutated foci.Position 41861860 doesn't seem to be mutated. Here are the mutated foci.Position 41862743 doesn't seem to be mutated. Here are the mutated foci.Position 41863108 doesn't seem to be mutated. Here are the mutated foci.Position 41863991 doesn't seem to be mutated. Here are the mutated foci.Position 41865981 doesn't seem to be mutated. Here are the mutated foci.Position 41867289 doesn't seem to be mutated. Here are the mutated foci.Position 41870182 doesn't seem to be mutated. Here are the mutated foci.Position 41871669 doesn't seem to be mutated. Here are the mutated foci.Position 41871740 doesn't seem to be mutated. Here are the mutated foci.Position 41872474 doesn't seem to be mutated. Here are the mutated foci.Position 41872849 doesn't seem to be mutated. Here are the mutated foci.Position 45349902 doesn't seem to be mutated. Here are the mutated foci.Position 45351558 doesn't seem to be mutated. Here are the mutated foci.Position 45353452 doesn't seem to be mutated. Here are the mutated foci.Position 45354385 doesn't seem to be mutated. Here are the mutated foci.Position 45356910 doesn't seem to be mutated. Here are the mutated foci.Position 45357785 doesn't seem to be mutated. Here are the mutated foci.Position 45357941 doesn't seem to be mutated. Here are the mutated foci.Position 45359048 doesn't seem to be mutated. Here are the mutated foci.Position 45359448 doesn't seem to be mutated. Here are the mutated foci.Position 45361004 doesn't seem to be mutated. Here are the mutated foci.Position 45362328 doesn't seem to be mutated. Here are the mutated foci.Position 45362396 doesn't seem to be mutated. Here are the mutated foci.Position 45362686 doesn't seem to be mutated. Here are the mutated foci.Position 45363617 doesn't seem to be mutated. Here are the mutated foci.Position 45363673 doesn't seem to be mutated. Here are the mutated foci.Position 45364091 doesn't seem to be mutated. Here are the mutated foci.Position 45366612 doesn't seem to be mutated. Here are the mutated foci.Position 45420745 doesn't seem to be mutated. Here are the mutated foci.Position 45421172 doesn't seem to be mutated. Here are the mutated foci.Position 45421453 doesn't seem to be mutated. Here are the mutated foci.Position 45422315 doesn't seem to be mutated. Here are the mutated foci.Position 45422395 doesn't seem to be mutated. Here are the mutated foci.Position 45422969 doesn't seem to be mutated. Here are the mutated foci.Position 45424953 doesn't seem to be mutated. Here are the mutated foci.Position 45427079 doesn't seem to be mutated. Here are the mutated foci.Position 45442624 doesn't seem to be mutated. Here are the mutated foci.Position 45444666 doesn't seem to be mutated. Here are the mutated foci.Position 45445448 doesn't seem to be mutated. Here are the mutated foci.Position 45449345 doesn't seem to be mutated. Here are the mutated foci.Position 45451427 doesn't seem to be mutated. Here are the mutated foci.Position 45453365 doesn't seem to be mutated. Here are the mutated foci.Position 45454364 doesn't seem to be mutated. Here are the mutated foci.Position 45455193 doesn't seem to be mutated. Here are the mutated foci.Position 45456315 doesn't seem to be mutated. Here are the mutated foci.Position 45456768 doesn't seem to be mutated. Here are the mutated foci.Position 45460977 doesn't seem to be mutated. Here are the mutated foci.Position 45462572 doesn't seem to be mutated. Here are the mutated foci.Position 50384759 doesn't seem to be mutated. Here are the mutated foci.Position 50384836 doesn't seem to be mutated. Here are the mutated foci.Position 50386914 doesn't seem to be mutated. Here are the mutated foci.Position 50388785 doesn't seem to be mutated. Here are the mutated foci.Position 50395585 doesn't seem to be mutated. Here are the mutated foci.Position 50403236 doesn't seem to be mutated. Here are the mutated foci.Position 50405683 doesn't seem to be mutated. Here are the mutated foci.Position 50407371 doesn't seem to be mutated. Here are the mutated foci.Position 50408726 doesn't seem to be mutated. Here are the mutated foci.Position 50409504 doesn't seem to be mutated. Here are the mutated foci.Position 50410140 doesn't seem to be mutated. Here are the mutated foci.Position 50411377 doesn't seem to be mutated. Here are the mutated foci.Position 50412817 doesn't seem to be mutated. Here are the mutated foci.Position 50415539 doesn't seem to be mutated. Here are the mutated foci.Position 50415902 doesn't seem to be mutated. Here are the mutated foci.Position 32353806 doesn't seem to be mutated. Here are the mutated foci.Position 32354161 doesn't seem to be mutated. Here are the mutated foci.Position 32356334 doesn't seem to be mutated. Here are the mutated foci.Position 32362794 doesn't seem to be mutated. Here are the mutated foci.Position 32364018 doesn't seem to be mutated. Here are the mutated foci.Position 32364286 doesn't seem to be mutated. Here are the mutated foci.Position 32364585 doesn't seem to be mutated. Here are the mutated foci.Position 32366406 doesn't seem to be mutated. Here are the mutated foci.Position 32369676 doesn't seem to be mutated. Here are the mutated foci.Position 32375689 doesn't seem to be mutated. Here are the mutated foci.Position 32381325 doesn't seem to be mutated. Here are the mutated foci.Position 32382088 doesn't seem to be mutated. Here are the mutated foci.Position 32389133 doesn't seem to be mutated. Here are the mutated foci.Position 32391998 doesn't seem to be mutated. Here are the mutated foci.Position 32395201 doesn't seem to be mutated. Here are the mutated foci.Position 32398578 doesn't seem to be mutated. Here are the mutated foci.Position 32402721 doesn't seem to be mutated. Here are the mutated foci.Position 32403237 doesn't seem to be mutated. Here are the mutated foci.Position 32404512 doesn't seem to be mutated. Here are the mutated foci.Position 32408280 doesn't seem to be mutated. Here are the mutated foci.Position 32408929 doesn't seem to be mutated. Here are the mutated foci.Position 32409252 doesn't seem to be mutated. Here are the mutated foci.Position 32410485 doesn't seem to be mutated. Here are the mutated foci.Position 32413404 doesn't seem to be mutated. Here are the mutated foci.Position 32413732 doesn't seem to be mutated. Here are the mutated foci.Position 32417731 doesn't seem to be mutated. Here are the mutated foci.Position 32418702 doesn't seem to be mutated. Here are the mutated foci.Position 32419310 doesn't seem to be mutated. Here are the mutated foci.Position 32423833 doesn't seem to be mutated. Here are the mutated foci.Position 32427559 doesn't seem to be mutated. Here are the mutated foci.Position 32429416 doesn't seem to be mutated. Here are the mutated foci.Position 32431495 doesn't seem to be mutated. Here are the mutated foci.Position 32435698 doesn't seem to be mutated. Here are the mutated foci.Position 32438496 doesn't seem to be mutated. Here are the mutated foci.Position 32438663 doesn't seem to be mutated. Here are the mutated foci.Position 32440155 doesn't seem to be mutated. Here are the mutated foci.Position 32440282 doesn't seem to be mutated. Here are the mutated foci.Position 32442077 doesn't seem to be mutated. Here are the mutated foci.Position 58852534 doesn't seem to be mutated. Here are the mutated foci.Position 58855907 doesn't seem to be mutated. Here are the mutated foci.Position 58858605 doesn't seem to be mutated. Here are the mutated foci.Position 58859006 doesn't seem to be mutated. Here are the mutated foci.Position 58865731 doesn't seem to be mutated. Here are the mutated foci.Position 58870805 doesn't seem to be mutated. Here are the mutated foci.Position 58872652 doesn't seem to be mutated. Here are the mutated foci.Position 58875288 doesn't seem to be mutated. Here are the mutated foci.Position 58875938 doesn't seem to be mutated. Here are the mutated foci.Position 58876439 doesn't seem to be mutated. Here are the mutated foci.Position 58877650 doesn't seem to be mutated. Here are the mutated foci.Position 58878575 doesn't seem to be mutated. Here are the mutated foci.Position 58878961 doesn't seem to be mutated. Here are the mutated foci.Position 58881394 doesn't seem to be mutated. Here are the mutated foci.Position 58881840 doesn't seem to be mutated. Here are the mutated foci.Position 58882155 doesn't seem to be mutated. Here are the mutated foci.Position 58888059 doesn't seem to be mutated. Here are the mutated foci.Position 58888265 doesn't seem to be mutated. Here are the mutated foci.Position 58895396 doesn't seem to be mutated. Here are the mutated foci.Position 58896528 doesn't seem to be mutated. Here are the mutated foci.Position 58898313 doesn't seem to be mutated. Here are the mutated foci.Position 58898622 doesn't seem to be mutated. Here are the mutated foci.Position 58900387 doesn't seem to be mutated. Here are the mutated foci.Position 58901073 doesn't seem to be mutated. Here are the mutated foci.Position 58902231 doesn't seem to be mutated. Here are the mutated foci.Position 58904715 doesn't seem to be mutated. Here are the mutated foci.Position 58905405 doesn't seem to be mutated. Here are the mutated foci.Position 58905895 doesn't seem to be mutated. Here are the mutated foci.Position 58906914 doesn't seem to be mutated. Here are the mutated foci.Position 58909459 doesn't seem to be mutated. Here are the mutated foci.Position 58910964 doesn't seem to be mutated. Here are the mutated foci.Position 58911103 doesn't seem to be mutated. Here are the mutated foci.Position 34790448 doesn't seem to be mutated. Here are the mutated foci.Position 34795139 doesn't seem to be mutated. Here are the mutated foci.Position 34797905 doesn't seem to be mutated. Here are the mutated foci.Position 34800647 doesn't seem to be mutated. Here are the mutated foci.Position 34803097 doesn't seem to be mutated. Here are the mutated foci.Position 34805072 doesn't seem to be mutated. Here are the mutated foci.Position 34805941 doesn't seem to be mutated. Here are the mutated foci.Position 34810567 doesn't seem to be mutated. Here are the mutated foci.Position 34816736 doesn't seem to be mutated. Here are the mutated foci.Position 34820997 doesn't seem to be mutated. Here are the mutated foci.Position 34823338 doesn't seem to be mutated. Here are the mutated foci.Position 34829546 doesn't seem to be mutated. Here are the mutated foci.Position 34829612 doesn't seem to be mutated. Here are the mutated foci.Position 34836212 doesn't seem to be mutated. Here are the mutated foci.Position 34837116 doesn't seem to be mutated. Here are the mutated foci.Position 34846672 doesn't seem to be mutated. Here are the mutated foci.Position 34850040 doesn't seem to be mutated. Here are the mutated foci.Position 34850295 doesn't seem to be mutated. Here are the mutated foci.Position 34852726 doesn't seem to be mutated. Here are the mutated foci.Position 34864377 doesn't seem to be mutated. Here are the mutated foci.Position 34866933 doesn't seem to be mutated. Here are the mutated foci.Position 34867223 doesn't seem to be mutated. Here are the mutated foci.Position 34870833 doesn't seem to be mutated. Here are the mutated foci.Position 34871629 doesn't seem to be mutated. Here are the mutated foci.Position 34874950 doesn't seem to be mutated. Here are the mutated foci.Position 34875818 doesn't seem to be mutated. Here are the mutated foci.Position 34880876 doesn't seem to be mutated. Here are the mutated foci.Position 34882318 doesn't seem to be mutated. Here are the mutated foci.Position 34883191 doesn't seem to be mutated. Here are the mutated foci.Position 34883281 doesn't seem to be mutated. Here are the mutated foci.Position 34885219 doesn't seem to be mutated. Here are the mutated foci.Position 34888494 doesn't seem to be mutated. Here are the mutated foci.Position 34890780 doesn't seem to be mutated. Here are the mutated foci.Position 34892383 doesn't seem to be mutated. Here are the mutated foci.Position 34899494 doesn't seem to be mutated. Here are the mutated foci.Position 34899723 doesn't seem to be mutated. Here are the mutated foci.Position 34899858 doesn't seem to be mutated. Here are the mutated foci.Position 34901370 doesn't seem to be mutated. Here are the mutated foci.Position 34908204 doesn't seem to be mutated. Here are the mutated foci.Position 34910384 doesn't seem to be mutated. Here are the mutated foci.Position 34912968 doesn't seem to be mutated. Here are the mutated foci.Position 34913145 doesn't seem to be mutated. Here are the mutated foci.Position 34915690 doesn't seem to be mutated. Here are the mutated foci.Position 34916883 doesn't seem to be mutated. Here are the mutated foci.Position 34918696 doesn't seem to be mutated. Here are the mutated foci.Position 34921719 doesn't seem to be mutated. Here are the mutated foci.Position 34922516 doesn't seem to be mutated. Here are the mutated foci.Position 34923941 doesn't seem to be mutated. Here are the mutated foci.Position 34923973 doesn't seem to be mutated. Here are the mutated foci.Position 34926311 doesn't seem to be mutated. Here are the mutated foci.Position 34926356 doesn't seem to be mutated. Here are the mutated foci.Position 34926733 doesn't seem to be mutated. Here are the mutated foci.Position 34926855 doesn't seem to be mutated. Here are the mutated foci.Position 34927911 doesn't seem to be mutated. Here are the mutated foci.Position 34929859 doesn't seem to be mutated. Here are the mutated foci.Position 34931336 doesn't seem to be mutated. Here are the mutated foci.Position 34932619 doesn't seem to be mutated. Here are the mutated foci.Position 34936388 doesn't seem to be mutated. Here are the mutated foci.Position 34938135 doesn't seem to be mutated. Here are the mutated foci.Position 34940111 doesn't seem to be mutated. Here are the mutated foci.Position 34942517 doesn't seem to be mutated. Here are the mutated foci.Position 34942724 doesn't seem to be mutated. Here are the mutated foci.Position 34943409 doesn't seem to be mutated. Here are the mutated foci.Position 34947116 doesn't seem to be mutated. Here are the mutated foci.Position 34947665 doesn't seem to be mutated. Here are the mutated foci.Position 34952445 doesn't seem to be mutated. Here are the mutated foci.Position 34952992 doesn't seem to be mutated. Here are the mutated foci.Position 34955889 doesn't seem to be mutated. Here are the mutated foci.Position 34963552 doesn't seem to be mutated. Here are the mutated foci.Position 34965549 doesn't seem to be mutated. Here are the mutated foci.Position 34968589 doesn't seem to be mutated. Here are the mutated foci.Position 34968837 doesn't seem to be mutated. Here are the mutated foci.Position 34969915 doesn't seem to be mutated. Here are the mutated foci.Position 34979833 doesn't seem to be mutated. Here are the mutated foci.Position 34981124 doesn't seem to be mutated. Here are the mutated foci.Position 34985560 doesn't seem to be mutated. Here are the mutated foci.Position 34986116 doesn't seem to be mutated. Here are the mutated foci.Position 34988340 doesn't seem to be mutated. Here are the mutated foci.Position 34988627 doesn't seem to be mutated. Here are the mutated foci.Position 34989018 doesn't seem to be mutated. Here are the mutated foci.Position 34996535 doesn't seem to be mutated. Here are the mutated foci.Position 34997329 doesn't seem to be mutated. Here are the mutated foci.Position 35001186 doesn't seem to be mutated. Here are the mutated foci.Position 35003423 doesn't seem to be mutated. Here are the mutated foci.Position 35011353 doesn't seem to be mutated. Here are the mutated foci.Position 35015122 doesn't seem to be mutated. Here are the mutated foci.Position 35019360 doesn't seem to be mutated. Here are the mutated foci.Position 35031216 doesn't seem to be mutated. Here are the mutated foci.Position 35031384 doesn't seem to be mutated. Here are the mutated foci.Position 35034305 doesn't seem to be mutated. Here are the mutated foci.Position 35034523 doesn't seem to be mutated. Here are the mutated foci.Position 35040241 doesn't seem to be mutated. Here are the mutated foci.Position 35043153 doesn't seem to be mutated. Here are the mutated foci.Position 35049611 doesn't seem to be mutated. Here are the mutated foci.Position 35051612 doesn't seem to be mutated. Here are the mutated foci.Position 35056387 doesn't seem to be mutated. Here are the mutated foci.Position 35060769 doesn't seem to be mutated. Here are the mutated foci.Position 35062399 doesn't seem to be mutated. Here are the mutated foci.Position 35062827 doesn't seem to be mutated. Here are the mutated foci.Position 35063658 doesn't seem to be mutated. Here are the mutated foci.Position 35066075 doesn't seem to be mutated. Here are the mutated foci.Position 35068844 doesn't seem to be mutated. Here are the mutated foci.Position 35076572 doesn't seem to be mutated. Here are the mutated foci.Position 35078641 doesn't seem to be mutated. Here are the mutated foci.Position 35079734 doesn't seem to be mutated. Here are the mutated foci.Position 35080119 doesn't seem to be mutated. Here are the mutated foci.Position 35085036 doesn't seem to be mutated. Here are the mutated foci.Position 35089226 doesn't seem to be mutated. Here are the mutated foci.Position 35090584 doesn't seem to be mutated. Here are the mutated foci.Position 35091160 doesn't seem to be mutated. Here are the mutated foci.Position 35096048 doesn't seem to be mutated. Here are the mutated foci.Position 35097366 doesn't seem to be mutated. Here are the mutated foci.Position 35103520 doesn't seem to be mutated. Here are the mutated foci.Position 35108479 doesn't seem to be mutated. Here are the mutated foci.Position 35113728 doesn't seem to be mutated. Here are the mutated foci.Position 35114018 doesn't seem to be mutated. Here are the mutated foci.Position 35118889 doesn't seem to be mutated. Here are the mutated foci.Position 35124767 doesn't seem to be mutated. Here are the mutated foci.Position 35130571 doesn't seem to be mutated. Here are the mutated foci.Position 35145248 doesn't seem to be mutated. Here are the mutated foci.Position 35145422 doesn't seem to be mutated. Here are the mutated foci.Position 35145835 doesn't seem to be mutated. Here are the mutated foci.Position 35152023 doesn't seem to be mutated. Here are the mutated foci.Position 35153884 doesn't seem to be mutated. Here are the mutated foci.Position 35154484 doesn't seem to be mutated. Here are the mutated foci.Position 35155260 doesn't seem to be mutated. Here are the mutated foci.Position 35159267 doesn't seem to be mutated. Here are the mutated foci.Position 35162753 doesn't seem to be mutated. Here are the mutated foci.Position 35165221 doesn't seem to be mutated. Here are the mutated foci.Position 35166888 doesn't seem to be mutated. Here are the mutated foci.Position 35167253 doesn't seem to be mutated. Here are the mutated foci.Position 35168239 doesn't seem to be mutated. Here are the mutated foci.Position 35169894 doesn't seem to be mutated. Here are the mutated foci.Position 35172466 doesn't seem to be mutated. Here are the mutated foci.Position 35181308 doesn't seem to be mutated. Here are the mutated foci.Position 35185946 doesn't seem to be mutated. Here are the mutated foci.Position 35187818 doesn't seem to be mutated. Here are the mutated foci.Position 35192208 doesn't seem to be mutated. Here are the mutated foci.Position 35194822 doesn't seem to be mutated. Here are the mutated foci.Position 35200247 doesn't seem to be mutated. Here are the mutated foci.Position 35200532 doesn't seem to be mutated. Here are the mutated foci.Position 35205062 doesn't seem to be mutated. Here are the mutated foci.Position 35207367 doesn't seem to be mutated. Here are the mutated foci.Position 35207397 doesn't seem to be mutated. Here are the mutated foci.Position 35208335 doesn't seem to be mutated. Here are the mutated foci.Position 35208530 doesn't seem to be mutated. Here are the mutated foci.Position 35208697 doesn't seem to be mutated. Here are the mutated foci.Position 35209335 doesn't seem to be mutated. Here are the mutated foci.Position 35209545 doesn't seem to be mutated. Here are the mutated foci.Position 35209690 doesn't seem to be mutated. Here are the mutated foci.Position 35210311 doesn't seem to be mutated. Here are the mutated foci.Position 35217524 doesn't seem to be mutated. Here are the mutated foci.Position 35224613 doesn't seem to be mutated. Here are the mutated foci.Position 35225157 doesn't seem to be mutated. Here are the mutated foci.Position 35225842 doesn't seem to be mutated. Here are the mutated foci.Position 35226732 doesn't seem to be mutated. Here are the mutated foci.Position 35227871 doesn't seem to be mutated. Here are the mutated foci.Position 35228467 doesn't seem to be mutated. Here are the mutated foci.Position 35229435 doesn't seem to be mutated. Here are the mutated foci.Position 35232100 doesn't seem to be mutated. Here are the mutated foci.Position 35235840 doesn't seem to be mutated. Here are the mutated foci.Position 35236397 doesn't seem to be mutated. Here are the mutated foci.Position 35236721 doesn't seem to be mutated. Here are the mutated foci.Position 35237171 doesn't seem to be mutated. Here are the mutated foci.Position 35241887 doesn't seem to be mutated. Here are the mutated foci.Position 35242833 doesn't seem to be mutated. Here are the mutated foci.Position 35243072 doesn't seem to be mutated. Here are the mutated foci.Position 35243297 doesn't seem to be mutated. Here are the mutated foci.Position 35246642 doesn't seem to be mutated. Here are the mutated foci.Position 35246883 doesn't seem to be mutated. Here are the mutated foci.Position 35247709 doesn't seem to be mutated. Here are the mutated foci.Position 35249380 doesn't seem to be mutated. Here are the mutated foci.Position 35250140 doesn't seem to be mutated. Here are the mutated foci.Position 35257248 doesn't seem to be mutated. Here are the mutated foci.Position 35260350 doesn't seem to be mutated. Here are the mutated foci.Position 35261064 doesn't seem to be mutated. Here are the mutated foci.Position 35266434 doesn't seem to be mutated. Here are the mutated foci.Position 35266685 doesn't seem to be mutated. Here are the mutated foci.Position 35267549 doesn't seem to be mutated. Here are the mutated foci.Position 35268197 doesn't seem to be mutated. Here are the mutated foci.Position 35268912 doesn't seem to be mutated. Here are the mutated foci.Position 35270702 doesn't seem to be mutated. Here are the mutated foci.Position 35273092 doesn't seem to be mutated. Here are the mutated foci.Position 35273364 doesn't seem to be mutated. Here are the mutated foci.Position 35273707 doesn't seem to be mutated. Here are the mutated foci.Position 35277043 doesn't seem to be mutated. Here are the mutated foci.Position 35277618 doesn't seem to be mutated. Here are the mutated foci.Position 35277828 doesn't seem to be mutated. Here are the mutated foci.Position 35279798 doesn't seem to be mutated. Here are the mutated foci.Position 35282084 doesn't seem to be mutated. Here are the mutated foci.Position 35283642 doesn't seem to be mutated. Here are the mutated foci.Position 35284926 doesn't seem to be mutated. Here are the mutated foci.Position 35293877 doesn't seem to be mutated. Here are the mutated foci.Position 35295067 doesn't seem to be mutated. Here are the mutated foci.Position 35298442 doesn't seem to be mutated. Here are the mutated foci.Position 35302080 doesn't seem to be mutated. Here are the mutated foci.Position 35304003 doesn't seem to be mutated. Here are the mutated foci.Position 35305959 doesn't seem to be mutated. Here are the mutated foci.Position 35307348 doesn't seem to be mutated. Here are the mutated foci.Position 35317434 doesn't seem to be mutated. Here are the mutated foci.Position 35321120 doesn't seem to be mutated. Here are the mutated foci.Position 35323964 doesn't seem to be mutated. Here are the mutated foci.Position 35328834 doesn't seem to be mutated. Here are the mutated foci.Position 35331488 doesn't seem to be mutated. Here are the mutated foci.Position 35332604 doesn't seem to be mutated. Here are the mutated foci.Position 35337369 doesn't seem to be mutated. Here are the mutated foci.Position 35339745 doesn't seem to be mutated. Here are the mutated foci.Position 35340970 doesn't seem to be mutated. Here are the mutated foci.Position 35341373 doesn't seem to be mutated. Here are the mutated foci.Position 35343361 doesn't seem to be mutated. Here are the mutated foci.Position 35343920 doesn't seem to be mutated. Here are the mutated foci.Position 35346061 doesn't seem to be mutated. Here are the mutated foci.Position 35347050 doesn't seem to be mutated. Here are the mutated foci.Position 35349782 doesn't seem to be mutated. Here are the mutated foci.Position 35350550 doesn't seem to be mutated. Here are the mutated foci.Position 35352113 doesn't seem to be mutated. Here are the mutated foci.Position 35354482 doesn't seem to be mutated. Here are the mutated foci.Position 35357672 doesn't seem to be mutated. Here are the mutated foci.Position 35357777 doesn't seem to be mutated. Here are the mutated foci.Position 35360382 doesn't seem to be mutated. Here are the mutated foci.Position 35360463 doesn't seem to be mutated. Here are the mutated foci.Position 35360591 doesn't seem to be mutated. Here are the mutated foci.Position 35362588 doesn't seem to be mutated. Here are the mutated foci.Position 35367699 doesn't seem to be mutated. Here are the mutated foci.Position 35370787 doesn't seem to be mutated. Here are the mutated foci.Position 35372372 doesn't seem to be mutated. Here are the mutated foci.Position 35380325 doesn't seem to be mutated. Here are the mutated foci.Position 35403076 doesn't seem to be mutated. Here are the mutated foci.Position 35422647 doesn't seem to be mutated. Here are the mutated foci.Position 35423634 doesn't seem to be mutated. Here are the mutated foci.Position 35428078 doesn't seem to be mutated. Here are the mutated foci.Position 35433745 doesn't seem to be mutated. Here are the mutated foci.Position 35434835 doesn't seem to be mutated. Here are the mutated foci.Position 35437548 doesn't seem to be mutated. Here are the mutated foci.Position 35444114 doesn't seem to be mutated. Here are the mutated foci.Position 35451046 doesn't seem to be mutated. Here are the mutated foci.Position 35451619 doesn't seem to be mutated. Here are the mutated foci.Position 35451643 doesn't seem to be mutated. Here are the mutated foci.Position 35451864 doesn't seem to be mutated. Here are the mutated foci.Position 35452057 doesn't seem to be mutated. Here are the mutated foci.Position 35457312 doesn't seem to be mutated. Here are the mutated foci.Position 35457553 doesn't seem to be mutated. Here are the mutated foci.Position 35458525 doesn't seem to be mutated. Here are the mutated foci.Position 35458663 doesn't seem to be mutated. Here are the mutated foci.Position 35465784 doesn't seem to be mutated. Here are the mutated foci.Position 35485991 doesn't seem to be mutated. Here are the mutated foci.Position 35488213 doesn't seem to be mutated. Here are the mutated foci.Position 35489830 doesn't seem to be mutated. Here are the mutated foci.Position 35491902 doesn't seem to be mutated. Here are the mutated foci.Position 35493750 doesn't seem to be mutated. Here are the mutated foci.Position 35494102 doesn't seem to be mutated. Here are the mutated foci.Position 35497103 doesn't seem to be mutated. Here are the mutated foci.Position 35499653 doesn't seem to be mutated. Here are the mutated foci.Position 35502052 doesn't seem to be mutated. Here are the mutated foci.Position 35504476 doesn't seem to be mutated. Here are the mutated foci.Position 35505907 doesn't seem to be mutated. Here are the mutated foci.Position 35506218 doesn't seem to be mutated. Here are the mutated foci.Position 35507249 doesn't seem to be mutated. Here are the mutated foci.Position 35514845 doesn't seem to be mutated. Here are the mutated foci.Position 35514903 doesn't seem to be mutated. Here are the mutated foci.Position 35519751 doesn't seem to be mutated. Here are the mutated foci.Position 35520057 doesn't seem to be mutated. Here are the mutated foci.Position 35521340 doesn't seem to be mutated. Here are the mutated foci.Position 35522627 doesn't seem to be mutated. Here are the mutated foci.Position 35522676 doesn't seem to be mutated. Here are the mutated foci.Position 35524698 doesn't seem to be mutated. Here are the mutated foci.Position 35527597 doesn't seem to be mutated. Here are the mutated foci.Position 35529935 doesn't seem to be mutated. Here are the mutated foci.Position 35530124 doesn't seem to be mutated. Here are the mutated foci.Position 35530153 doesn't seem to be mutated. Here are the mutated foci.Position 35530859 doesn't seem to be mutated. Here are the mutated foci.Position 35537614 doesn't seem to be mutated. Here are the mutated foci.Position 35539374 doesn't seem to be mutated. Here are the mutated foci.Position 35539711 doesn't seem to be mutated. Here are the mutated foci.Position 35542926 doesn't seem to be mutated. Here are the mutated foci.Position 35543588 doesn't seem to be mutated. Here are the mutated foci.Position 35545283 doesn't seem to be mutated. Here are the mutated foci.Position 35546541 doesn't seem to be mutated. Here are the mutated foci.Position 35547204 doesn't seem to be mutated. Here are the mutated foci.Position 35550231 doesn't seem to be mutated. Here are the mutated foci.Position 35552138 doesn't seem to be mutated. Here are the mutated foci.Position 35567380 doesn't seem to be mutated. Here are the mutated foci.Position 35569536 doesn't seem to be mutated. Here are the mutated foci.Position 35570724 doesn't seem to be mutated. Here are the mutated foci.Position 35571640 doesn't seem to be mutated. Here are the mutated foci.Position 35572308 doesn't seem to be mutated. Here are the mutated foci.Position 35573949 doesn't seem to be mutated. Here are the mutated foci.Position 35574119 doesn't seem to be mutated. Here are the mutated foci.Position 35574477 doesn't seem to be mutated. Here are the mutated foci.Position 35574790 doesn't seem to be mutated. Here are the mutated foci.Position 35576657 doesn't seem to be mutated. Here are the mutated foci.Position 35576729 doesn't seem to be mutated. Here are the mutated foci.Position 35586287 doesn't seem to be mutated. Here are the mutated foci.Position 35587278 doesn't seem to be mutated. Here are the mutated foci.Position 35593410 doesn't seem to be mutated. Here are the mutated foci.Position 35605914 doesn't seem to be mutated. Here are the mutated foci.Position 35607544 doesn't seem to be mutated. Here are the mutated foci.Position 35610920 doesn't seem to be mutated. Here are the mutated foci.Position 35612059 doesn't seem to be mutated. Here are the mutated foci.Position 35615589 doesn't seem to be mutated. Here are the mutated foci.Position 35615860 doesn't seem to be mutated. Here are the mutated foci.Position 35617145 doesn't seem to be mutated. Here are the mutated foci.Position 35618860 doesn't seem to be mutated. Here are the mutated foci.Position 35624138 doesn't seem to be mutated. Here are the mutated foci.Position 35632131 doesn't seem to be mutated. Here are the mutated foci.Position 35633995 doesn't seem to be mutated. Here are the mutated foci.Position 35636879 doesn't seem to be mutated. Here are the mutated foci.Position 35637067 doesn't seem to be mutated. Here are the mutated foci.Position 35646284 doesn't seem to be mutated. Here are the mutated foci.Position 35656959 doesn't seem to be mutated. Here are the mutated foci.Position 35661358 doesn't seem to be mutated. Here are the mutated foci.Position 35662894 doesn't seem to be mutated. Here are the mutated foci.Position 35664153 doesn't seem to be mutated. Here are the mutated foci.Position 35669116 doesn't seem to be mutated. Here are the mutated foci.Position 35676119 doesn't seem to be mutated. Here are the mutated foci.Position 35677076 doesn't seem to be mutated. Here are the mutated foci.Position 35679261 doesn't seem to be mutated. Here are the mutated foci.Position 35679600 doesn't seem to be mutated. Here are the mutated foci.Position 35679842 doesn't seem to be mutated. Here are the mutated foci.Position 35687703 doesn't seem to be mutated. Here are the mutated foci.Position 35689532 doesn't seem to be mutated. Here are the mutated foci.Position 35694741 doesn't seem to be mutated. Here are the mutated foci.Position 35695326 doesn't seem to be mutated. Here are the mutated foci.Position 35697146 doesn't seem to be mutated. Here are the mutated foci.Position 35700144 doesn't seem to be mutated. Here are the mutated foci.Position 35701319 doesn't seem to be mutated. Here are the mutated foci.Position 35702088 doesn't seem to be mutated. Here are the mutated foci.Position 35704228 doesn't seem to be mutated. Here are the mutated foci.Position 35704368 doesn't seem to be mutated. Here are the mutated foci.Position 35705737 doesn't seem to be mutated. Here are the mutated foci.Position 35706970 doesn't seem to be mutated. Here are the mutated foci.Position 35746035 doesn't seem to be mutated. Here are the mutated foci.Position 35752672 doesn't seem to be mutated. Here are the mutated foci.Position 35757379 doesn't seem to be mutated. Here are the mutated foci.Position 35757525 doesn't seem to be mutated. Here are the mutated foci.Position 35759506 doesn't seem to be mutated. Here are the mutated foci.Position 35761972 doesn't seem to be mutated. Here are the mutated foci.Position 35762731 doesn't seem to be mutated. Here are the mutated foci.Position 35765434 doesn't seem to be mutated. Here are the mutated foci.Position 35774301 doesn't seem to be mutated. Here are the mutated foci.Position 35774408 doesn't seem to be mutated. Here are the mutated foci.Position 35775016 doesn't seem to be mutated. Here are the mutated foci.Position 35778022 doesn't seem to be mutated. Here are the mutated foci.Position 35779406 doesn't seem to be mutated. Here are the mutated foci.Position 35781407 doesn't seem to be mutated. Here are the mutated foci.Position 35784585 doesn't seem to be mutated. Here are the mutated foci.Position 35784716 doesn't seem to be mutated. Here are the mutated foci.Position 35794817 doesn't seem to be mutated. Here are the mutated foci.Position 35798493 doesn't seem to be mutated. Here are the mutated foci.Position 35799208 doesn't seem to be mutated. Here are the mutated foci.Position 35800462 doesn't seem to be mutated. Here are the mutated foci.Position 35808166 doesn't seem to be mutated. Here are the mutated foci.Position 35813948 doesn't seem to be mutated. Here are the mutated foci.Position 35814075 doesn't seem to be mutated. Here are the mutated foci.Position 35817379 doesn't seem to be mutated. Here are the mutated foci.Position 35820172 doesn't seem to be mutated. Here are the mutated foci.Position 35825287 doesn't seem to be mutated. Here are the mutated foci.Position 35826479 doesn't seem to be mutated. Here are the mutated foci.Position 35829435 doesn't seem to be mutated. Here are the mutated foci.Position 35830690 doesn't seem to be mutated. Here are the mutated foci.Position 35838458 doesn't seem to be mutated. Here are the mutated foci.Position 35839697 doesn't seem to be mutated. Here are the mutated foci.Position 35842785 doesn't seem to be mutated. Here are the mutated foci.Position 35844506 doesn't seem to be mutated. Here are the mutated foci.Position 35845553 doesn't seem to be mutated. Here are the mutated foci.Position 35846237 doesn't seem to be mutated. Here are the mutated foci.Position 35852287 doesn't seem to be mutated. Here are the mutated foci.Position 35854308 doesn't seem to be mutated. Here are the mutated foci.Position 35856855 doesn't seem to be mutated. Here are the mutated foci.Position 35860908 doesn't seem to be mutated. Here are the mutated foci.Position 35862849 doesn't seem to be mutated. Here are the mutated foci.Position 35863842 doesn't seem to be mutated. Here are the mutated foci.Position 35866290 doesn't seem to be mutated. Here are the mutated foci.Position 35867691 doesn't seem to be mutated. Here are the mutated foci.Position 35869426 doesn't seem to be mutated. Here are the mutated foci.Position 35872961 doesn't seem to be mutated. Here are the mutated foci.Position 35878441 doesn't seem to be mutated. Here are the mutated foci.Position 35879040 doesn't seem to be mutated. Here are the mutated foci.Position 35894467 doesn't seem to be mutated. Here are the mutated foci.Position 35906118 doesn't seem to be mutated. Here are the mutated foci.Position 35910924 doesn't seem to be mutated. Here are the mutated foci.Position 35914913 doesn't seem to be mutated. Here are the mutated foci.Position 35925468 doesn't seem to be mutated. Here are the mutated foci.Position 35930291 doesn't seem to be mutated. Here are the mutated foci.Position 35937273 doesn't seem to be mutated. Here are the mutated foci.Position 35937536 doesn't seem to be mutated. Here are the mutated foci.Position 35938094 doesn't seem to be mutated. Here are the mutated foci.Position 35939130 doesn't seem to be mutated. Here are the mutated foci.Position 35939989 doesn't seem to be mutated. Here are the mutated foci.Position 35943642 doesn't seem to be mutated. Here are the mutated foci.Position 35958301 doesn't seem to be mutated. Here are the mutated foci.Position 35960725 doesn't seem to be mutated. Here are the mutated foci.Position 35961238 doesn't seem to be mutated. Here are the mutated foci.Position 35962214 doesn't seem to be mutated. Here are the mutated foci.Position 35963222 doesn't seem to be mutated. Here are the mutated foci.Position 35965226 doesn't seem to be mutated. Here are the mutated foci.Position 35966021 doesn't seem to be mutated. Here are the mutated foci.Position 35974579 doesn't seem to be mutated. Here are the mutated foci.Position 35980366 doesn't seem to be mutated. Here are the mutated foci.Position 35981926 doesn't seem to be mutated. Here are the mutated foci.Position 35981927 doesn't seem to be mutated. Here are the mutated foci.Position 35984671 doesn't seem to be mutated. Here are the mutated foci.Position 35985045 doesn't seem to be mutated. Here are the mutated foci.Position 35985740 doesn't seem to be mutated. Here are the mutated foci.Position 35986621 doesn't seem to be mutated. Here are the mutated foci.Position 35987014 doesn't seem to be mutated. Here are the mutated foci.Position 35989458 doesn't seem to be mutated. Here are the mutated foci.Position 35992389 doesn't seem to be mutated. Here are the mutated foci.Position 35994573 doesn't seem to be mutated. Here are the mutated foci.Position 35996227 doesn't seem to be mutated. Here are the mutated foci.Position 20983511 doesn't seem to be mutated. Here are the mutated foci.Position 20986435 doesn't seem to be mutated. Here are the mutated foci.Position 20987132 doesn't seem to be mutated. Here are the mutated foci.Position 20990237 doesn't seem to be mutated. Here are the mutated foci.Position 20992173 doesn't seem to be mutated. Here are the mutated foci.Position 20993116 doesn't seem to be mutated. Here are the mutated foci.Position 20993324 doesn't seem to be mutated. Here are the mutated foci.Position 20995098 doesn't seem to be mutated. Here are the mutated foci.Position 20996098 doesn't seem to be mutated. Here are the mutated foci.Position 20996622 doesn't seem to be mutated. Here are the mutated foci.Position 20997535 doesn't seem to be mutated. Here are the mutated foci.Position 20998288 doesn't seem to be mutated. Here are the mutated foci.Position 20999038 doesn't seem to be mutated. Here are the mutated foci.Position 23787853 doesn't seem to be mutated. Here are the mutated foci.Position 23788894 doesn't seem to be mutated. Here are the mutated foci.Position 23790027 doesn't seem to be mutated. Here are the mutated foci.Position 23790623 doesn't seem to be mutated. Here are the mutated foci.Position 23791398 doesn't seem to be mutated. Here are the mutated foci.Position 23792864 doesn't seem to be mutated. Here are the mutated foci.Position 23794041 doesn't seem to be mutated. Here are the mutated foci.Position 23794361 doesn't seem to be mutated. Here are the mutated foci.Position 23795453 doesn't seem to be mutated. Here are the mutated foci.Position 23799282 doesn't seem to be mutated. Here are the mutated foci.Position 23807123 doesn't seem to be mutated. Here are the mutated foci.Position 23807668 doesn't seem to be mutated. Here are the mutated foci.Position 23808989 doesn't seem to be mutated. Here are the mutated foci.Position 23810014 doesn't seem to be mutated. Here are the mutated foci.Position 23811888 doesn't seem to be mutated. Here are the mutated foci.Position 23813793 doesn't seem to be mutated. Here are the mutated foci.Position 23822694 doesn't seem to be mutated. Here are the mutated foci.Position 23823421 doesn't seem to be mutated. Here are the mutated foci.Position 23823428 doesn't seem to be mutated. Here are the mutated foci.Position 23823836 doesn't seem to be mutated. Here are the mutated foci.Position 23826362 doesn't seem to be mutated. Here are the mutated foci.Position 23827489 doesn't seem to be mutated. Here are the mutated foci.Position 23828585 doesn't seem to be mutated. Here are the mutated foci.Position 23832642 doesn't seem to be mutated. Here are the mutated foci.Position 23834799 doesn't seem to be mutated. Here are the mutated foci.Position 28684097 doesn't seem to be mutated. Here are the mutated foci.Position 28687962 doesn't seem to be mutated. Here are the mutated foci.Position 28688921 doesn't seem to be mutated. Here are the mutated foci.Position 28690403 doesn't seem to be mutated. Here are the mutated foci.Position 28693388 doesn't seem to be mutated. Here are the mutated foci.Position 28695075 doesn't seem to be mutated. Here are the mutated foci.Position 28695421 doesn't seem to be mutated. Here are the mutated foci.Position 28697241 doesn't seem to be mutated. Here are the mutated foci.Position 28697690 doesn't seem to be mutated. Here are the mutated foci.Position 28698797 doesn't seem to be mutated. Here are the mutated foci.Position 28701206 doesn't seem to be mutated. Here are the mutated foci.Position 28705858 doesn't seem to be mutated. Here are the mutated foci.Position 28706042 doesn't seem to be mutated. Here are the mutated foci.Position 28707156 doesn't seem to be mutated. Here are the mutated foci.Position 28708819 doesn't seem to be mutated. Here are the mutated foci.Position 28709483 doesn't seem to be mutated. Here are the mutated foci.Position 28712630 doesn't seem to be mutated. Here are the mutated foci.Position 28714356 doesn't seem to be mutated. Here are the mutated foci.Position 28715346 doesn't seem to be mutated. Here are the mutated foci.Position 28719536 doesn't seem to be mutated. Here are the mutated foci.Position 28720785 doesn't seem to be mutated. Here are the mutated foci.Position 28722412 doesn't seem to be mutated. Here are the mutated foci.Position 28722954 doesn't seem to be mutated. Here are the mutated foci.Position 28723546 doesn't seem to be mutated. Here are the mutated foci.Position 28726963 doesn't seem to be mutated. Here are the mutated foci.Position 28727088 doesn't seem to be mutated. Here are the mutated foci.Position 28728542 doesn't seem to be mutated. Here are the mutated foci.Position 28733170 doesn't seem to be mutated. Here are the mutated foci.Position 28737614 doesn't seem to be mutated. Here are the mutated foci.Position 28737630 doesn't seem to be mutated. Here are the mutated foci.Position 28739201 doesn't seem to be mutated. Here are the mutated foci.Position 28740766 doesn't seem to be mutated. Here are the mutated foci.Position 29601174 doesn't seem to be mutated. Here are the mutated foci.Position 29601233 doesn't seem to be mutated. Here are the mutated foci.Position 29602101 doesn't seem to be mutated. Here are the mutated foci.Position 29609316 doesn't seem to be mutated. Here are the mutated foci.Position 29609513 doesn't seem to be mutated. Here are the mutated foci.Position 29610339 doesn't seem to be mutated. Here are the mutated foci.Position 29615064 doesn't seem to be mutated. Here are the mutated foci.Position 29615476 doesn't seem to be mutated. Here are the mutated foci.Position 29616634 doesn't seem to be mutated. Here are the mutated foci.Position 29618264 doesn't seem to be mutated. Here are the mutated foci.Position 29619286 doesn't seem to be mutated. Here are the mutated foci.Position 29621950 doesn't seem to be mutated. Here are the mutated foci.Position 29623991 doesn't seem to be mutated. Here are the mutated foci.Position 29625797 doesn't seem to be mutated. Here are the mutated foci.Position 29628838 doesn't seem to be mutated. Here are the mutated foci.Position 29634083 doesn't seem to be mutated. Here are the mutated foci.Position 29635121 doesn't seem to be mutated. Here are the mutated foci.Position 29635353 doesn't seem to be mutated. Here are the mutated foci.Position 29638969 doesn't seem to be mutated. Here are the mutated foci.Position 29640453 doesn't seem to be mutated. Here are the mutated foci.Position 29640899 doesn't seem to be mutated. Here are the mutated foci.Position 29641485 doesn't seem to be mutated. Here are the mutated foci.Position 29641720 doesn't seem to be mutated. Here are the mutated foci.Position 29643779 doesn't seem to be mutated. Here are the mutated foci.Position 29643864 doesn't seem to be mutated. Here are the mutated foci.Position 29645029 doesn't seem to be mutated. Here are the mutated foci.Position 29646947 doesn't seem to be mutated. Here are the mutated foci.Position 29647888 doesn't seem to be mutated. Here are the mutated foci.Position 29652407 doesn't seem to be mutated. Here are the mutated foci.Position 29652927 doesn't seem to be mutated. Here are the mutated foci.Position 29653291 doesn't seem to be mutated. Here are the mutated foci.Position 29655717 doesn't seem to be mutated. Here are the mutated foci.Position 29656706 doesn't seem to be mutated. Here are the mutated foci.Position 29658566 doesn't seem to be mutated. Here are the mutated foci.Position 29661025 doesn't seem to be mutated. Here are the mutated foci.Position 29661870 doesn't seem to be mutated. Here are the mutated foci.Position 29663847 doesn't seem to be mutated. Here are the mutated foci.Position 29663900 doesn't seem to be mutated. Here are the mutated foci.Position 29665988 doesn't seem to be mutated. Here are the mutated foci.Position 29670703 doesn't seem to be mutated. Here are the mutated foci.Position 29670776 doesn't seem to be mutated. Here are the mutated foci.Position 29672949 doesn't seem to be mutated. Here are the mutated foci.Position 29674719 doesn't seem to be mutated. Here are the mutated foci.Position 29676417 doesn't seem to be mutated. Here are the mutated foci.Position 29677765 doesn't seem to be mutated. Here are the mutated foci.Position 29678105 doesn't seem to be mutated. Here are the mutated foci.Position 29684793 doesn't seem to be mutated. Here are the mutated foci.Position 29685825 doesn't seem to be mutated. Here are the mutated foci.Position 29686784 doesn't seem to be mutated. Here are the mutated foci.Position 29691720 doesn't seem to be mutated. Here are the mutated foci.Position 29691773 doesn't seem to be mutated. Here are the mutated foci.Position 29692796 doesn't seem to be mutated. Here are the mutated foci.Position 29693102 doesn't seem to be mutated. Here are the mutated foci.Position 29696948 doesn't seem to be mutated. Here are the mutated foci.Position 29699491 doesn't seem to be mutated. Here are the mutated foci.Position 29700291 doesn't seem to be mutated. Here are the mutated foci.Position 37973635 doesn't seem to be mutated. Here are the mutated foci.Position 37975882 doesn't seem to be mutated. Here are the mutated foci.Position 37979589 doesn't seem to be mutated. Here are the mutated foci.Position 37983543 doesn't seem to be mutated. Here are the mutated foci.Position 37984954 doesn't seem to be mutated. Here are the mutated foci.Position 41087269 doesn't seem to be mutated. Here are the mutated foci.Position 41089114 doesn't seem to be mutated. Here are the mutated foci.Position 41098009 doesn't seem to be mutated. Here are the mutated foci.Position 41098784 doesn't seem to be mutated. Here are the mutated foci.Position 41101677 doesn't seem to be mutated. Here are the mutated foci.Position 41102262 doesn't seem to be mutated. Here are the mutated foci.Position 41105955 doesn't seem to be mutated. Here are the mutated foci.Position 41106606 doesn't seem to be mutated. Here are the mutated foci.Position 41110456 doesn't seem to be mutated. Here are the mutated foci.Position 41112930 doesn't seem to be mutated. Here are the mutated foci.Position 41114638 doesn't seem to be mutated. Here are the mutated foci.Position 41118324 doesn't seem to be mutated. Here are the mutated foci.Position 41119134 doesn't seem to be mutated. Here are the mutated foci.Position 41120024 doesn't seem to be mutated. Here are the mutated foci.Position 41121129 doesn't seem to be mutated. Here are the mutated foci.Position 41128198 doesn't seem to be mutated. Here are the mutated foci.Position 41128916 doesn't seem to be mutated. Here are the mutated foci.Position 41129799 doesn't seem to be mutated. Here are the mutated foci.Position 41130379 doesn't seem to be mutated. Here are the mutated foci.Position 41130866 doesn't seem to be mutated. Here are the mutated foci.Position 41136513 doesn't seem to be mutated. Here are the mutated foci.Position 41138139 doesn't seem to be mutated. Here are the mutated foci.Position 41142211 doesn't seem to be mutated. Here are the mutated foci.Position 41146671 doesn't seem to be mutated. Here are the mutated foci.Position 41149742 doesn't seem to be mutated. Here are the mutated foci.Position 41150784 doesn't seem to be mutated. Here are the mutated foci.Position 41154865 doesn't seem to be mutated. Here are the mutated foci.Position 41155228 doesn't seem to be mutated. Here are the mutated foci.Position 41158869 doesn't seem to be mutated. Here are the mutated foci.Position 41160535 doesn't seem to be mutated. Here are the mutated foci.Position 41160574 doesn't seem to be mutated. Here are the mutated foci.Position 41161492 doesn't seem to be mutated. Here are the mutated foci.Position 41161610 doesn't seem to be mutated. Here are the mutated foci.Position 41163617 doesn't seem to be mutated. Here are the mutated foci.Position 41167725 doesn't seem to be mutated. Here are the mutated foci.Position 41170453 doesn't seem to be mutated. Here are the mutated foci.Position 41171653 doesn't seem to be mutated. Here are the mutated foci.Position 41177335 doesn't seem to be mutated. Here are the mutated foci.Position 41182562 doesn't seem to be mutated. Here are the mutated foci.Position 41184542 doesn't seem to be mutated. Here are the mutated foci.Position 14838858 doesn't seem to be mutated. Here are the mutated foci.Position 14839944 doesn't seem to be mutated. Here are the mutated foci.Position 14840989 doesn't seem to be mutated. Here are the mutated foci.Position 14843751 doesn't seem to be mutated. Here are the mutated foci.Position 14844833 doesn't seem to be mutated. Here are the mutated foci.Position 14845561 doesn't seem to be mutated. Here are the mutated foci.Position 14847708 doesn't seem to be mutated. Here are the mutated foci.Position 14850711 doesn't seem to be mutated. Here are the mutated foci.Position 14851793 doesn't seem to be mutated. Here are the mutated foci.Position 14853323 doesn't seem to be mutated. Here are the mutated foci.Position 14860649 doesn't seem to be mutated. Here are the mutated foci.Position 14866661 doesn't seem to be mutated. Here are the mutated foci.Position 14867874 doesn't seem to be mutated. Here are the mutated foci.Position 14868536 doesn't seem to be mutated. Here are the mutated foci.Position 14868907 doesn't seem to be mutated. Here are the mutated foci.Position 14870337 doesn't seem to be mutated. Here are the mutated foci.Position 48673870 doesn't seem to be mutated. Here are the mutated foci.Position 48676184 doesn't seem to be mutated. Here are the mutated foci.Position 48684015 doesn't seem to be mutated. Here are the mutated foci.Position 48684055 doesn't seem to be mutated. Here are the mutated foci.Position 48689329 doesn't seem to be mutated. Here are the mutated foci.Position 48689545 doesn't seem to be mutated. Here are the mutated foci.Position 48690017 doesn't seem to be mutated. Here are the mutated foci.Position 77505491 doesn't seem to be mutated. Here are the mutated foci.Position 77508471 doesn't seem to be mutated. Here are the mutated foci.Position 77510903 doesn't seem to be mutated. Here are the mutated foci.Position 77521498 doesn't seem to be mutated. Here are the mutated foci.Position 77529792 doesn't seem to be mutated. Here are the mutated foci.Position 77530503 doesn't seem to be mutated. Here are the mutated foci.Position 77531513 doesn't seem to be mutated. Here are the mutated foci.Position 77537084 doesn't seem to be mutated. Here are the mutated foci.Position 77538154 doesn't seem to be mutated. Here are the mutated foci.Position 77544436 doesn't seem to be mutated. Here are the mutated foci.Position 77544775 doesn't seem to be mutated. Here are the mutated foci.Position 77552104 doesn't seem to be mutated. Here are the mutated foci.Position 77552279 doesn't seem to be mutated. Here are the mutated foci.Position 77554851 doesn't seem to be mutated. Here are the mutated foci.Position 77555244 doesn't seem to be mutated. Here are the mutated foci.Position 77565220 doesn't seem to be mutated. Here are the mutated foci.Position 77565319 doesn't seem to be mutated. Here are the mutated foci.Position 77578279 doesn't seem to be mutated. Here are the mutated foci.Position 77579921 doesn't seem to be mutated. Here are the mutated foci.Position 77582021 doesn't seem to be mutated. Here are the mutated foci.Position 77582139 doesn't seem to be mutated. Here are the mutated foci.Position 77584014 doesn't seem to be mutated. Here are the mutated foci.Position 77586271 doesn't seem to be mutated. Here are the mutated foci.Position 77586502 doesn't seem to be mutated. Here are the mutated foci.Position 77590376 doesn't seem to be mutated. Here are the mutated foci.Position 77591851 doesn't seem to be mutated. Here are the mutated foci.Position 77594394 doesn't seem to be mutated. Here are the mutated foci.Position 77601349 doesn't seem to be mutated. Here are the mutated foci.Position 77605490 doesn't seem to be mutated. Here are the mutated foci.Position 77608268 doesn't seem to be mutated. Here are the mutated foci.Position 77608536 doesn't seem to be mutated. Here are the mutated foci.Position 77611480 doesn't seem to be mutated. Here are the mutated foci.Position 77611904 doesn't seem to be mutated. Here are the mutated foci.Position 77613260 doesn't seem to be mutated. Here are the mutated foci.Position 77618242 doesn't seem to be mutated. Here are the mutated foci.Position 77619784 doesn't seem to be mutated. Here are the mutated foci.Position 77627427 doesn't seem to be mutated. Here are the mutated foci.Position 77628193 doesn't seem to be mutated. Here are the mutated foci.Position 77628849 doesn't seem to be mutated. Here are the mutated foci.Position 77630340 doesn't seem to be mutated. Here are the mutated foci.Position 77632692 doesn't seem to be mutated. Here are the mutated foci.Position 77633188 doesn't seem to be mutated. Here are the mutated foci.Position 77633593 doesn't seem to be mutated. Here are the mutated foci.Position 77633688 doesn't seem to be mutated. Here are the mutated foci.Position 77638478 doesn't seem to be mutated. Here are the mutated foci.Position 77639452 doesn't seem to be mutated. Here are the mutated foci.Position 77647651 doesn't seem to be mutated. Here are the mutated foci.Position 77651909 doesn't seem to be mutated. Here are the mutated foci.Position 77653506 doesn't seem to be mutated. Here are the mutated foci.Position 77654955 doesn't seem to be mutated. Here are the mutated foci.Position 77657226 doesn't seem to be mutated. Here are the mutated foci.Position 77657627 doesn't seem to be mutated. Here are the mutated foci.Position 77657960 doesn't seem to be mutated. Here are the mutated foci.Position 77663258 doesn't seem to be mutated. Here are the mutated foci.Position 77663409 doesn't seem to be mutated. Here are the mutated foci.Position 77665777 doesn't seem to be mutated. Here are the mutated foci.Position 77672540 doesn't seem to be mutated. Here are the mutated foci.Position 77675440 doesn't seem to be mutated. Here are the mutated foci.Position 77680105 doesn't seem to be mutated. Here are the mutated foci.Position 77684383 doesn't seem to be mutated. Here are the mutated foci.Position 77686034 doesn't seem to be mutated. Here are the mutated foci.Position 77686049 doesn't seem to be mutated. Here are the mutated foci.Position 77686802 doesn't seem to be mutated. Here are the mutated foci.Position 77690536 doesn't seem to be mutated. Here are the mutated foci.Position 77694757 doesn't seem to be mutated. Here are the mutated foci.Position 77697323 doesn't seem to be mutated. Here are the mutated foci.Position 77698083 doesn't seem to be mutated. Here are the mutated foci.Position 77698473 doesn't seem to be mutated. Here are the mutated foci.Position 77698495 doesn't seem to be mutated. Here are the mutated foci.Position 77699652 doesn't seem to be mutated. Here are the mutated foci.Position 77706877 doesn't seem to be mutated. Here are the mutated foci.Position 77708535 doesn't seem to be mutated. Here are the mutated foci.Position 77710871 doesn't seem to be mutated. Here are the mutated foci.Position 77713924 doesn't seem to be mutated. Here are the mutated foci.Position 77724593 doesn't seem to be mutated. Here are the mutated foci.Position 77732397 doesn't seem to be mutated. Here are the mutated foci.Position 77733507 doesn't seem to be mutated. Here are the mutated foci.Position 77735540 doesn't seem to be mutated. Here are the mutated foci.Position 77738313 doesn't seem to be mutated. Here are the mutated foci.Position 77739137 doesn't seem to be mutated. Here are the mutated foci.Position 77749370 doesn't seem to be mutated. Here are the mutated foci.Position 77750918 doesn't seem to be mutated. Here are the mutated foci.Position 77755562 doesn't seem to be mutated. Here are the mutated foci.Position 77758893 doesn't seem to be mutated. Here are the mutated foci.Position 77759461 doesn't seem to be mutated. Here are the mutated foci.Position 77764917 doesn't seem to be mutated. Here are the mutated foci.Position 77765140 doesn't seem to be mutated. Here are the mutated foci.Position 77767642 doesn't seem to be mutated. Here are the mutated foci.Position 77770448 doesn't seem to be mutated. Here are the mutated foci.Position 77773291 doesn't seem to be mutated. Here are the mutated foci.Position 77776711 doesn't seem to be mutated. Here are the mutated foci.Position 77777981 doesn't seem to be mutated. Here are the mutated foci.Position 77780798 doesn't seem to be mutated. Here are the mutated foci.Position 77783896 doesn't seem to be mutated. Here are the mutated foci.Position 124346325 doesn't seem to be mutated. Here are the mutated foci.Position 124346604 doesn't seem to be mutated. Here are the mutated foci.Position 124348117 doesn't seem to be mutated. Here are the mutated foci.Position 124353678 doesn't seem to be mutated. Here are the mutated foci.Position 124361203 doesn't seem to be mutated. Here are the mutated foci.Position 124363529 doesn't seem to be mutated. Here are the mutated foci.Position 124365026 doesn't seem to be mutated. Here are the mutated foci.Position 124370370 doesn't seem to be mutated. Here are the mutated foci.Position 124371061 doesn't seem to be mutated. Here are the mutated foci.Position 124373688 doesn't seem to be mutated. Here are the mutated foci.Position 133295575 doesn't seem to be mutated. Here are the mutated foci.Position 133297312 doesn't seem to be mutated. Here are the mutated foci.Position 133298030 doesn't seem to be mutated. Here are the mutated foci.Position 133300431 doesn't seem to be mutated. Here are the mutated foci.Position 133301842 doesn't seem to be mutated. Here are the mutated foci.Position 133302919 doesn't seem to be mutated. Here are the mutated foci.Position 133303093 doesn't seem to be mutated. Here are the mutated foci.Position 133306478 doesn't seem to be mutated. Here are the mutated foci.Position 133308055 doesn't seem to be mutated. Here are the mutated foci.Position 133311505 doesn't seem to be mutated. Here are the mutated foci.Position 133315544 doesn't seem to be mutated. Here are the mutated foci.Position 133316901 doesn't seem to be mutated. Here are the mutated foci.Position 133318914 doesn't seem to be mutated. Here are the mutated foci.Position 133321639 doesn't seem to be mutated. Here are the mutated foci.Position 133326048 doesn't seem to be mutated. Here are the mutated foci.Position 133328897 doesn't seem to be mutated. Here are the mutated foci.Position 133329688 doesn't seem to be mutated. Here are the mutated foci.Position 133334295 doesn't seem to be mutated. Here are the mutated foci.Position 133335264 doesn't seem to be mutated. Here are the mutated foci.Position 133339037 doesn't seem to be mutated. Here are the mutated foci.Position 133339215 doesn't seem to be mutated. Here are the mutated foci.Position 133340098 doesn't seem to be mutated. Here are the mutated foci.Position 133350980 doesn't seem to be mutated. Here are the mutated foci.Position 133353492 doesn't seem to be mutated. Here are the mutated foci.Position 133354957 doesn't seem to be mutated. Here are the mutated foci.Position 133357752 doesn't seem to be mutated. Here are the mutated foci.Position 133359912 doesn't seem to be mutated. Here are the mutated foci.Position 133360036 doesn't seem to be mutated. Here are the mutated foci.Position 133360228 doesn't seem to be mutated. Here are the mutated foci.Position 133362253 doesn't seem to be mutated. Here are the mutated foci.Position 133366882 doesn't seem to be mutated. Here are the mutated foci.Position 133372404 doesn't seem to be mutated. Here are the mutated foci.Position 133379992 doesn't seem to be mutated. Here are the mutated foci.Position 133390019 doesn't seem to be mutated. Here are the mutated foci.Position 133393588 doesn't seem to be mutated. Here are the mutated foci.Position 133394226 doesn't seem to be mutated. Here are the mutated foci.Position 133394250 doesn't seem to be mutated. Here are the mutated foci.Position 133397389 doesn't seem to be mutated. Here are the mutated foci.Position 133400416 doesn't seem to be mutated. Here are the mutated foci.Position 133403703 doesn't seem to be mutated. Here are the mutated foci.Position 133408490 doesn't seem to be mutated. Here are the mutated foci.Position 133412407 doesn't seem to be mutated. Here are the mutated foci.Position 133414485 doesn't seem to be mutated. Here are the mutated foci.Position 133414943 doesn't seem to be mutated. Here are the mutated foci.Position 133415868 doesn't seem to be mutated. Here are the mutated foci.Position 133533387 doesn't seem to be mutated. Here are the mutated foci.Position 133537827 doesn't seem to be mutated. Here are the mutated foci.Position 133538731 doesn't seem to be mutated. Here are the mutated foci.Position 133541359 doesn't seem to be mutated. Here are the mutated foci.Position 133544147 doesn't seem to be mutated. Here are the mutated foci.Position 133548057 doesn't seem to be mutated. Here are the mutated foci.Position 133549222 doesn't seem to be mutated. Here are the mutated foci.Position 133554650 doesn't seem to be mutated. Here are the mutated foci.Position 133554839 doesn't seem to be mutated. Here are the mutated foci.Position 133555815 doesn't seem to be mutated. Here are the mutated foci.Position 133561933 doesn't seem to be mutated. Here are the mutated foci.Position 133563691 doesn't seem to be mutated. Here are the mutated foci.Position 133569386 doesn't seem to be mutated. Here are the mutated foci.Position 133572052 doesn't seem to be mutated. Here are the mutated foci.Position 133573291 doesn't seem to be mutated. Here are the mutated foci.Position 133574349 doesn't seem to be mutated. Here are the mutated foci.Position 133580788 doesn't seem to be mutated. Here are the mutated foci.Position 133581693 doesn't seem to be mutated. Here are the mutated foci.Position 133581700 doesn't seem to be mutated. Here are the mutated foci.Position 133582581 doesn't seem to be mutated. Here are the mutated foci.Position 133582630 doesn't seem to be mutated. Here are the mutated foci.Position 133583294 doesn't seem to be mutated. Here are the mutated foci.Position 133584745 doesn't seem to be mutated. Here are the mutated foci.Position 133588417 doesn't seem to be mutated. Here are the mutated foci.Position 133592575 doesn't seem to be mutated. Here are the mutated foci.Position 133594637 doesn't seem to be mutated. Here are the mutated foci.Position 133594822 doesn't seem to be mutated. Here are the mutated foci.Position 133596812 doesn't seem to be mutated. Here are the mutated foci.Position 133597845 doesn't seem to be mutated. Here are the mutated foci.Position 133601908 doesn't seem to be mutated. Here are the mutated foci.Position 133605130 doesn't seem to be mutated. Here are the mutated foci.Position 133608973 doesn't seem to be mutated. Here are the mutated foci.Position 133611335 doesn't seem to be mutated. Here are the mutated foci.Position 133617779 doesn't seem to be mutated. Here are the mutated foci.Position 133621778 doesn't seem to be mutated. Here are the mutated foci.Position 133627086 doesn't seem to be mutated. Here are the mutated foci.Position 133637977 doesn't seem to be mutated. Here are the mutated foci.Position 133639177 doesn't seem to be mutated. Here are the mutated foci.Position 133640945 doesn't seem to be mutated. Here are the mutated foci.Position 133648844 doesn't seem to be mutated. Here are the mutated foci.Position 133652023 doesn't seem to be mutated. Here are the mutated foci.Position 133653884 doesn't seem to be mutated. Here are the mutated foci.Position 133656401 doesn't seem to be mutated. Here are the mutated foci.Position 133656410 doesn't seem to be mutated. Here are the mutated foci.Position 133658808 doesn't seem to be mutated. Here are the mutated foci.Position 133659703 doesn't seem to be mutated. Here are the mutated foci.Position 133662541 doesn't seem to be mutated. Here are the mutated foci.Position 133663294 doesn't seem to be mutated. Here are the mutated foci.Position 133664036 doesn't seem to be mutated. Here are the mutated foci.Position 133666782 doesn't seem to be mutated. Here are the mutated foci.Position 133668041 doesn't seem to be mutated. Here are the mutated foci.Position 133669447 doesn't seem to be mutated. Here are the mutated foci.Position 133671149 doesn't seem to be mutated. Here are the mutated foci.Position 133672375 doesn't seem to be mutated. Here are the mutated foci.Position 133672765 doesn't seem to be mutated. Here are the mutated foci.Position 133673945 doesn't seem to be mutated. Here are the mutated foci.Position 133680295 doesn't seem to be mutated. Here are the mutated foci.Position 133685568 doesn't seem to be mutated. Here are the mutated foci.Position 133685835 doesn't seem to be mutated. Here are the mutated foci.Position 133686847 doesn't seem to be mutated. Here are the mutated foci.Position 133690080 doesn't seem to be mutated. Here are the mutated foci.Position 133697956 doesn't seem to be mutated. Here are the mutated foci.Position 133701537 doesn't seem to be mutated. Here are the mutated foci.Position 133703197 doesn't seem to be mutated. Here are the mutated foci.Position 133703796 doesn't seem to be mutated. Here are the mutated foci.Position 133712165 doesn't seem to be mutated. Here are the mutated foci.Position 133722963 doesn't seem to be mutated. Here are the mutated foci.Position 133726109 doesn't seem to be mutated. Here are the mutated foci.Position 133731761 doesn't seem to be mutated. Here are the mutated foci.Position 133733620 doesn't seem to be mutated. Here are the mutated foci.Position 133739863 doesn't seem to be mutated. Here are the mutated foci.Position 133746420 doesn't seem to be mutated. Here are the mutated foci.Position 133746734 doesn't seem to be mutated. Here are the mutated foci.Position 133749125 doesn't seem to be mutated. Here are the mutated foci.Position 133753273 doesn't seem to be mutated. Here are the mutated foci.Position 133753689 doesn't seem to be mutated. Here are the mutated foci.Position 133754714 doesn't seem to be mutated. Here are the mutated foci.Position 133760583 doesn't seem to be mutated. Here are the mutated foci.Position 133763514 doesn't seem to be mutated. Here are the mutated foci.Position 133780247 doesn't seem to be mutated. Here are the mutated foci.Position 133780259 doesn't seem to be mutated. Here are the mutated foci.Position 133781382 doesn't seem to be mutated. Here are the mutated foci.Position 133787654 doesn't seem to be mutated. Here are the mutated foci.Position 133787977 doesn't seem to be mutated. Here are the mutated foci.Position 133791969 doesn't seem to be mutated. Here are the mutated foci.Position 133793761 doesn't seem to be mutated. Here are the mutated foci.Position 133796224 doesn't seem to be mutated. Here are the mutated foci.Position 133797387 doesn't seem to be mutated. Here are the mutated foci.Position 133803456 doesn't seem to be mutated. Here are the mutated foci.Position 133807797 doesn't seem to be mutated. Here are the mutated foci.Position 133808874 doesn't seem to be mutated. Here are the mutated foci.Position 133809015 doesn't seem to be mutated. Here are the mutated foci.Position 133810853 doesn't seem to be mutated. Here are the mutated foci.Position 133816680 doesn't seem to be mutated. Here are the mutated foci.Position 133820774 doesn't seem to be mutated. Here are the mutated foci.Position 133821882 doesn't seem to be mutated. Here are the mutated foci.Position 133822669 doesn't seem to be mutated. Here are the mutated foci.Position 133824710 doesn't seem to be mutated. Here are the mutated foci.Position 133827341 doesn't seem to be mutated. Here are the mutated foci.Position 133834827 doesn't seem to be mutated. Here are the mutated foci.Position 133835135 doesn't seem to be mutated. Here are the mutated foci.Position 133837830 doesn't seem to be mutated. Here are the mutated foci.Position 133837915 doesn't seem to be mutated. Here are the mutated foci.Position 133847142 doesn't seem to be mutated. Here are the mutated foci.Position 133847439 doesn't seem to be mutated. Here are the mutated foci.Position 133848298 doesn't seem to be mutated. Here are the mutated foci.Position 133855591 doesn't seem to be mutated. Here are the mutated foci.Position 133856132 doesn't seem to be mutated. Here are the mutated foci.Position 133857014 doesn't seem to be mutated. Here are the mutated foci.Position 133857049 doesn't seem to be mutated. Here are the mutated foci.Position 133859540 doesn't seem to be mutated. Here are the mutated foci.Position 133859625 doesn't seem to be mutated. Here are the mutated foci.Position 133862361 doesn't seem to be mutated. Here are the mutated foci.Position 133862873 doesn't seem to be mutated. Here are the mutated foci.Position 133866654 doesn't seem to be mutated. Here are the mutated foci.Position 133870905 doesn't seem to be mutated. Here are the mutated foci.Position 133875024 doesn't seem to be mutated. Here are the mutated foci.Position 133875663 doesn't seem to be mutated. Here are the mutated foci.Position 133878296 doesn't seem to be mutated. Here are the mutated foci.Position 133880332 doesn't seem to be mutated. Here are the mutated foci.Position 133882697 doesn't seem to be mutated. Here are the mutated foci.Position 133885144 doesn't seem to be mutated. Here are the mutated foci.Position 133885387 doesn't seem to be mutated. Here are the mutated foci.Position 133887499 doesn't seem to be mutated. Here are the mutated foci.Position 133890861 doesn't seem to be mutated. Here are the mutated foci.Position 133891457 doesn't seem to be mutated. Here are the mutated foci.Position 133891883 doesn't seem to be mutated. Here are the mutated foci.Position 133894376 doesn't seem to be mutated. Here are the mutated foci.Position 133896507 doesn't seem to be mutated. Here are the mutated foci.Position 133898705 doesn't seem to be mutated. Here are the mutated foci.Position 133901408 doesn't seem to be mutated. Here are the mutated foci.Position 133903010 doesn't seem to be mutated. Here are the mutated foci.Position 133905914 doesn't seem to be mutated. Here are the mutated foci.Position 133908512 doesn't seem to be mutated. Here are the mutated foci.Position 133909980 doesn't seem to be mutated. Here are the mutated foci.Position 133910229 doesn't seem to be mutated. Here are the mutated foci.Position 133910683 doesn't seem to be mutated. Here are the mutated foci.Position 133913907 doesn't seem to be mutated. Here are the mutated foci.Position 133914665 doesn't seem to be mutated. Here are the mutated foci.Position 133920107 doesn't seem to be mutated. Here are the mutated foci.Position 133921370 doesn't seem to be mutated. Here are the mutated foci.Position 133925804 doesn't seem to be mutated. Here are the mutated foci.Position 133927729 doesn't seem to be mutated. Here are the mutated foci.Position 133931018 doesn't seem to be mutated. Here are the mutated foci.Position 133932243 doesn't seem to be mutated. Here are the mutated foci.Position 133936327 doesn't seem to be mutated. Here are the mutated foci.Position 133939647 doesn't seem to be mutated. Here are the mutated foci.Position 133942632 doesn't seem to be mutated. Here are the mutated foci.Position 133943935 doesn't seem to be mutated. Here are the mutated foci.Position 133947683 doesn't seem to be mutated. Here are the mutated foci.Position 133954905 doesn't seem to be mutated. Here are the mutated foci.Position 133969358 doesn't seem to be mutated. Here are the mutated foci.Position 133973888 doesn't seem to be mutated. Here are the mutated foci.Position 133978109 doesn't seem to be mutated. Here are the mutated foci.Position 133980940 doesn't seem to be mutated. Here are the mutated foci.Position 133981425 doesn't seem to be mutated. Here are the mutated foci.Position 133984590 doesn't seem to be mutated. Here are the mutated foci.Position 133986315 doesn't seem to be mutated. Here are the mutated foci.Position 133989634 doesn't seem to be mutated. Here are the mutated foci.Position 147910856 doesn't seem to be mutated. Here are the mutated foci.Position 147911786 doesn't seem to be mutated. Here are the mutated foci.Position 147914660 doesn't seem to be mutated. Here are the mutated foci.Position 147915961 doesn't seem to be mutated. Here are the mutated foci.Position 147917031 doesn't seem to be mutated. Here are the mutated foci.Position 147919131 doesn't seem to be mutated. Here are the mutated foci.Position 147921025 doesn't seem to be mutated. Here are the mutated foci.Position 147922016 doesn't seem to be mutated. Here are the mutated foci.Position 147924590 doesn't seem to be mutated. Here are the mutated foci.Position 147926586 doesn't seem to be mutated. Here are the mutated foci.Position 147927171 doesn't seem to be mutated. Here are the mutated foci.Position 147929213 doesn't seem to be mutated. Here are the mutated foci.Position 147936921 doesn't seem to be mutated. Here are the mutated foci.Position 147937891 doesn't seem to be mutated. Here are the mutated foci.Position 147940225 doesn't seem to be mutated. Here are the mutated foci.Position 147943766 doesn't seem to be mutated. Here are the mutated foci.Position 147954358 doesn't seem to be mutated. Here are the mutated foci.Position 147954942 doesn't seem to be mutated. Here are the mutated foci.Position 147955861 doesn't seem to be mutated. Here are the mutated foci.Position 154759088 doesn't seem to be mutated. Here are the mutated foci.Position 154768190 doesn't seem to be mutated. Here are the mutated foci.Position 154769245 doesn't seem to be mutated. Here are the mutated foci.Position 154775140 doesn't seem to be mutated. Here are the mutated foci.Position 154776264 doesn't seem to be mutated. Here are the mutated foci.Position 154777018 doesn't seem to be mutated. Here are the mutated foci.Position 57751647 doesn't seem to be mutated. Here are the mutated foci.Position 32420797 doesn't seem to be mutated. Here are the mutated foci.Position 61997388 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 17048938 doesn't seem to be mutated. Here are the mutated foci.Position 43338743 doesn't seem to be mutated. Here are the mutated foci.Position 156861935 doesn't seem to be mutated. Here are the mutated foci.Position 29211042 doesn't seem to be mutated. Here are the mutated foci.Position 232101900 doesn't seem to be mutated. Here are the mutated foci.Position 122275865 doesn't seem to be mutated. Here are the mutated foci.Position 26084941 doesn't seem to be mutated. Here are the mutated foci.Position 26090873 doesn't seem to be mutated. Here are the mutated foci.Position 104860706 doesn't seem to be mutated. Here are the mutated foci.Position 42137210 doesn't seem to be mutated. Here are the mutated foci.Position 55022236 doesn't seem to be mutated. Here are the mutated foci.Position 96258429 doesn't seem to be mutated. Here are the mutated foci.Position 148832095 doesn't seem to be mutated. Here are the mutated foci.Position 117876829 doesn't seem to be mutated. Here are the mutated foci.Position 117925052 doesn't seem to be mutated. Here are the mutated foci.Position 118091286 doesn't seem to be mutated. Here are the mutated foci.Position 95152554 doesn't seem to be mutated. Here are the mutated foci.Position 61902697 doesn't seem to be mutated. Here are the mutated foci.Position 86780380 doesn't seem to be mutated. Here are the mutated foci.Position 102542655 doesn't seem to be mutated. Here are the mutated foci.Position 108277447 doesn't seem to be mutated. Here are the mutated foci.Position 119275608 doesn't seem to be mutated. Here are the mutated foci.Position 11674665 doesn't seem to be mutated. Here are the mutated foci.Position 11753352 doesn't seem to be mutated. Here are the mutated foci.Position 11754825 doesn't seem to be mutated. Here are the mutated foci.Position 11898862 doesn't seem to be mutated. Here are the mutated foci.Position 112450385 doesn't seem to be mutated. Here are the mutated foci.Position 48409287 doesn't seem to be mutated. Here are the mutated foci.Position 104779938 doesn't seem to be mutated. Here are the mutated foci.Position 104795872 doesn't seem to be mutated. Here are the mutated foci.Position 40198660 doesn't seem to be mutated. Here are the mutated foci.Position 58889211 doesn't seem to be mutated. Here are the mutated foci.Position 58902839 doesn't seem to be mutated. Here are the mutated foci.Position 34784393 doesn't seem to be mutated. Here are the mutated foci.Position 34878258 doesn't seem to be mutated. Here are the mutated foci.Position 35786293 doesn't seem to be mutated. Here are the mutated foci.Position 28737017 doesn't seem to be mutated. Here are the mutated foci.Position 133673107 doesn't seem to be mutated. Here are the mutated foci.Position 232155209 doesn't seem to be mutated. Here are the mutated foci.Position 12591730 doesn't seem to be mutated. Here are the mutated foci.Position 177217038 doesn't seem to be mutated. Here are the mutated foci.Position 104731380 doesn't seem to be mutated. Here are the mutated foci.Position 140730044 doesn't seem to be mutated. Here are the mutated foci.Position 140746798 doesn't seem to be mutated. Here are the mutated foci.Position 140770045 doesn't seem to be mutated. Here are the mutated foci.Position 140791572 doesn't seem to be mutated. Here are the mutated foci.Position 140792156 doesn't seem to be mutated. Here are the mutated foci.Position 142747767 doesn't seem to be mutated. Here are the mutated foci.Position 36923307 doesn't seem to be mutated. Here are the mutated foci.Position 61902697 doesn't seem to be mutated. Here are the mutated foci.Position 119255900 doesn't seem to be mutated. Here are the mutated foci.Position 35701517 doesn't seem to be mutated. Here are the mutated foci.Position 133397557 doesn't seem to be mutated. Here are the mutated foci.Position 177195454 doesn't seem to be mutated. Here are the mutated foci.Position 34423205 doesn't seem to be mutated. Here are the mutated foci.Position 104727739 doesn't seem to be mutated. Here are the mutated foci.Position 65078326 doesn't seem to be mutated. Here are the mutated foci.Position 90721569 doesn't seem to be mutated. Here are the mutated foci.Position 3853674 doesn't seem to be mutated. Here are the mutated foci.Position 59015055 doesn't seem to be mutated. Here are the mutated foci.Position 47788398 doesn't seem to be mutated. Here are the mutated foci.Position 127294420 doesn't seem to be mutated. Here are the mutated foci.Position 142756841 doesn't seem to be mutated. Here are the mutated foci.Position 50160025 doesn't seem to be mutated. Here are the mutated foci.Position 90714716 doesn't seem to be mutated. Here are the mutated foci.Position 3577958 doesn't seem to be mutated. Here are the mutated foci.Position 65560952 doesn't seem to be mutated. Here are the mutated foci.Position 51071282 doesn't seem to be mutated. Here are the mutated foci.Position 35199034 doesn't seem to be mutated. Here are the mutated foci.Position 133357398 doesn't seem to be mutated. Here are the mutated foci.Position 133624856 doesn't seem to be mutated. Here are the mutated foci.Position 155244786 doesn't seem to be mutated. Here are the mutated foci.Position 193239892 doesn't seem to be mutated. Here are the mutated foci.Position 231393524 doesn't seem to be mutated. Here are the mutated foci.Position 29280211 doesn't seem to be mutated. Here are the mutated foci.Position 47624486 doesn't seem to be mutated. Here are the mutated foci.Position 214780901 doesn't seem to be mutated. Here are the mutated foci.Position 122260693 doesn't seem to be mutated. Here are the mutated foci.Position 177190981 doesn't seem to be mutated. Here are the mutated foci.Position 177211479 doesn't seem to be mutated. Here are the mutated foci.Position 104857203 doesn't seem to be mutated. Here are the mutated foci.Position 95465084 doesn't seem to be mutated. Here are the mutated foci.Position 86796225 doesn't seem to be mutated. Here are the mutated foci.Position 45184063 doesn't seem to be mutated. Here are the mutated foci.Position 33302594 doesn't seem to be mutated. Here are the mutated foci.Position 133908931 doesn't seem to be mutated. Here are the mutated foci.Position 69968787 doesn't seem to be mutated. Here are the mutated foci.Position 87908216 doesn't seem to be mutated. Here are the mutated foci.Position 102537415 doesn't seem to be mutated. Here are the mutated foci.Position 44137403 doesn't seem to be mutated. Here are the mutated foci.Position 119211739 doesn't seem to be mutated. Here are the mutated foci.Position 29295532 doesn't seem to be mutated. Here are the mutated foci.Position 96262745 doesn't seem to be mutated. Here are the mutated foci.Position 168928466 doesn't seem to be mutated. Here are the mutated foci.Position 37042974 doesn't seem to be mutated. Here are the mutated foci.Position 138784779 doesn't seem to be mutated. Here are the mutated foci.Position 42233889 doesn't seem to be mutated. Here are the mutated foci.Position 148827559 doesn't seem to be mutated. Here are the mutated foci.Position 148884212 doesn't seem to be mutated. Here are the mutated foci.Position 118029169 doesn't seem to be mutated. Here are the mutated foci.Position 2068923 doesn't seem to be mutated. Here are the mutated foci.Position 102519058 doesn't seem to be mutated. Here are the mutated foci.Position 119275354 doesn't seem to be mutated. Here are the mutated foci.Position 119275362 doesn't seem to be mutated. Here are the mutated foci.Position 25249843 doesn't seem to be mutated. Here are the mutated foci.Position 17231405 doesn't seem to be mutated. Here are the mutated foci.Position 61763013 doesn't seem to be mutated. Here are the mutated foci.Position 11035235 doesn't seem to be mutated. Here are the mutated foci.Position 35232475 doesn't seem to be mutated. Here are the mutated foci.Position 41088465 doesn't seem to be mutated. Here are the mutated foci.Position 133762806 doesn't seem to be mutated. Here are the mutated foci.Position 154763031 doesn't seem to be mutated. Here are the mutated foci.Position 156863661 doesn't seem to be mutated. Here are the mutated foci.Position 117822108 doesn't seem to be mutated. Here are the mutated foci.Position 272015 doesn't seem to be mutated. Here are the mutated foci.Position 87872425 doesn't seem to be mutated. Here are the mutated foci.Position 32412695 doesn't seem to be mutated. Here are the mutated foci.Position 64813775 doesn't seem to be mutated. Here are the mutated foci.Position 119302151 doesn't seem to be mutated. Here are the mutated foci.Position 61711866 doesn't seem to be mutated. Here are the mutated foci.Position 168933108 doesn't seem to be mutated. Here are the mutated foci.Position 140760526 doesn't seem to be mutated. Here are the mutated foci.Position 363245 doesn't seem to be mutated. Here are the mutated foci.Position 133541258 doesn't seem to be mutated. Here are the mutated foci.Position 231428413 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 38414792 doesn't seem to be mutated. Here are the mutated foci.Position 31357370 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 157153138 doesn't seem to be mutated. Here are the mutated foci.Position 104727682 doesn't seem to be mutated. Here are the mutated foci.Position 377361 doesn't seem to be mutated. Here are the mutated foci.Position 21807597 doesn't seem to be mutated. Here are the mutated foci.Position 21833095 doesn't seem to be mutated. Here are the mutated foci.Position 11765719 doesn't seem to be mutated. Here are the mutated foci.Position 45459654 doesn't seem to be mutated. Here are the mutated foci.Position 77622507 doesn't seem to be mutated. Here are the mutated foci.Position 10300892 doesn't seem to be mutated. Here are the mutated foci.Position 193150149 doesn't seem to be mutated. Here are the mutated foci.Position 29354124 doesn't seem to be mutated. Here are the mutated foci.Position 29456785 doesn't seem to be mutated. Here are the mutated foci.Position 29670999 doesn't seem to be mutated. Here are the mutated foci.Position 29777081 doesn't seem to be mutated. Here are the mutated foci.Position 39067561 doesn't seem to be mutated. Here are the mutated foci.Position 169025682 doesn't seem to be mutated. Here are the mutated foci.Position 232322368 doesn't seem to be mutated. Here are the mutated foci.Position 69879998 doesn't seem to be mutated. Here are the mutated foci.Position 122283624 doesn't seem to be mutated. Here are the mutated foci.Position 54726841 doesn't seem to be mutated. Here are the mutated foci.Position 37820205 doesn't seem to be mutated. Here are the mutated foci.Position 157204012 doesn't seem to be mutated. Here are the mutated foci.Position 157247916 doesn't seem to be mutated. Here are the mutated foci.Position 93133464 doesn't seem to be mutated. Here are the mutated foci.Position 96265368 doesn't seem to be mutated. Here are the mutated foci.Position 116763686 doesn't seem to be mutated. Here are the mutated foci.Position 124874740 doesn't seem to be mutated. Here are the mutated foci.Position 140881672 doesn't seem to be mutated. Here are the mutated foci.Position 381416 doesn't seem to be mutated. Here are the mutated foci.Position 430698 doesn't seem to be mutated. Here are the mutated foci.Position 21826705 doesn't seem to be mutated. Here are the mutated foci.Position 61956956 doesn't seem to be mutated. Here are the mutated foci.Position 38273752 doesn't seem to be mutated. Here are the mutated foci.Position 68814803 doesn't seem to be mutated. Here are the mutated foci.Position 42390249 doesn't seem to be mutated. Here are the mutated foci.Position 59102415 doesn't seem to be mutated. Here are the mutated foci.Position 32364854 doesn't seem to be mutated. Here are the mutated foci.Position 58895528 doesn't seem to be mutated. Here are the mutated foci.Position 34929882 doesn't seem to be mutated. Here are the mutated foci.Position 35175439 doesn't seem to be mutated. Here are the mutated foci.Position 77567950 doesn't seem to be mutated. Here are the mutated foci.Position 77669696 doesn't seem to be mutated. Here are the mutated foci.Position 133385996 doesn't seem to be mutated. Here are the mutated foci.Position 133613758 doesn't seem to be mutated. Here are the mutated foci.Position 133711191 doesn't seem to be mutated. Here are the mutated foci.Position 133732984 doesn't seem to be mutated. Here are the mutated foci.Position 133789135 doesn't seem to be mutated. Here are the mutated foci.Position 133799017 doesn't seem to be mutated. Here are the mutated foci.Position 133972113 doesn't seem to be mutated. Here are the mutated foci.Position 133983059 doesn't seem to be mutated. Here are the mutated foci.Position 154766364 doesn't seem to be mutated. Here are the mutated foci.Position 155244786 doesn't seem to be mutated. Here are the mutated foci.Position 193216297 doesn't seem to be mutated. Here are the mutated foci.Position 47464105 doesn't seem to be mutated. Here are the mutated foci.Position 96248478 doesn't seem to be mutated. Here are the mutated foci.Position 127261943 doesn't seem to be mutated. Here are the mutated foci.Position 168950129 doesn't seem to be mutated. Here are the mutated foci.Position 232065293 doesn't seem to be mutated. Here are the mutated foci.Position 10156220 doesn't seem to be mutated. Here are the mutated foci.Position 48567649 doesn't seem to be mutated. Here are the mutated foci.Position 179146817 doesn't seem to be mutated. Here are the mutated foci.Position 54743623 doesn't seem to be mutated. Here are the mutated foci.Position 177280822 doesn't seem to be mutated. Here are the mutated foci.Position 104745338 doesn't seem to be mutated. Here are the mutated foci.Position 116766709 doesn't seem to be mutated. Here are the mutated foci.Position 124873887 doesn't seem to be mutated. Here are the mutated foci.Position 31133542 doesn't seem to be mutated. Here are the mutated foci.Position 118068627 doesn't seem to be mutated. Here are the mutated foci.Position 19374133 doesn't seem to be mutated. Here are the mutated foci.Position 99124665 doesn't seem to be mutated. Here are the mutated foci.Position 86781287 doesn't seem to be mutated. Here are the mutated foci.Position 86825139 doesn't seem to be mutated. Here are the mutated foci.Position 87896321 doesn't seem to be mutated. Here are the mutated foci.Position 89011106 doesn't seem to be mutated. Here are the mutated foci.Position 110978300 doesn't seem to be mutated. Here are the mutated foci.Position 47236574 doesn't seem to be mutated. Here are the mutated foci.Position 67479073 doesn't seem to be mutated. Here are the mutated foci.Position 108354084 doesn't seem to be mutated. Here are the mutated foci.Position 32343868 doesn't seem to be mutated. Here are the mutated foci.Position 48317994 doesn't seem to be mutated. Here are the mutated foci.Position 48560430 doesn't seem to be mutated. Here are the mutated foci.Position 65098499 doesn't seem to be mutated. Here are the mutated foci.Position 89260166 doesn't seem to be mutated. Here are the mutated foci.Position 3829329 doesn't seem to be mutated. Here are the mutated foci.Position 50774642 doesn't seem to be mutated. Here are the mutated foci.Position 50779779 doesn't seem to be mutated. Here are the mutated foci.Position 68790460 doesn't seem to be mutated. Here are the mutated foci.Position 31142684 doesn't seem to be mutated. Here are the mutated foci.Position 31258898 doesn't seem to be mutated. Here are the mutated foci.Position 31355971 doesn't seem to be mutated. Here are the mutated foci.Position 43104069 doesn't seem to be mutated. Here are the mutated foci.Position 59064924 doesn't seem to be mutated. Here are the mutated foci.Position 10968410 doesn't seem to be mutated. Here are the mutated foci.Position 11039441 doesn't seem to be mutated. Here are the mutated foci.Position 50413424 doesn't seem to be mutated. Here are the mutated foci.Position 32360871 doesn't seem to be mutated. Here are the mutated foci.Position 58889839 doesn't seem to be mutated. Here are the mutated foci.Position 35497593 doesn't seem to be mutated. Here are the mutated foci.Position 35665731 doesn't seem to be mutated. Here are the mutated foci.Position 35799737 doesn't seem to be mutated. Here are the mutated foci.Position 10367583 doesn't seem to be mutated. Here are the mutated foci.Position 179234286 doesn't seem to be mutated. Here are the mutated foci.Position 1799208 doesn't seem to be mutated. Here are the mutated foci.Position 138670753 doesn't seem to be mutated. Here are the mutated foci.Position 157179755 doesn't seem to be mutated. Here are the mutated foci.Position 55154090 doesn't seem to be mutated. Here are the mutated foci.Position 55181329 doesn't seem to be mutated. Here are the mutated foci.Position 140883053 doesn't seem to be mutated. Here are the mutated foci.Position 21829917 doesn't seem to be mutated. Here are the mutated foci.Position 36982273 doesn't seem to be mutated. Here are the mutated foci.Position 108933044 doesn't seem to be mutated. Here are the mutated foci.Position 87864964 doesn't seem to be mutated. Here are the mutated foci.Position 102540718 doesn't seem to be mutated. Here are the mutated foci.Position 31152426 doesn't seem to be mutated. Here are the mutated foci.Position 51071266 doesn't seem to be mutated. Here are the mutated foci.Position 34830892 doesn't seem to be mutated. Here are the mutated foci.Position 34975955 doesn't seem to be mutated. Here are the mutated foci.Position 35116411 doesn't seem to be mutated. Here are the mutated foci.Position 35952617 doesn't seem to be mutated. Here are the mutated foci.Position 77765298 doesn't seem to be mutated. Here are the mutated foci.Position 133897149 doesn't seem to be mutated. Here are the mutated foci.Position 147935045 doesn't seem to be mutated. Here are the mutated foci.Position 12656049 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 61444715 doesn't seem to be mutated. Here are the mutated foci.Position 50180635 doesn't seem to be mutated. Here are the mutated foci.Position 34926546 doesn't seem to be mutated. Here are the mutated foci.Position 78059797 doesn't seem to be mutated. Here are the mutated foci.Position 133712725 doesn't seem to be mutated. Here are the mutated foci.Position 156863413 doesn't seem to be mutated. Here are the mutated foci.Position 58163829 doesn't seem to be mutated. Here are the mutated foci.Position 10060201 doesn't seem to be mutated. Here are the mutated foci.Position 122267005 doesn't seem to be mutated. Here are the mutated foci.Position 128486715 doesn't seem to be mutated. Here are the mutated foci.Position 56931135 doesn't seem to be mutated. Here are the mutated foci.Position 177515371 doesn't seem to be mutated. Here are the mutated foci.Position 36837093 doesn't seem to be mutated. Here are the mutated foci.Position 3815550 doesn't seem to be mutated. Here are the mutated foci.Position 50391110 doesn't seem to be mutated. Here are the mutated foci.Position 133342809 doesn't seem to be mutated. Here are the mutated foci.Position 232000686 doesn't seem to be mutated. Here are the mutated foci.Position 55166601 doesn't seem to be mutated. Here are the mutated foci.Position 117904843 doesn't seem to be mutated. Here are the mutated foci.Position 35500638 doesn't seem to be mutated. Here are the mutated foci.Position 133850156 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 147948069 doesn't seem to be mutated. Here are the mutated foci.Position 10320089 doesn't seem to be mutated. Here are the mutated foci.Position 177193965 doesn't seem to be mutated. Here are the mutated foci.Position 86911792 doesn't seem to be mutated. Here are the mutated foci.Position 41867767 doesn't seem to be mutated. Here are the mutated foci.Position 58858371 doesn't seem to be mutated. Here are the mutated foci.Position 23819372 doesn't seem to be mutated. Here are the mutated foci.Position 39040178 doesn't seem to be mutated. Here are the mutated foci.Position 34909853 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 77717076 doesn't seem to be mutated. Here are the mutated foci.Position 133630633 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 140783106 doesn't seem to be mutated. Here are the mutated foci.Position 31341689 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 23790199 doesn't seem to be mutated. Here are the mutated foci.Position 10325352 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 138659757 doesn't seem to be mutated. Here are the mutated foci.Position 148866518 doesn't seem to be mutated. Here are the mutated foci.Position 99112842 doesn't seem to be mutated. Here are the mutated foci.Position 108873882 doesn't seem to be mutated. Here are the mutated foci.Position 102525612 doesn't seem to be mutated. Here are the mutated foci.Position 11033691 doesn't seem to be mutated. Here are the mutated foci.Position 35084547 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 144387046 doesn't seem to be mutated. Here are the mutated foci.Position 58236464 doesn't seem to be mutated. Here are the mutated foci.Position 231986450 doesn't seem to be mutated. Here are the mutated foci.Position 1268567 doesn't seem to be mutated. Here are the mutated foci.Position 138645739 doesn't seem to be mutated. Here are the mutated foci.Position 55097821 doesn't seem to be mutated. Here are the mutated foci.Position 140786236 doesn't seem to be mutated. Here are the mutated foci.Position 140786252 doesn't seem to be mutated. Here are the mutated foci.Position 148857991 doesn't seem to be mutated. Here are the mutated foci.Position 156874911 doesn't seem to be mutated. Here are the mutated foci.Position 231364507 doesn't seem to be mutated. Here are the mutated foci.Position 29213993 doesn't seem to be mutated. Here are the mutated foci.Position 29473785 doesn't seem to be mutated. Here are the mutated foci.Position 29842751 doesn't seem to be mutated. Here are the mutated foci.Position 47740755 doesn't seem to be mutated. Here are the mutated foci.Position 144446842 doesn't seem to be mutated. Here are the mutated foci.Position 231991805 doesn't seem to be mutated. Here are the mutated foci.Position 232044568 doesn't seem to be mutated. Here are the mutated foci.Position 69778024 doesn't seem to be mutated. Here are the mutated foci.Position 122255257 doesn't seem to be mutated. Here are the mutated foci.Position 37835183 doesn't seem to be mutated. Here are the mutated foci.Position 112715766 doesn't seem to be mutated. Here are the mutated foci.Position 112775367 doesn't seem to be mutated. Here are the mutated foci.Position 138639760 doesn't seem to be mutated. Here are the mutated foci.Position 157194641 doesn't seem to be mutated. Here are the mutated foci.Position 26094235 doesn't seem to be mutated. Here are the mutated foci.Position 5980963 doesn't seem to be mutated. Here are the mutated foci.Position 42013780 doesn't seem to be mutated. Here are the mutated foci.Position 140763622 doesn't seem to be mutated. Here are the mutated foci.Position 140925033 doesn't seem to be mutated. Here are the mutated foci.Position 31066493 doesn't seem to be mutated. Here are the mutated foci.Position 89933274 doesn't seem to be mutated. Here are the mutated foci.Position 117795500 doesn't seem to be mutated. Here are the mutated foci.Position 95161848 doesn't seem to be mutated. Here are the mutated foci.Position 22629836 doesn't seem to be mutated. Here are the mutated foci.Position 47228915 doesn't seem to be mutated. Here are the mutated foci.Position 11735748 doesn't seem to be mutated. Here are the mutated foci.Position 11759162 doesn't seem to be mutated. Here are the mutated foci.Position 12722450 doesn't seem to be mutated. Here are the mutated foci.Position 40208021 doesn't seem to be mutated. Here are the mutated foci.Position 66385176 doesn't seem to be mutated. Here are the mutated foci.Position 3582298 doesn't seem to be mutated. Here are the mutated foci.Position 23638954 doesn't seem to be mutated. Here are the mutated foci.Position 68761802 doesn't seem to be mutated. Here are the mutated foci.Position 68784663 doesn't seem to be mutated. Here are the mutated foci.Position 17219171 doesn't seem to be mutated. Here are the mutated foci.Position 43096183 doesn't seem to be mutated. Here are the mutated foci.Position 50407618 doesn't seem to be mutated. Here are the mutated foci.Position 35130065 doesn't seem to be mutated. Here are the mutated foci.Position 35748283 doesn't seem to be mutated. Here are the mutated foci.Position 35932218 doesn't seem to be mutated. Here are the mutated foci.Position 35944822 doesn't seem to be mutated. Here are the mutated foci.Position 41163304 doesn't seem to be mutated. Here are the mutated foci.Position 77615818 doesn't seem to be mutated. Here are the mutated foci.Position 124346007 doesn't seem to be mutated. Here are the mutated foci.Position 133872053 doesn't seem to be mutated. Here are the mutated foci.Position 193117473 doesn't seem to be mutated. Here are the mutated foci.Position 193247383 doesn't seem to be mutated. Here are the mutated foci.Position 58198046 doesn't seem to be mutated. Here are the mutated foci.Position 56936225 doesn't seem to be mutated. Here are the mutated foci.Position 42000948 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 86784888 doesn't seem to be mutated. Here are the mutated foci.Position 82535088 doesn't seem to be mutated. Here are the mutated foci.Position 31104020 doesn't seem to be mutated. Here are the mutated foci.Position 169014600 doesn't seem to be mutated. Here are the mutated foci.Position 17231398 doesn't seem to be mutated. Here are the mutated foci.Position 17231405 doesn't seem to be mutated. Here are the mutated foci.Position 58855378 doesn't seem to be mutated. Here are the mutated foci.Position 17035333 doesn't seem to be mutated. Here are the mutated foci.Position 193221302 doesn't seem to be mutated. Here are the mutated foci.Position 231382415 doesn't seem to be mutated. Here are the mutated foci.Position 232012501 doesn't seem to be mutated. Here are the mutated foci.Position 232217382 doesn't seem to be mutated. Here are the mutated foci.Position 56942126 doesn't seem to be mutated. Here are the mutated foci.Position 80741233 doesn't seem to be mutated. Here are the mutated foci.Position 132627522 doesn't seem to be mutated. Here are the mutated foci.Position 42128441 doesn't seem to be mutated. Here are the mutated foci.Position 116744016 doesn't seem to be mutated. Here are the mutated foci.Position 116765608 doesn't seem to be mutated. Here are the mutated foci.Position 142751776 doesn't seem to be mutated. Here are the mutated foci.Position 117967410 doesn't seem to be mutated. Here are the mutated foci.Position 11858463 doesn't seem to be mutated. Here are the mutated foci.Position 111432978 doesn't seem to be mutated. Here are the mutated foci.Position 132667366 doesn't seem to be mutated. Here are the mutated foci.Position 95105850 doesn't seem to be mutated. Here are the mutated foci.Position 39203517 doesn't seem to be mutated. Here are the mutated foci.Position 68511391 doesn't seem to be mutated. Here are the mutated foci.Position 35451376 doesn't seem to be mutated. Here are the mutated foci.Position 35451381 doesn't seem to be mutated. Here are the mutated foci.Position 35484952 doesn't seem to be mutated. Here are the mutated foci.Position 35773660 doesn't seem to be mutated. Here are the mutated foci.Position 77507004 doesn't seem to be mutated. Here are the mutated foci.Position 44834565 doesn't seem to be mutated. Here are the mutated foci.Position 29296723 doesn't seem to be mutated. Here are the mutated foci.Position 47782807 doesn't seem to be mutated. Here are the mutated foci.Position 47783149 doesn't seem to be mutated. Here are the mutated foci.Position 1276650 doesn't seem to be mutated. Here are the mutated foci.Position 140788147 doesn't seem to be mutated. Here are the mutated foci.Position 58855378 doesn't seem to be mutated. Here are the mutated foci.Position 156873476 doesn't seem to be mutated. Here are the mutated foci.Position 29328457 doesn't seem to be mutated. Here are the mutated foci.Position 29560640 doesn't seem to be mutated. Here are the mutated foci.Position 47745530 doesn't seem to be mutated. Here are the mutated foci.Position 144459520 doesn't seem to be mutated. Here are the mutated foci.Position 232305847 doesn't seem to be mutated. Here are the mutated foci.Position 10089026 doesn't seem to be mutated. Here are the mutated foci.Position 48579951 doesn't seem to be mutated. Here are the mutated foci.Position 122221365 doesn't seem to be mutated. Here are the mutated foci.Position 41740767 doesn't seem to be mutated. Here are the mutated foci.Position 54664970 doesn't seem to be mutated. Here are the mutated foci.Position 177135585 doesn't seem to be mutated. Here are the mutated foci.Position 177287164 doesn't seem to be mutated. Here are the mutated foci.Position 41986535 doesn't seem to be mutated. Here are the mutated foci.Position 50362293 doesn't seem to be mutated. Here are the mutated foci.Position 55148482 doesn't seem to be mutated. Here are the mutated foci.Position 93153297 doesn't seem to be mutated. Here are the mutated foci.Position 96242382 doesn't seem to be mutated. Here are the mutated foci.Position 96293999 doesn't seem to be mutated. Here are the mutated foci.Position 31112523 doesn't seem to be mutated. Here are the mutated foci.Position 117821631 doesn't seem to be mutated. Here are the mutated foci.Position 117868181 doesn't seem to be mutated. Here are the mutated foci.Position 117888994 doesn't seem to be mutated. Here are the mutated foci.Position 117916666 doesn't seem to be mutated. Here are the mutated foci.Position 117940472 doesn't seem to be mutated. Here are the mutated foci.Position 86928240 doesn't seem to be mutated. Here are the mutated foci.Position 87938005 doesn't seem to be mutated. Here are the mutated foci.Position 110948968 doesn't seem to be mutated. Here are the mutated foci.Position 44123699 doesn't seem to be mutated. Here are the mutated foci.Position 48584549 doesn't seem to be mutated. Here are the mutated foci.Position 102863331 doesn't seem to be mutated. Here are the mutated foci.Position 3583899 doesn't seem to be mutated. Here are the mutated foci.Position 3842372 doesn't seem to be mutated. Here are the mutated foci.Position 31258363 doesn't seem to be mutated. Here are the mutated foci.Position 58726996 doesn't seem to be mutated. Here are the mutated foci.Position 51027110 doesn't seem to be mutated. Here are the mutated foci.Position 51058485 doesn't seem to be mutated. Here are the mutated foci.Position 34876119 doesn't seem to be mutated. Here are the mutated foci.Position 133725561 doesn't seem to be mutated. Here are the mutated foci.Position 133813990 doesn't seem to be mutated. Here are the mutated foci.Position 193241000 doesn't seem to be mutated. Here are the mutated foci.Position 231405791 doesn't seem to be mutated. Here are the mutated foci.Position 47598551 doesn't seem to be mutated. Here are the mutated foci.Position 87934942 doesn't seem to be mutated. Here are the mutated foci.Position 11663771 doesn't seem to be mutated. Here are the mutated foci.Position 43059899 doesn't seem to be mutated. Here are the mutated foci.Position 51030714 doesn't seem to be mutated. Here are the mutated foci.Position 35007310 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 144456130 doesn't seem to be mutated. Here are the mutated foci.Position 34426814 doesn't seem to be mutated. Here are the mutated foci.Position 104857203 doesn't seem to be mutated. Here are the mutated foci.Position 140766129 doesn't seem to be mutated. Here are the mutated foci.Position 148884212 doesn't seem to be mutated. Here are the mutated foci.Position 108346252 doesn't seem to be mutated. Here are the mutated foci.Position 35098847 doesn't seem to be mutated. Here are the mutated foci.Position 33305275 doesn't seem to be mutated. Here are the mutated foci.Position 77553974 doesn't seem to be mutated. Here are the mutated foci.Position 10369768 doesn't seem to be mutated. Here are the mutated foci.Position 138729109 doesn't seem to be mutated. Here are the mutated foci.Position 55167714 doesn't seem to be mutated. Here are the mutated foci.Position 93131834 doesn't seem to be mutated. Here are the mutated foci.Position 47783320 doesn't seem to be mutated. Here are the mutated foci.Position 10050741 doesn't seem to be mutated. Here are the mutated foci.Position 179230547 doesn't seem to be mutated. Here are the mutated foci.Position 70598522 doesn't seem to be mutated. Here are the mutated foci.Position 90792093 doesn't seem to be mutated. Here are the mutated foci.Position 68773104 doesn't seem to be mutated. Here are the mutated foci.Position 7674247 doesn't seem to be mutated. Here are the mutated foci.Position 43073749 doesn't seem to be mutated. Here are the mutated foci.Position 10956024 doesn't seem to be mutated. Here are the mutated foci.Position 77616031 doesn't seem to be mutated. Here are the mutated foci.Position 140734786 doesn't seem to be mutated. Here are the mutated foci.Position 140761354 doesn't seem to be mutated. Here are the mutated foci.Position 142753586 doesn't seem to be mutated. Here are the mutated foci.Position 154278508 doesn't seem to be mutated. Here are the mutated foci.Position 29748753 doesn't seem to be mutated. Here are the mutated foci.Position 116711627 doesn't seem to be mutated. Here are the mutated foci.Position 95145790 doesn't seem to be mutated. Here are the mutated foci.Position 58182770 doesn't seem to be mutated. Here are the mutated foci.Position 144368884 doesn't seem to be mutated. Here are the mutated foci.Position 144452803 doesn't seem to be mutated. Here are the mutated foci.Position 232049456 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 132563325 doesn't seem to be mutated. Here are the mutated foci.Position 157174481 doesn't seem to be mutated. Here are the mutated foci.Position 42072000 doesn't seem to be mutated. Here are the mutated foci.Position 221658 doesn't seem to be mutated. Here are the mutated foci.Position 2065444 doesn't seem to be mutated. Here are the mutated foci.Position 87867072 doesn't seem to be mutated. Here are the mutated foci.Position 113560672 doesn't seem to be mutated. Here are the mutated foci.Position 32430433 doesn't seem to be mutated. Here are the mutated foci.Position 112466105 doesn't seem to be mutated. Here are the mutated foci.Position 48549718 doesn't seem to be mutated. Here are the mutated foci.Position 45178210 doesn't seem to be mutated. Here are the mutated foci.Position 50122922 doesn't seem to be mutated. Here are the mutated foci.Position 31234628 doesn't seem to be mutated. Here are the mutated foci.Position 43084308 doesn't seem to be mutated. Here are the mutated foci.Position 43113902 doesn't seem to be mutated. Here are the mutated foci.Position 32409752 doesn't seem to be mutated. Here are the mutated foci.Position 34985994 doesn't seem to be mutated. Here are the mutated foci.Position 35188780 doesn't seem to be mutated. Here are the mutated foci.Position 35292040 doesn't seem to be mutated. Here are the mutated foci.Position 35876793 doesn't seem to be mutated. Here are the mutated foci.Position 77630473 doesn't seem to be mutated. Here are the mutated foci.Position 133709078 doesn't seem to be mutated. Here are the mutated foci.Position 133734160 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 142746967 doesn't seem to be mutated. Here are the mutated foci.Position 142746969 doesn't seem to be mutated. Here are the mutated foci.Position 78031547 doesn't seem to be mutated. Here are the mutated foci.Position 112469363 doesn't seem to be mutated. Here are the mutated foci.Position 95145675 doesn't seem to be mutated. Here are the mutated foci.Position 31172344 doesn't seem to be mutated. Here are the mutated foci.Position 77765670 doesn't seem to be mutated. Here are the mutated foci.Position 10051022 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 56936522 doesn't seem to be mutated. Here are the mutated foci.Position 96185848 doesn't seem to be mutated. Here are the mutated foci.Position 108270646 doesn't seem to be mutated. Here are the mutated foci.Position 119238315 doesn't seem to be mutated. Here are the mutated foci.Position 48427171 doesn't seem to be mutated. Here are the mutated foci.Position 40693296 doesn't seem to be mutated. Here are the mutated foci.Position 42380640 doesn't seem to be mutated. Here are the mutated foci.Position 11073931 doesn't seem to be mutated. Here are the mutated foci.Position 77772643 doesn't seem to be mutated. Here are the mutated foci.Position 193120056 doesn't seem to be mutated. Here are the mutated foci.Position 214727925 doesn't seem to be mutated. Here are the mutated foci.Position 214772450 doesn't seem to be mutated. Here are the mutated foci.Position 252644 doesn't seem to be mutated. Here are the mutated foci.Position 104839833 doesn't seem to be mutated. Here are the mutated foci.Position 140757201 doesn't seem to be mutated. Here are the mutated foci.Position 117946461 doesn't seem to be mutated. Here are the mutated foci.Position 95379317 doesn't seem to be mutated. Here are the mutated foci.Position 95418673 doesn't seem to be mutated. Here are the mutated foci.Position 108918595 doesn't seem to be mutated. Here are the mutated foci.Position 61961313 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 113553431 doesn't seem to be mutated. Here are the mutated foci.Position 121550562 doesn't seem to be mutated. Here are the mutated foci.Position 11685206 doesn't seem to be mutated. Here are the mutated foci.Position 32344683 doesn't seem to be mutated. Here are the mutated foci.Position 48563910 doesn't seem to be mutated. Here are the mutated foci.Position 36519290 doesn't seem to be mutated. Here are the mutated foci.Position 94374677 doesn't seem to be mutated. Here are the mutated foci.Position 32733844 doesn't seem to be mutated. Here are the mutated foci.Position 40212843 doesn't seem to be mutated. Here are the mutated foci.Position 2070793 doesn't seem to be mutated. Here are the mutated foci.Position 7679288 doesn't seem to be mutated. Here are the mutated foci.Position 10982464 doesn't seem to be mutated. Here are the mutated foci.Position 34894421 doesn't seem to be mutated. Here are the mutated foci.Position 35041043 doesn't seem to be mutated. Here are the mutated foci.Position 10223525 doesn't seem to be mutated. Here are the mutated foci.Position 10227808 doesn't seem to be mutated. Here are the mutated foci.Position 10234213 doesn't seem to be mutated. Here are the mutated foci.Position 10248190 doesn't seem to be mutated. Here are the mutated foci.Position 10252722 doesn't seem to be mutated. Here are the mutated foci.Position 10257230 doesn't seem to be mutated. Here are the mutated foci.Position 10259505 doesn't seem to be mutated. Here are the mutated foci.Position 10260868 doesn't seem to be mutated. Here are the mutated foci.Position 10271171 doesn't seem to be mutated. Here are the mutated foci.Position 10290863 doesn't seem to be mutated. Here are the mutated foci.Position 10373546 doesn't seem to be mutated. Here are the mutated foci.Position 10382084 doesn't seem to be mutated. Here are the mutated foci.Position 17041929 doesn't seem to be mutated. Here are the mutated foci.Position 23687992 doesn't seem to be mutated. Here are the mutated foci.Position 44819264 doesn't seem to be mutated. Here are the mutated foci.Position 44828266 doesn't seem to be mutated. Here are the mutated foci.Position 44833439 doesn't seem to be mutated. Here are the mutated foci.Position 45332219 doesn't seem to be mutated. Here are the mutated foci.Position 92836012 doesn't seem to be mutated. Here are the mutated foci.Position 161324508 doesn't seem to be mutated. Here are the mutated foci.Position 161340472 doesn't seem to be mutated. Here are the mutated foci.Position 161344132 doesn't seem to be mutated. Here are the mutated foci.Position 161366782 doesn't seem to be mutated. Here are the mutated foci.Position 161379837 doesn't seem to be mutated. Here are the mutated foci.Position 193177390 doesn't seem to be mutated. Here are the mutated foci.Position 193205517 doesn't seem to be mutated. Here are the mutated foci.Position 193221400 doesn't seem to be mutated. Here are the mutated foci.Position 193223866 doesn't seem to be mutated. Here are the mutated foci.Position 193224892 doesn't seem to be mutated. Here are the mutated foci.Position 193234110 doesn't seem to be mutated. Here are the mutated foci.Position 29212391 doesn't seem to be mutated. Here are the mutated foci.Position 29359104 doesn't seem to be mutated. Here are the mutated foci.Position 29447464 doesn't seem to be mutated. Here are the mutated foci.Position 29578817 doesn't seem to be mutated. Here are the mutated foci.Position 29724776 doesn't seem to be mutated. Here are the mutated foci.Position 29821085 doesn't seem to be mutated. Here are the mutated foci.Position 29841200 doesn't seem to be mutated. Here are the mutated foci.Position 39036354 doesn't seem to be mutated. Here are the mutated foci.Position 39045732 doesn't seem to be mutated. Here are the mutated foci.Position 39064925 doesn't seem to be mutated. Here are the mutated foci.Position 39086820 doesn't seem to be mutated. Here are the mutated foci.Position 39103359 doesn't seem to be mutated. Here are the mutated foci.Position 47422662 doesn't seem to be mutated. Here are the mutated foci.Position 47460843 doesn't seem to be mutated. Here are the mutated foci.Position 47624525 doesn't seem to be mutated. Here are the mutated foci.Position 47724853 doesn't seem to be mutated. Here are the mutated foci.Position 47749992 doesn't seem to be mutated. Here are the mutated foci.Position 47804133 doesn't seem to be mutated. Here are the mutated foci.Position 58217792 doesn't seem to be mutated. Here are the mutated foci.Position 96244189 doesn't seem to be mutated. Here are the mutated foci.Position 127264848 doesn't seem to be mutated. Here are the mutated foci.Position 127266083 doesn't seem to be mutated. Here are the mutated foci.Position 127271051 doesn't seem to be mutated. Here are the mutated foci.Position 144399214 doesn't seem to be mutated. Here are the mutated foci.Position 144415005 doesn't seem to be mutated. Here are the mutated foci.Position 144416997 doesn't seem to be mutated. Here are the mutated foci.Position 168992015 doesn't seem to be mutated. Here are the mutated foci.Position 169031637 doesn't seem to be mutated. Here are the mutated foci.Position 231990179 doesn't seem to be mutated. Here are the mutated foci.Position 232024751 doesn't seem to be mutated. Here are the mutated foci.Position 232052030 doesn't seem to be mutated. Here are the mutated foci.Position 232056951 doesn't seem to be mutated. Here are the mutated foci.Position 232116828 doesn't seem to be mutated. Here are the mutated foci.Position 232259302 doesn't seem to be mutated. Here are the mutated foci.Position 10041843 doesn't seem to be mutated. Here are the mutated foci.Position 10079086 doesn't seem to be mutated. Here are the mutated foci.Position 10091477 doesn't seem to be mutated. Here are the mutated foci.Position 10153816 doesn't seem to be mutated. Here are the mutated foci.Position 14175446 doesn't seem to be mutated. Here are the mutated foci.Position 37039401 doesn't seem to be mutated. Here are the mutated foci.Position 48566290 doesn't seem to be mutated. Here are the mutated foci.Position 69808491 doesn't seem to be mutated. Here are the mutated foci.Position 69817118 doesn't seem to be mutated. Here are the mutated foci.Position 69822904 doesn't seem to be mutated. Here are the mutated foci.Position 69827733 doesn't seem to be mutated. Here are the mutated foci.Position 69862699 doesn't seem to be mutated. Here are the mutated foci.Position 122225384 doesn't seem to be mutated. Here are the mutated foci.Position 128491220 doesn't seem to be mutated. Here are the mutated foci.Position 158584719 doesn't seem to be mutated. Here are the mutated foci.Position 158589210 doesn't seem to be mutated. Here are the mutated foci.Position 158607569 doesn't seem to be mutated. Here are the mutated foci.Position 179150013 doesn't seem to be mutated. Here are the mutated foci.Position 179179871 doesn't seem to be mutated. Here are the mutated foci.Position 54296368 doesn't seem to be mutated. Here are the mutated foci.Position 54686219 doesn't seem to be mutated. Here are the mutated foci.Position 54694243 doesn't seem to be mutated. Here are the mutated foci.Position 54704914 doesn't seem to be mutated. Here are the mutated foci.Position 56919377 doesn't seem to be mutated. Here are the mutated foci.Position 56922092 doesn't seem to be mutated. Here are the mutated foci.Position 904874 doesn't seem to be mutated. Here are the mutated foci.Position 1255432 doesn't seem to be mutated. Here are the mutated foci.Position 1271836 doesn't seem to be mutated. Here are the mutated foci.Position 1299236 doesn't seem to be mutated. Here are the mutated foci.Position 37808297 doesn't seem to be mutated. Here are the mutated foci.Position 80691532 doesn't seem to be mutated. Here are the mutated foci.Position 80767177 doesn't seem to be mutated. Here are the mutated foci.Position 80781479 doesn't seem to be mutated. Here are the mutated foci.Position 112760813 doesn't seem to be mutated. Here are the mutated foci.Position 112820182 doesn't seem to be mutated. Here are the mutated foci.Position 112848483 doesn't seem to be mutated. Here are the mutated foci.Position 132558007 doesn't seem to be mutated. Here are the mutated foci.Position 132560077 doesn't seem to be mutated. Here are the mutated foci.Position 132585592 doesn't seem to be mutated. Here are the mutated foci.Position 138609504 doesn't seem to be mutated. Here are the mutated foci.Position 138632835 doesn't seem to be mutated. Here are the mutated foci.Position 138713802 doesn't seem to be mutated. Here are the mutated foci.Position 138757034 doesn't seem to be mutated. Here are the mutated foci.Position 138779708 doesn't seem to be mutated. Here are the mutated foci.Position 138803159 doesn't seem to be mutated. Here are the mutated foci.Position 138921597 doesn't seem to be mutated. Here are the mutated foci.Position 157209928 doesn't seem to be mutated. Here are the mutated foci.Position 177136607 doesn't seem to be mutated. Here are the mutated foci.Position 177139941 doesn't seem to be mutated. Here are the mutated foci.Position 177166744 doesn't seem to be mutated. Here are the mutated foci.Position 177171306 doesn't seem to be mutated. Here are the mutated foci.Position 177175629 doesn't seem to be mutated. Here are the mutated foci.Position 177176265 doesn't seem to be mutated. Here are the mutated foci.Position 177224031 doesn't seem to be mutated. Here are the mutated foci.Position 177237532 doesn't seem to be mutated. Here are the mutated foci.Position 177274155 doesn't seem to be mutated. Here are the mutated foci.Position 26084526 doesn't seem to be mutated. Here are the mutated foci.Position 26101809 doesn't seem to be mutated. Here are the mutated foci.Position 34422617 doesn't seem to be mutated. Here are the mutated foci.Position 43590333 doesn't seem to be mutated. Here are the mutated foci.Position 43599638 doesn't seem to be mutated. Here are the mutated foci.Position 104738041 doesn't seem to be mutated. Here are the mutated foci.Position 104841119 doesn't seem to be mutated. Here are the mutated foci.Position 104847810 doesn't seem to be mutated. Here are the mutated foci.Position 104857200 doesn't seem to be mutated. Here are the mutated foci.Position 5982023 doesn't seem to be mutated. Here are the mutated foci.Position 5982351 doesn't seem to be mutated. Here are the mutated foci.Position 5992174 doesn't seem to be mutated. Here are the mutated foci.Position 41959691 doesn't seem to be mutated. Here are the mutated foci.Position 42098366 doesn't seem to be mutated. Here are the mutated foci.Position 42151901 doesn't seem to be mutated. Here are the mutated foci.Position 42164518 doesn't seem to be mutated. Here are the mutated foci.Position 42183068 doesn't seem to be mutated. Here are the mutated foci.Position 42227709 doesn't seem to be mutated. Here are the mutated foci.Position 50301436 doesn't seem to be mutated. Here are the mutated foci.Position 50311873 doesn't seem to be mutated. Here are the mutated foci.Position 50329165 doesn't seem to be mutated. Here are the mutated foci.Position 50341977 doesn't seem to be mutated. Here are the mutated foci.Position 55046588 doesn't seem to be mutated. Here are the mutated foci.Position 55099825 doesn't seem to be mutated. Here are the mutated foci.Position 55131288 doesn't seem to be mutated. Here are the mutated foci.Position 96134026 doesn't seem to be mutated. Here are the mutated foci.Position 96180175 doesn't seem to be mutated. Here are the mutated foci.Position 96205946 doesn't seem to be mutated. Here are the mutated foci.Position 96232621 doesn't seem to be mutated. Here are the mutated foci.Position 96247959 doesn't seem to be mutated. Here are the mutated foci.Position 116671570 doesn't seem to be mutated. Here are the mutated foci.Position 116728303 doesn't seem to be mutated. Here are the mutated foci.Position 116732909 doesn't seem to be mutated. Here are the mutated foci.Position 116754874 doesn't seem to be mutated. Here are the mutated foci.Position 124905521 doesn't seem to be mutated. Here are the mutated foci.Position 124912250 doesn't seem to be mutated. Here are the mutated foci.Position 124917075 doesn't seem to be mutated. Here are the mutated foci.Position 124930675 doesn't seem to be mutated. Here are the mutated foci.Position 140769108 doesn't seem to be mutated. Here are the mutated foci.Position 140832876 doesn't seem to be mutated. Here are the mutated foci.Position 140853225 doesn't seem to be mutated. Here are the mutated foci.Position 140891758 doesn't seem to be mutated. Here are the mutated foci.Position 140907748 doesn't seem to be mutated. Here are the mutated foci.Position 142756782 doesn't seem to be mutated. Here are the mutated foci.Position 148813331 doesn't seem to be mutated. Here are the mutated foci.Position 148820552 doesn't seem to be mutated. Here are the mutated foci.Position 148839528 doesn't seem to be mutated. Here are the mutated foci.Position 148863064 doesn't seem to be mutated. Here are the mutated foci.Position 148874897 doesn't seem to be mutated. Here are the mutated foci.Position 31062410 doesn't seem to be mutated. Here are the mutated foci.Position 31103836 doesn't seem to be mutated. Here are the mutated foci.Position 38415469 doesn't seem to be mutated. Here are the mutated foci.Position 38444388 doesn't seem to be mutated. Here are the mutated foci.Position 89954536 doesn't seem to be mutated. Here are the mutated foci.Position 89957104 doesn't seem to be mutated. Here are the mutated foci.Position 117856267 doesn't seem to be mutated. Here are the mutated foci.Position 117867261 doesn't seem to be mutated. Here are the mutated foci.Position 117904843 doesn't seem to be mutated. Here are the mutated foci.Position 118025386 doesn't seem to be mutated. Here are the mutated foci.Position 118053411 doesn't seem to be mutated. Here are the mutated foci.Position 368660 doesn't seem to be mutated. Here are the mutated foci.Position 2005100 doesn't seem to be mutated. Here are the mutated foci.Position 2036177 doesn't seem to be mutated. Here are the mutated foci.Position 2059170 doesn't seem to be mutated. Here are the mutated foci.Position 2122327 doesn't seem to be mutated. Here are the mutated foci.Position 2133647 doesn't seem to be mutated. Here are the mutated foci.Position 2172239 doesn't seem to be mutated. Here are the mutated foci.Position 36927713 doesn't seem to be mutated. Here are the mutated foci.Position 95144521 doesn't seem to be mutated. Here are the mutated foci.Position 95151961 doesn't seem to be mutated. Here are the mutated foci.Position 95152939 doesn't seem to be mutated. Here are the mutated foci.Position 95201211 doesn't seem to be mutated. Here are the mutated foci.Position 95211862 doesn't seem to be mutated. Here are the mutated foci.Position 95243629 doesn't seem to be mutated. Here are the mutated foci.Position 95249303 doesn't seem to be mutated. Here are the mutated foci.Position 95252296 doesn't seem to be mutated. Here are the mutated foci.Position 95289834 doesn't seem to be mutated. Here are the mutated foci.Position 95307341 doesn't seem to be mutated. Here are the mutated foci.Position 95339417 doesn't seem to be mutated. Here are the mutated foci.Position 95483265 doesn't seem to be mutated. Here are the mutated foci.Position 95493801 doesn't seem to be mutated. Here are the mutated foci.Position 99152839 doesn't seem to be mutated. Here are the mutated foci.Position 61906222 doesn't seem to be mutated. Here are the mutated foci.Position 61932211 doesn't seem to be mutated. Here are the mutated foci.Position 61938943 doesn't seem to be mutated. Here are the mutated foci.Position 62011658 doesn't seem to be mutated. Here are the mutated foci.Position 62029196 doesn't seem to be mutated. Here are the mutated foci.Position 62030135 doesn't seem to be mutated. Here are the mutated foci.Position 62070050 doesn't seem to be mutated. Here are the mutated foci.Position 62081999 doesn't seem to be mutated. Here are the mutated foci.Position 78031397 doesn't seem to be mutated. Here are the mutated foci.Position 78036563 doesn't seem to be mutated. Here are the mutated foci.Position 86931298 doesn't seem to be mutated. Here are the mutated foci.Position 87954224 doesn't seem to be mutated. Here are the mutated foci.Position 87958013 doesn't seem to be mutated. Here are the mutated foci.Position 89005648 doesn't seem to be mutated. Here are the mutated foci.Position 102511722 doesn't seem to be mutated. Here are the mutated foci.Position 102535974 doesn't seem to be mutated. Here are the mutated foci.Position 102557067 doesn't seem to be mutated. Here are the mutated foci.Position 102560467 doesn't seem to be mutated. Here are the mutated foci.Position 102577080 doesn't seem to be mutated. Here are the mutated foci.Position 113579761 doesn't seem to be mutated. Here are the mutated foci.Position 121488541 doesn't seem to be mutated. Here are the mutated foci.Position 121498470 doesn't seem to be mutated. Here are the mutated foci.Position 32392973 doesn't seem to be mutated. Here are the mutated foci.Position 44133778 doesn't seem to be mutated. Here are the mutated foci.Position 44153983 doesn't seem to be mutated. Here are the mutated foci.Position 44159010 doesn't seem to be mutated. Here are the mutated foci.Position 44214752 doesn't seem to be mutated. Here are the mutated foci.Position 67482760 doesn't seem to be mutated. Here are the mutated foci.Position 67487535 doesn't seem to be mutated. Here are the mutated foci.Position 108235296 doesn't seem to be mutated. Here are the mutated foci.Position 108243935 doesn't seem to be mutated. Here are the mutated foci.Position 108270697 doesn't seem to be mutated. Here are the mutated foci.Position 108321786 doesn't seem to be mutated. Here are the mutated foci.Position 108364317 doesn't seem to be mutated. Here are the mutated foci.Position 119221767 doesn't seem to be mutated. Here are the mutated foci.Position 119236342 doesn't seem to be mutated. Here are the mutated foci.Position 119292374 doesn't seem to be mutated. Here are the mutated foci.Position 11645437 doesn't seem to be mutated. Here are the mutated foci.Position 11765719 doesn't seem to be mutated. Here are the mutated foci.Position 111414590 doesn't seem to be mutated. Here are the mutated foci.Position 111417364 doesn't seem to be mutated. Here are the mutated foci.Position 111435447 doesn't seem to be mutated. Here are the mutated foci.Position 112446741 doesn't seem to be mutated. Here are the mutated foci.Position 112459434 doesn't seem to be mutated. Here are the mutated foci.Position 112469363 doesn't seem to be mutated. Here are the mutated foci.Position 112471718 doesn't seem to be mutated. Here are the mutated foci.Position 112478409 doesn't seem to be mutated. Here are the mutated foci.Position 112491273 doesn't seem to be mutated. Here are the mutated foci.Position 112509694 doesn't seem to be mutated. Here are the mutated foci.Position 132636776 doesn't seem to be mutated. Here are the mutated foci.Position 132650615 doesn't seem to be mutated. Here are the mutated foci.Position 132656366 doesn't seem to be mutated. Here are the mutated foci.Position 132682292 doesn't seem to be mutated. Here are the mutated foci.Position 132685879 doesn't seem to be mutated. Here are the mutated foci.Position 32327673 doesn't seem to be mutated. Here are the mutated foci.Position 32329658 doesn't seem to be mutated. Here are the mutated foci.Position 32330657 doesn't seem to be mutated. Here are the mutated foci.Position 32335228 doesn't seem to be mutated. Here are the mutated foci.Position 32343049 doesn't seem to be mutated. Here are the mutated foci.Position 32349322 doesn't seem to be mutated. Here are the mutated foci.Position 32350753 doesn't seem to be mutated. Here are the mutated foci.Position 32398489 doesn't seem to be mutated. Here are the mutated foci.Position 32399143 doesn't seem to be mutated. Here are the mutated foci.Position 32399787 doesn't seem to be mutated. Here are the mutated foci.Position 48360005 doesn't seem to be mutated. Here are the mutated foci.Position 48380147 doesn't seem to be mutated. Here are the mutated foci.Position 48431562 doesn't seem to be mutated. Here are the mutated foci.Position 48438556 doesn't seem to be mutated. Here are the mutated foci.Position 48458338 doesn't seem to be mutated. Here are the mutated foci.Position 48479227 doesn't seem to be mutated. Here are the mutated foci.Position 48563778 doesn't seem to be mutated. Here are the mutated foci.Position 102878067 doesn't seem to be mutated. Here are the mutated foci.Position 23122683 doesn't seem to be mutated. Here are the mutated foci.Position 23123725 doesn't seem to be mutated. Here are the mutated foci.Position 45200958 doesn't seem to be mutated. Here are the mutated foci.Position 45203092 doesn't seem to be mutated. Here are the mutated foci.Position 50133973 doesn't seem to be mutated. Here are the mutated foci.Position 50180849 doesn't seem to be mutated. Here are the mutated foci.Position 50200685 doesn't seem to be mutated. Here are the mutated foci.Position 50224050 doesn't seem to be mutated. Here are the mutated foci.Position 50224303 doesn't seem to be mutated. Here are the mutated foci.Position 95108528 doesn't seem to be mutated. Here are the mutated foci.Position 34341927 doesn't seem to be mutated. Here are the mutated foci.Position 38282507 doesn't seem to be mutated. Here are the mutated foci.Position 38309801 doesn't seem to be mutated. Here are the mutated foci.Position 38331444 doesn't seem to be mutated. Here are the mutated foci.Position 40173156 doesn't seem to be mutated. Here are the mutated foci.Position 40185041 doesn't seem to be mutated. Here are the mutated foci.Position 40693647 doesn't seem to be mutated. Here are the mutated foci.Position 40712858 doesn't seem to be mutated. Here are the mutated foci.Position 40717722 doesn't seem to be mutated. Here are the mutated foci.Position 66385497 doesn't seem to be mutated. Here are the mutated foci.Position 66399455 doesn't seem to be mutated. Here are the mutated foci.Position 66405017 doesn't seem to be mutated. Here are the mutated foci.Position 66421444 doesn't seem to be mutated. Here are the mutated foci.Position 66445871 doesn't seem to be mutated. Here are the mutated foci.Position 66480570 doesn't seem to be mutated. Here are the mutated foci.Position 80189925 doesn't seem to be mutated. Here are the mutated foci.Position 82535565 doesn't seem to be mutated. Here are the mutated foci.Position 89267333 doesn't seem to be mutated. Here are the mutated foci.Position 89289719 doesn't seem to be mutated. Here are the mutated foci.Position 89296923 doesn't seem to be mutated. Here are the mutated foci.Position 89302763 doesn't seem to be mutated. Here are the mutated foci.Position 90748106 doesn't seem to be mutated. Here are the mutated foci.Position 90748764 doesn't seem to be mutated. Here are the mutated foci.Position 90760096 doesn't seem to be mutated. Here are the mutated foci.Position 2040765 doesn't seem to be mutated. Here are the mutated foci.Position 3608159 doesn't seem to be mutated. Here are the mutated foci.Position 3724083 doesn't seem to be mutated. Here are the mutated foci.Position 3740677 doesn't seem to be mutated. Here are the mutated foci.Position 3752456 doesn't seem to be mutated. Here are the mutated foci.Position 3829057 doesn't seem to be mutated. Here are the mutated foci.Position 3885163 doesn't seem to be mutated. Here are the mutated foci.Position 13922252 doesn't seem to be mutated. Here are the mutated foci.Position 13940399 doesn't seem to be mutated. Here are the mutated foci.Position 23608823 doesn't seem to be mutated. Here are the mutated foci.Position 23617580 doesn't seem to be mutated. Here are the mutated foci.Position 68733205 doesn't seem to be mutated. Here are the mutated foci.Position 68742286 doesn't seem to be mutated. Here are the mutated foci.Position 68753344 doesn't seem to be mutated. Here are the mutated foci.Position 68759866 doesn't seem to be mutated. Here are the mutated foci.Position 68767960 doesn't seem to be mutated. Here are the mutated foci.Position 68787509 doesn't seem to be mutated. Here are the mutated foci.Position 68800034 doesn't seem to be mutated. Here are the mutated foci.Position 89782007 doesn't seem to be mutated. Here are the mutated foci.Position 89790740 doesn't seem to be mutated. Here are the mutated foci.Position 89801897 doesn't seem to be mutated. Here are the mutated foci.Position 7667439 doesn't seem to be mutated. Here are the mutated foci.Position 7673803 doesn't seem to be mutated. Here are the mutated foci.Position 7674894 doesn't seem to be mutated. Here are the mutated foci.Position 31097704 doesn't seem to be mutated. Here are the mutated foci.Position 31122472 doesn't seem to be mutated. Here are the mutated foci.Position 31124977 doesn't seem to be mutated. Here are the mutated foci.Position 31150679 doesn't seem to be mutated. Here are the mutated foci.Position 31155959 doesn't seem to be mutated. Here are the mutated foci.Position 31231729 doesn't seem to be mutated. Here are the mutated foci.Position 31261733 doesn't seem to be mutated. Here are the mutated foci.Position 31278620 doesn't seem to be mutated. Here are the mutated foci.Position 31336885 doesn't seem to be mutated. Here are the mutated foci.Position 31351861 doesn't seem to be mutated. Here are the mutated foci.Position 35097494 doesn't seem to be mutated. Here are the mutated foci.Position 35097495 doesn't seem to be mutated. Here are the mutated foci.Position 35097498 doesn't seem to be mutated. Here are the mutated foci.Position 35105299 doesn't seem to be mutated. Here are the mutated foci.Position 42351925 doesn't seem to be mutated. Here are the mutated foci.Position 42367340 doesn't seem to be mutated. Here are the mutated foci.Position 43050880 doesn't seem to be mutated. Here are the mutated foci.Position 43072568 doesn't seem to be mutated. Here are the mutated foci.Position 43101127 doesn't seem to be mutated. Here are the mutated foci.Position 43112810 doesn't seem to be mutated. Here are the mutated foci.Position 43151484 doesn't seem to be mutated. Here are the mutated foci.Position 58713985 doesn't seem to be mutated. Here are the mutated foci.Position 58714604 doesn't seem to be mutated. Here are the mutated foci.Position 58718004 doesn't seem to be mutated. Here are the mutated foci.Position 58723704 doesn't seem to be mutated. Here are the mutated foci.Position 58728245 doesn't seem to be mutated. Here are the mutated foci.Position 58734698 doesn't seem to be mutated. Here are the mutated foci.Position 59015077 doesn't seem to be mutated. Here are the mutated foci.Position 59073508 doesn't seem to be mutated. Here are the mutated foci.Position 59082270 doesn't seem to be mutated. Here are the mutated foci.Position 59083435 doesn't seem to be mutated. Here are the mutated foci.Position 59096256 doesn't seem to be mutated. Here are the mutated foci.Position 59102878 doesn't seem to be mutated. Here are the mutated foci.Position 61690803 doesn't seem to be mutated. Here are the mutated foci.Position 61707850 doesn't seem to be mutated. Here are the mutated foci.Position 61714592 doesn't seem to be mutated. Here are the mutated foci.Position 61762237 doesn't seem to be mutated. Here are the mutated foci.Position 61770946 doesn't seem to be mutated. Here are the mutated foci.Position 68511392 doesn't seem to be mutated. Here are the mutated foci.Position 51047611 doesn't seem to be mutated. Here are the mutated foci.Position 51050356 doesn't seem to be mutated. Here are the mutated foci.Position 1203101 doesn't seem to be mutated. Here are the mutated foci.Position 1216835 doesn't seem to be mutated. Here are the mutated foci.Position 4087094 doesn't seem to be mutated. Here are the mutated foci.Position 10957101 doesn't seem to be mutated. Here are the mutated foci.Position 11000228 doesn't seem to be mutated. Here are the mutated foci.Position 11020842 doesn't seem to be mutated. Here are the mutated foci.Position 11055492 doesn't seem to be mutated. Here are the mutated foci.Position 11078065 doesn't seem to be mutated. Here are the mutated foci.Position 45360086 doesn't seem to be mutated. Here are the mutated foci.Position 45368692 doesn't seem to be mutated. Here are the mutated foci.Position 45374199 doesn't seem to be mutated. Here are the mutated foci.Position 45417097 doesn't seem to be mutated. Here are the mutated foci.Position 50413421 doesn't seem to be mutated. Here are the mutated foci.Position 50416106 doesn't seem to be mutated. Here are the mutated foci.Position 32381957 doesn't seem to be mutated. Here are the mutated foci.Position 34862116 doesn't seem to be mutated. Here are the mutated foci.Position 34910384 doesn't seem to be mutated. Here are the mutated foci.Position 34998691 doesn't seem to be mutated. Here are the mutated foci.Position 35003520 doesn't seem to be mutated. Here are the mutated foci.Position 35264942 doesn't seem to be mutated. Here are the mutated foci.Position 35304440 doesn't seem to be mutated. Here are the mutated foci.Position 35349783 doesn't seem to be mutated. Here are the mutated foci.Position 35359246 doesn't seem to be mutated. Here are the mutated foci.Position 35677063 doesn't seem to be mutated. Here are the mutated foci.Position 35682300 doesn't seem to be mutated. Here are the mutated foci.Position 35833900 doesn't seem to be mutated. Here are the mutated foci.Position 35880490 doesn't seem to be mutated. Here are the mutated foci.Position 23797299 doesn't seem to be mutated. Here are the mutated foci.Position 28713689 doesn't seem to be mutated. Here are the mutated foci.Position 29644041 doesn't seem to be mutated. Here are the mutated foci.Position 41089114 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 41130808 doesn't seem to be mutated. Here are the mutated foci.Position 48672946 doesn't seem to be mutated. Here are the mutated foci.Position 48682893 doesn't seem to be mutated. Here are the mutated foci.Position 77522585 doesn't seem to be mutated. Here are the mutated foci.Position 77546498 doesn't seem to be mutated. Here are the mutated foci.Position 77559739 doesn't seem to be mutated. Here are the mutated foci.Position 77597484 doesn't seem to be mutated. Here are the mutated foci.Position 77603527 doesn't seem to be mutated. Here are the mutated foci.Position 77604681 doesn't seem to be mutated. Here are the mutated foci.Position 77631987 doesn't seem to be mutated. Here are the mutated foci.Position 77643930 doesn't seem to be mutated. Here are the mutated foci.Position 77653005 doesn't seem to be mutated. Here are the mutated foci.Position 77655806 doesn't seem to be mutated. Here are the mutated foci.Position 77666860 doesn't seem to be mutated. Here are the mutated foci.Position 77677113 doesn't seem to be mutated. Here are the mutated foci.Position 77682738 doesn't seem to be mutated. Here are the mutated foci.Position 77754163 doesn't seem to be mutated. Here are the mutated foci.Position 77758394 doesn't seem to be mutated. Here are the mutated foci.Position 77770107 doesn't seem to be mutated. Here are the mutated foci.Position 77787336 doesn't seem to be mutated. Here are the mutated foci.Position 133392667 doesn't seem to be mutated. Here are the mutated foci.Position 133398772 doesn't seem to be mutated. Here are the mutated foci.Position 133413631 doesn't seem to be mutated. Here are the mutated foci.Position 133532148 doesn't seem to be mutated. Here are the mutated foci.Position 133598320 doesn't seem to be mutated. Here are the mutated foci.Position 133628656 doesn't seem to be mutated. Here are the mutated foci.Position 133641016 doesn't seem to be mutated. Here are the mutated foci.Position 133646084 doesn't seem to be mutated. Here are the mutated foci.Position 133709178 doesn't seem to be mutated. Here are the mutated foci.Position 133721353 doesn't seem to be mutated. Here are the mutated foci.Position 133847308 doesn't seem to be mutated. Here are the mutated foci.Position 133849554 doesn't seem to be mutated. Here are the mutated foci.Position 133874072 doesn't seem to be mutated. Here are the mutated foci.Position 133913054 doesn't seem to be mutated. Here are the mutated foci.Position 147925694 doesn't seem to be mutated. Here are the mutated foci.Position 69827733 doesn't seem to be mutated. Here are the mutated foci.Position 37835599 doesn't seem to be mutated. Here are the mutated foci.Position 112424868 doesn't seem to be mutated. Here are the mutated foci.Position 77766987 doesn't seem to be mutated. Here are the mutated foci.Position 133793077 doesn't seem to be mutated. Here are the mutated foci.Position 133914882 doesn't seem to be mutated. Here are the mutated foci.Position 47753411 doesn't seem to be mutated. Here are the mutated foci.Position 122281881 doesn't seem to be mutated. Here are the mutated foci.Position 909593 doesn't seem to be mutated. Here are the mutated foci.Position 177133041 doesn't seem to be mutated. Here are the mutated foci.Position 104780282 doesn't seem to be mutated. Here are the mutated foci.Position 104786609 doesn't seem to be mutated. Here are the mutated foci.Position 140878397 doesn't seem to be mutated. Here are the mutated foci.Position 118091798 doesn't seem to be mutated. Here are the mutated foci.Position 2065444 doesn't seem to be mutated. Here are the mutated foci.Position 25245347 doesn't seem to be mutated. Here are the mutated foci.Position 7672947 doesn't seem to be mutated. Here are the mutated foci.Position 7675214 doesn't seem to be mutated. Here are the mutated foci.Position 43073749 doesn't seem to be mutated. Here are the mutated foci.Position 43128642 doesn't seem to be mutated. Here are the mutated foci.Position 50395378 doesn't seem to be mutated. Here are the mutated foci.Position 14839679 doesn't seem to be mutated. Here are the mutated foci.Position 133346402 doesn't seem to be mutated. Here are the mutated foci.Position 133802890 doesn't seem to be mutated. Here are the mutated foci.Position 80728473 doesn't seem to be mutated. Here are the mutated foci.Position 2065444 doesn't seem to be mutated. Here are the mutated foci.Position 2178581 doesn't seem to be mutated. Here are the mutated foci.Position 95181138 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 108297579 doesn't seem to be mutated. Here are the mutated foci.Position 90800680 doesn't seem to be mutated. Here are the mutated foci.Position 13945568 doesn't seem to be mutated. Here are the mutated foci.Position 89744665 doesn't seem to be mutated. Here are the mutated foci.Position 43073749 doesn't seem to be mutated. Here are the mutated foci.Position 68518374 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 193232458 doesn't seem to be mutated. Here are the mutated foci.Position 140789405 doesn't seem to be mutated. Here are the mutated foci.Position 142756851 doesn't seem to be mutated. Here are the mutated foci.Position 112429802 doesn't seem to be mutated. Here are the mutated foci.Position 95089112 doesn't seem to be mutated. Here are the mutated foci.Position 214783811 doesn't seem to be mutated. Here are the mutated foci.Position 142753341 doesn't seem to be mutated. Here are the mutated foci.Position 95455417 doesn't seem to be mutated. Here are the mutated foci.Position 34958132 doesn't seem to be mutated. Here are the mutated foci.Position 77755526 doesn't seem to be mutated. Here are the mutated foci.Position 39035156 doesn't seem to be mutated. Here are the mutated foci.Position 132558021 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 148841181 doesn't seem to be mutated. Here are the mutated foci.Position 118078558 doesn't seem to be mutated. Here are the mutated foci.Position 51071266 doesn't seem to be mutated. Here are the mutated foci.Position 51078638 doesn't seem to be mutated. Here are the mutated foci.Position 45421041 doesn't seem to be mutated. Here are the mutated foci.Position 29257472 doesn't seem to be mutated. Here are the mutated foci.Position 214743841 doesn't seem to be mutated. Here are the mutated foci.Position 140754070 doesn't seem to be mutated. Here are the mutated foci.Position 87900787 doesn't seem to be mutated. Here are the mutated foci.Position 11653822 doesn't seem to be mutated. Here are the mutated foci.Position 7664584 doesn't seem to be mutated. Here are the mutated foci.Position 7693718 doesn't seem to be mutated. Here are the mutated foci.Position 133936210 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 47637051 doesn't seem to be mutated. Here are the mutated foci.Position 232153608 doesn't seem to be mutated. Here are the mutated foci.Position 69746090 doesn't seem to be mutated. Here are the mutated foci.Position 69787258 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 42197290 doesn't seem to be mutated. Here are the mutated foci.Position 96151892 doesn't seem to be mutated. Here are the mutated foci.Position 111015886 doesn't seem to be mutated. Here are the mutated foci.Position 108308786 doesn't seem to be mutated. Here are the mutated foci.Position 11668405 doesn't seem to be mutated. Here are the mutated foci.Position 90780641 doesn't seem to be mutated. Here are the mutated foci.Position 13918301 doesn't seem to be mutated. Here are the mutated foci.Position 7675237 doesn't seem to be mutated. Here are the mutated foci.Position 43071847 doesn't seem to be mutated. Here are the mutated foci.Position 11022529 doesn't seem to be mutated. Here are the mutated foci.Position 35594184 doesn't seem to be mutated. Here are the mutated foci.Position 77684174 doesn't seem to be mutated. Here are the mutated foci.Position 133947297 doesn't seem to be mutated. Here are the mutated foci.Position 69857524 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 117975804 doesn't seem to be mutated. Here are the mutated foci.Position 118080424 doesn't seem to be mutated. Here are the mutated foci.Position 121576128 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 40179968 doesn't seem to be mutated. Here are the mutated foci.Position 47459223 doesn't seem to be mutated. Here are the mutated foci.Position 112812486 doesn't seem to be mutated. Here are the mutated foci.Position 86775665 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 58896890 doesn't seem to be mutated. Here are the mutated foci.Position 112749968 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 48335602 doesn't seem to be mutated. Here are the mutated foci.Position 133577979 doesn't seem to be mutated. Here are the mutated foci.Position 147939254 doesn't seem to be mutated. Here are the mutated foci.Position 44844402 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 2041810 doesn't seem to be mutated. Here are the mutated foci.Position 2041913 doesn't seem to be mutated. Here are the mutated foci.Position 2069128 doesn't seem to be mutated. Here are the mutated foci.Position 2069752 doesn't seem to be mutated. Here are the mutated foci.Position 2070366 doesn't seem to be mutated. Here are the mutated foci.Position 2081979 doesn't seem to be mutated. Here are the mutated foci.Position 2083891 doesn't seem to be mutated. Here are the mutated foci.Position 35083629 doesn't seem to be mutated. Here are the mutated foci.Position 86837247 doesn't seem to be mutated. Here are the mutated foci.Position 132631889 doesn't seem to be mutated. Here are the mutated foci.Position 36519110 doesn't seem to be mutated. Here are the mutated foci.Position 50231554 doesn't seem to be mutated. Here are the mutated foci.Position 35704712 doesn't seem to be mutated. Here are the mutated foci.Position 29651369 doesn't seem to be mutated. Here are the mutated foci.Position 29642475 doesn't seem to be mutated. Here are the mutated foci.Position 47401861 doesn't seem to be mutated. Here are the mutated foci.Position 245605 doesn't seem to be mutated. Here are the mutated foci.Position 121591004 doesn't seem to be mutated. Here are the mutated foci.Position 48322919 doesn't seem to be mutated. Here are the mutated foci.Position 39022193 doesn't seem to be mutated. Here are the mutated foci.Position 168921324 doesn't seem to be mutated. Here are the mutated foci.Position 214783713 doesn't seem to be mutated. Here are the mutated foci.Position 56940231 doesn't seem to be mutated. Here are the mutated foci.Position 80691993 doesn't seem to be mutated. Here are the mutated foci.Position 80865414 doesn't seem to be mutated. Here are the mutated foci.Position 157236717 doesn't seem to be mutated. Here are the mutated foci.Position 104790627 doesn't seem to be mutated. Here are the mutated foci.Position 96244956 doesn't seem to be mutated. Here are the mutated foci.Position 117848886 doesn't seem to be mutated. Here are the mutated foci.Position 95313552 doesn't seem to be mutated. Here are the mutated foci.Position 43082620 doesn't seem to be mutated. Here are the mutated foci.Position 78041010 doesn't seem to be mutated. Here are the mutated foci.Position 87971559 doesn't seem to be mutated. Here are the mutated foci.Position 44174410 doesn't seem to be mutated. Here are the mutated foci.Position 112510363 doesn't seem to be mutated. Here are the mutated foci.Position 38251965 doesn't seem to be mutated. Here are the mutated foci.Position 7673787 doesn't seem to be mutated. Here are the mutated foci.Position 34862116 doesn't seem to be mutated. Here are the mutated foci.Position 34863891 doesn't seem to be mutated. Here are the mutated foci.Position 35105662 doesn't seem to be mutated. Here are the mutated foci.Position 35126251 doesn't seem to be mutated. Here are the mutated foci.Position 14867514 doesn't seem to be mutated. Here are the mutated foci.Position 77616014 doesn't seem to be mutated. Here are the mutated foci.Position 133568965 doesn't seem to be mutated. Here are the mutated foci.Position 23695907 doesn't seem to be mutated. Here are the mutated foci.Position 158603367 doesn't seem to be mutated. Here are the mutated foci.Position 179189588 doesn't seem to be mutated. Here are the mutated foci.Position 140764147 doesn't seem to be mutated. Here are the mutated foci.Position 102638057 doesn't seem to be mutated. Here are the mutated foci.Position 102847524 doesn't seem to be mutated. Here are the mutated foci.Position 61681119 doesn't seem to be mutated. Here are the mutated foci.Position 68530797 doesn't seem to be mutated. Here are the mutated foci.Position 45451206 doesn't seem to be mutated. Here are the mutated foci.Position 58909424 doesn't seem to be mutated. Here are the mutated foci.Position 58909803 doesn't seem to be mutated. Here are the mutated foci.Position 58910401 doesn't seem to be mutated. Here are the mutated foci.Position 77744595 doesn't seem to be mutated. Here are the mutated foci.Position 133776923 doesn't seem to be mutated. Here are the mutated foci.Position 133969266 doesn't seem to be mutated. Here are the mutated foci.Position 10074065 doesn't seem to be mutated. Here are the mutated foci.Position 140758461 doesn't seem to be mutated. Here are the mutated foci.Position 43078277 doesn't seem to be mutated. Here are the mutated foci.Position 61830337 doesn't seem to be mutated. Here are the mutated foci.Position 133545911 doesn't seem to be mutated. Here are the mutated foci.Position 54241514 doesn't seem to be mutated. Here are the mutated foci.Position 80691544 doesn't seem to be mutated. Here are the mutated foci.Position 80819091 doesn't seem to be mutated. Here are the mutated foci.Position 157243604 doesn't seem to be mutated. Here are the mutated foci.Position 116768027 doesn't seem to be mutated. Here are the mutated foci.Position 119282939 doesn't seem to be mutated. Here are the mutated foci.Position 11677392 doesn't seem to be mutated. Here are the mutated foci.Position 34862116 doesn't seem to be mutated. Here are the mutated foci.Position 34976553 doesn't seem to be mutated. Here are the mutated foci.Position 77705993 doesn't seem to be mutated. Here are the mutated foci.Position 47742644 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 80766764 doesn't seem to be mutated. Here are the mutated foci.Position 5988095 doesn't seem to be mutated. Here are the mutated foci.Position 38463970 doesn't seem to be mutated. Here are the mutated foci.Position 50767763 doesn't seem to be mutated. Here are the mutated foci.Position 50782526 doesn't seem to be mutated. Here are the mutated foci.Position 10360834 doesn't seem to be mutated. Here are the mutated foci.Position 5996590 doesn't seem to be mutated. Here are the mutated foci.Position 48302503 doesn't seem to be mutated. Here are the mutated foci.Position 38255279 doesn't seem to be mutated. Here are the mutated foci.Position 77735599 doesn't seem to be mutated. Here are the mutated foci.Position 10306587 doesn't seem to be mutated. Here are the mutated foci.Position 29341624 doesn't seem to be mutated. Here are the mutated foci.Position 29447463 doesn't seem to be mutated. Here are the mutated foci.Position 29514193 doesn't seem to be mutated. Here are the mutated foci.Position 29514243 doesn't seem to be mutated. Here are the mutated foci.Position 29748753 doesn't seem to be mutated. Here are the mutated foci.Position 144419909 doesn't seem to be mutated. Here are the mutated foci.Position 10153448 doesn't seem to be mutated. Here are the mutated foci.Position 54653004 doesn't seem to be mutated. Here are the mutated foci.Position 80859387 doesn't seem to be mutated. Here are the mutated foci.Position 138753145 doesn't seem to be mutated. Here are the mutated foci.Position 42094401 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 39197783 doesn't seem to be mutated. Here are the mutated foci.Position 1212605 doesn't seem to be mutated. Here are the mutated foci.Position 29614608 doesn't seem to be mutated. Here are the mutated foci.Position 154763031 doesn't seem to be mutated. Here are the mutated foci.Position 54669437 doesn't seem to be mutated. Here are the mutated foci.Position 104762317 doesn't seem to be mutated. Here are the mutated foci.Position 116800832 doesn't seem to be mutated. Here are the mutated foci.Position 140825668 doesn't seem to be mutated. Here are the mutated foci.Position 95205562 doesn't seem to be mutated. Here are the mutated foci.Position 40208021 doesn't seem to be mutated. Here are the mutated foci.Position 7674220 doesn't seem to be mutated. Here are the mutated foci.Position 31235963 doesn't seem to be mutated. Here are the mutated foci.Position 11004999 doesn't seem to be mutated. Here are the mutated foci.Position 77682259 doesn't seem to be mutated. Here are the mutated foci.Position 124353153 doesn't seem to be mutated. Here are the mutated foci.Position 104785100 doesn't seem to be mutated. Here are the mutated foci.Position 41967551 doesn't seem to be mutated. Here are the mutated foci.Position 35267357 doesn't seem to be mutated. Here are the mutated foci.Position 133407077 doesn't seem to be mutated. Here are the mutated foci.Position 96251704 doesn't seem to be mutated. Here are the mutated foci.Position 127294420 doesn't seem to be mutated. Here are the mutated foci.Position 158593140 doesn't seem to be mutated. Here are the mutated foci.Position 10241754 doesn't seem to be mutated. Here are the mutated foci.Position 29658259 doesn't seem to be mutated. Here are the mutated foci.Position 122189815 doesn't seem to be mutated. Here are the mutated foci.Position 54301230 doesn't seem to be mutated. Here are the mutated foci.Position 177132072 doesn't seem to be mutated. Here are the mutated foci.Position 55118753 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 31174018 doesn't seem to be mutated. Here are the mutated foci.Position 119206256 doesn't seem to be mutated. Here are the mutated foci.Position 11649546 doesn't seem to be mutated. Here are the mutated foci.Position 132641285 doesn't seem to be mutated. Here are the mutated foci.Position 50231606 doesn't seem to be mutated. Here are the mutated foci.Position 94373354 doesn't seem to be mutated. Here are the mutated foci.Position 104795196 doesn't seem to be mutated. Here are the mutated foci.Position 7674220 doesn't seem to be mutated. Here are the mutated foci.Position 11040921 doesn't seem to be mutated. Here are the mutated foci.Position 58855378 doesn't seem to be mutated. Here are the mutated foci.Position 77662114 doesn't seem to be mutated. Here are the mutated foci.Position 154766495 doesn't seem to be mutated. Here are the mutated foci.Position 29296723 doesn't seem to be mutated. Here are the mutated foci.Position 51039943 doesn't seem to be mutated. Here are the mutated foci.Position 41167616 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 69870260 doesn't seem to be mutated. Here are the mutated foci.Position 104776966 doesn't seem to be mutated. Here are the mutated foci.Position 55043351 doesn't seem to be mutated. Here are the mutated foci.Position 55152864 doesn't seem to be mutated. Here are the mutated foci.Position 117913268 doesn't seem to be mutated. Here are the mutated foci.Position 21861351 doesn't seem to be mutated. Here are the mutated foci.Position 87920826 doesn't seem to be mutated. Here are the mutated foci.Position 67489086 doesn't seem to be mutated. Here are the mutated foci.Position 35614103 doesn't seem to be mutated. Here are the mutated foci.Position 23791819 doesn't seem to be mutated. Here are the mutated foci.Position 41107874 doesn't seem to be mutated. Here are the mutated foci.Position 117960545 doesn't seem to be mutated. Here are the mutated foci.Position 44119149 doesn't seem to be mutated. Here are the mutated foci.Position 76472295 doesn't seem to be mutated. Here are the mutated foci.Position 35022952 doesn't seem to be mutated. Here are the mutated foci.Position 35931066 doesn't seem to be mutated. Here are the mutated foci.Position 77559373 doesn't seem to be mutated. Here are the mutated foci.Position 35184561 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 47742644 doesn't seem to be mutated. Here are the mutated foci.Position 42082676 doesn't seem to be mutated. Here are the mutated foci.Position 305286 doesn't seem to be mutated. Here are the mutated foci.Position 86775665 doesn't seem to be mutated. Here are the mutated foci.Position 108236975 doesn't seem to be mutated. Here are the mutated foci.Position 89269403 doesn't seem to be mutated. Here are the mutated foci.Position 61823834 doesn't seem to be mutated. Here are the mutated foci.Position 35484831 doesn't seem to be mutated. Here are the mutated foci.Position 37009658 doesn't seem to be mutated. Here are the mutated foci.Position 55148859 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 118029169 doesn't seem to be mutated. Here are the mutated foci.Position 103706845 doesn't seem to be mutated. Here are the mutated foci.Position 68745609 doesn't seem to be mutated. Here are the mutated foci.Position 58861831 doesn't seem to be mutated. Here are the mutated foci.Position 28685128 doesn't seem to be mutated. Here are the mutated foci.Position 10263281 doesn't seem to be mutated. Here are the mutated foci.Position 44834202 doesn't seem to be mutated. Here are the mutated foci.Position 161326542 doesn't seem to be mutated. Here are the mutated foci.Position 29438085 doesn't seem to be mutated. Here are the mutated foci.Position 47446848 doesn't seem to be mutated. Here are the mutated foci.Position 37009654 doesn't seem to be mutated. Here are the mutated foci.Position 61903157 doesn't seem to be mutated. Here are the mutated foci.Position 113545844 doesn't seem to be mutated. Here are the mutated foci.Position 80176020 doesn't seem to be mutated. Here are the mutated foci.Position 45459397 doesn't seem to be mutated. Here are the mutated foci.Position 169030973 doesn't seem to be mutated. Here are the mutated foci.Position 69737074 doesn't seem to be mutated. Here are the mutated foci.Position 138681873 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 108333778 doesn't seem to be mutated. Here are the mutated foci.Position 29674861 doesn't seem to be mutated. Here are the mutated foci.Position 133729920 doesn't seem to be mutated. Here are the mutated foci.Position 144388936 doesn't seem to be mutated. Here are the mutated foci.Position 12636025 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 95263502 doesn't seem to be mutated. Here are the mutated foci.Position 86928861 doesn't seem to be mutated. Here are the mutated foci.Position 40708780 doesn't seem to be mutated. Here are the mutated foci.Position 3585578 doesn't seem to be mutated. Here are the mutated foci.Position 31332202 doesn't seem to be mutated. Here are the mutated foci.Position 35754548 doesn't seem to be mutated. Here are the mutated foci.Position 133317483 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 148844959 doesn't seem to be mutated. Here are the mutated foci.Position 1215744 doesn't seem to be mutated. Here are the mutated foci.Position 35438215 doesn't seem to be mutated. Here are the mutated foci.Position 147944813 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 47498126 doesn't seem to be mutated. Here are the mutated foci.Position 232087434 doesn't seem to be mutated. Here are the mutated foci.Position 1286028 doesn't seem to be mutated. Here are the mutated foci.Position 80776929 doesn't seem to be mutated. Here are the mutated foci.Position 119278165 doesn't seem to be mutated. Here are the mutated foci.Position 3860116 doesn't seem to be mutated. Here are the mutated foci.Position 34926976 doesn't seem to be mutated. Here are the mutated foci.Position 35049206 doesn't seem to be mutated. Here are the mutated foci.Position 35194089 doesn't seem to be mutated. Here are the mutated foci.Position 77609229 doesn't seem to be mutated. Here are the mutated foci.Position 133295601 doesn't seem to be mutated. Here are the mutated foci.Position 133937569 doesn't seem to be mutated. Here are the mutated foci.Position 39030171 doesn't seem to be mutated. Here are the mutated foci.Position 179218303 doesn't seem to be mutated. Here are the mutated foci.Position 1295135 doesn't seem to be mutated. Here are the mutated foci.Position 80776911 doesn't seem to be mutated. Here are the mutated foci.Position 80869839 doesn't seem to be mutated. Here are the mutated foci.Position 55165350 doesn't seem to be mutated. Here are the mutated foci.Position 376186 doesn't seem to be mutated. Here are the mutated foci.Position 86865782 doesn't seem to be mutated. Here are the mutated foci.Position 48446499 doesn't seem to be mutated. Here are the mutated foci.Position 89270119 doesn't seem to be mutated. Here are the mutated foci.Position 32401550 doesn't seem to be mutated. Here are the mutated foci.Position 133668726 doesn't seem to be mutated. Here are the mutated foci.Position 10288675 doesn't seem to be mutated. Here are the mutated foci.Position 58198029 doesn't seem to be mutated. Here are the mutated foci.Position 911757 doesn't seem to be mutated. Here are the mutated foci.Position 55189099 doesn't seem to be mutated. Here are the mutated foci.Position 66996041 doesn't seem to be mutated. Here are the mutated foci.Position 38414784 doesn't seem to be mutated. Here are the mutated foci.Position 38414788 doesn't seem to be mutated. Here are the mutated foci.Position 102638089 doesn't seem to be mutated. Here are the mutated foci.Position 11765461 doesn't seem to be mutated. Here are the mutated foci.Position 68819471 doesn't seem to be mutated. Here are the mutated foci.Position 31169980 doesn't seem to be mutated. Here are the mutated foci.Position 31302678 doesn't seem to be mutated. Here are the mutated foci.Position 11070771 doesn't seem to be mutated. Here are the mutated foci.Position 29267082 doesn't seem to be mutated. Here are the mutated foci.Position 168919625 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 89947657 doesn't seem to be mutated. Here are the mutated foci.Position 133615781 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 147920180 doesn't seem to be mutated. Here are the mutated foci.Position 41987083 doesn't seem to be mutated. Here are the mutated foci.Position 50376912 doesn't seem to be mutated. Here are the mutated foci.Position 116723428 doesn't seem to be mutated. Here are the mutated foci.Position 95453584 doesn't seem to be mutated. Here are the mutated foci.Position 66399877 doesn't seem to be mutated. Here are the mutated foci.Position 23601590 doesn't seem to be mutated. Here are the mutated foci.Position 31172344 doesn't seem to be mutated. Here are the mutated foci.Position 133543130 doesn't seem to be mutated. Here are the mutated foci.Position 133898178 doesn't seem to be mutated. Here are the mutated foci.Position 47353180 doesn't seem to be mutated. Here are the mutated foci.Position 232134872 doesn't seem to be mutated. Here are the mutated foci.Position 1259063 doesn't seem to be mutated. Here are the mutated foci.Position 1276152 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 177170094 doesn't seem to be mutated. Here are the mutated foci.Position 41966230 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 102570985 doesn't seem to be mutated. Here are the mutated foci.Position 133638822 doesn't seem to be mutated. Here are the mutated foci.Position 231389407 doesn't seem to be mutated. Here are the mutated foci.Position 29214222 doesn't seem to be mutated. Here are the mutated foci.Position 29773234 doesn't seem to be mutated. Here are the mutated foci.Position 58236474 doesn't seem to be mutated. Here are the mutated foci.Position 112731954 doesn't seem to be mutated. Here are the mutated foci.Position 112731958 doesn't seem to be mutated. Here are the mutated foci.Position 124829727 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 68784403 doesn't seem to be mutated. Here are the mutated foci.Position 17237587 doesn't seem to be mutated. Here are the mutated foci.Position 29306653 doesn't seem to be mutated. Here are the mutated foci.Position 138693362 doesn't seem to be mutated. Here are the mutated foci.Position 104727303 doesn't seem to be mutated. Here are the mutated foci.Position 96191392 doesn't seem to be mutated. Here are the mutated foci.Position 140785739 doesn't seem to be mutated. Here are the mutated foci.Position 140786575 doesn't seem to be mutated. Here are the mutated foci.Position 140786967 doesn't seem to be mutated. Here are the mutated foci.Position 140787121 doesn't seem to be mutated. Here are the mutated foci.Position 140787227 doesn't seem to be mutated. Here are the mutated foci.Position 140788210 doesn't seem to be mutated. Here are the mutated foci.Position 140788236 doesn't seem to be mutated. Here are the mutated foci.Position 140788638 doesn't seem to be mutated. Here are the mutated foci.Position 2071610 doesn't seem to be mutated. Here are the mutated foci.Position 61970973 doesn't seem to be mutated. Here are the mutated foci.Position 40626865 doesn't seem to be mutated. Here are the mutated foci.Position 34960082 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 88999189 doesn't seem to be mutated. Here are the mutated foci.Position 65078326 doesn't seem to be mutated. Here are the mutated foci.Position 4101339 doesn't seem to be mutated. Here are the mutated foci.Position 69902873 doesn't seem to be mutated. Here are the mutated foci.Position 128487722 doesn't seem to be mutated. Here are the mutated foci.Position 1800326 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 177172340 doesn't seem to be mutated. Here are the mutated foci.Position 104778811 doesn't seem to be mutated. Here are the mutated foci.Position 96226011 doesn't seem to be mutated. Here are the mutated foci.Position 117915352 doesn't seem to be mutated. Here are the mutated foci.Position 1194721 doesn't seem to be mutated. Here are the mutated foci.Position 33302803 doesn't seem to be mutated. Here are the mutated foci.Position 29816432 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 177207924 doesn't seem to be mutated. Here are the mutated foci.Position 95489839 doesn't seem to be mutated. Here are the mutated foci.Position 10330479 doesn't seem to be mutated. Here are the mutated foci.Position 42148135 doesn't seem to be mutated. Here are the mutated foci.Position 31084458 doesn't seem to be mutated. Here are the mutated foci.Position 35118721 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 138800802 doesn't seem to be mutated. Here are the mutated foci.Position 116768027 doesn't seem to be mutated. Here are the mutated foci.Position 11063726 doesn't seem to be mutated. Here are the mutated foci.Position 77717076 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 132558021 doesn't seem to be mutated. Here are the mutated foci.Position 26101670 doesn't seem to be mutated. Here are the mutated foci.Position 31138102 doesn't seem to be mutated. Here are the mutated foci.Position 10320089 doesn't seem to be mutated. Here are the mutated foci.Position 29743436 doesn't seem to be mutated. Here are the mutated foci.Position 2197222 doesn't seem to be mutated. Here are the mutated foci.Position 119279491 doesn't seem to be mutated. Here are the mutated foci.Position 11689139 doesn't seem to be mutated. Here are the mutated foci.Position 133863603 doesn't seem to be mutated. Here are the mutated foci.Position 168986853 doesn't seem to be mutated. Here are the mutated foci.Position 69925065 doesn't seem to be mutated. Here are the mutated foci.Position 69950627 doesn't seem to be mutated. Here are the mutated foci.Position 177239195 doesn't seem to be mutated. Here are the mutated foci.Position 43577611 doesn't seem to be mutated. Here are the mutated foci.Position 61970410 doesn't seem to be mutated. Here are the mutated foci.Position 32357667 doesn't seem to be mutated. Here are the mutated foci.Position 80173863 doesn't seem to be mutated. Here are the mutated foci.Position 31357350 doesn't seem to be mutated. Here are the mutated foci.Position 31378802 doesn't seem to be mutated. Here are the mutated foci.Position 35433145 doesn't seem to be mutated. Here are the mutated foci.Position 35545726 doesn't seem to be mutated. Here are the mutated foci.Position 28735405 doesn't seem to be mutated. Here are the mutated foci.Position 14168716 doesn't seem to be mutated. Here are the mutated foci.Position 69943414 doesn't seem to be mutated. Here are the mutated foci.Position 1277079 doesn't seem to be mutated. Here are the mutated foci.Position 42214459 doesn't seem to be mutated. Here are the mutated foci.Position 34989004 doesn't seem to be mutated. Here are the mutated foci.Position 29700629 doesn't seem to be mutated. Here are the mutated foci.Position 140744864 doesn't seem to be mutated. Here are the mutated foci.Position 140750561 doesn't seem to be mutated. Here are the mutated foci.Position 140754053 doesn't seem to be mutated. Here are the mutated foci.Position 140758624 doesn't seem to be mutated. Here are the mutated foci.Position 140766820 doesn't seem to be mutated. Here are the mutated foci.Position 2085650 doesn't seem to be mutated. Here are the mutated foci.Position 82535779 doesn't seem to be mutated. Here are the mutated foci.Position 35097518 doesn't seem to be mutated. Here are the mutated foci.Position 77609650 doesn't seem to be mutated. Here are the mutated foci.Position 29516349 doesn't seem to be mutated. Here are the mutated foci.Position 54271745 doesn't seem to be mutated. Here are the mutated foci.Position 54285926 doesn't seem to be mutated. Here are the mutated foci.Position 132619881 doesn't seem to be mutated. Here are the mutated foci.Position 116742980 doesn't seem to be mutated. Here are the mutated foci.Position 142747073 doesn't seem to be mutated. Here are the mutated foci.Position 99100657 doesn't seem to be mutated. Here are the mutated foci.Position 40727681 doesn't seem to be mutated. Here are the mutated foci.Position 7674221 doesn't seem to be mutated. Here are the mutated foci.Position 34955511 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 133737005 doesn't seem to be mutated. Here are the mutated foci.Position 133889687 doesn't seem to be mutated. Here are the mutated foci.Position 231422463 doesn't seem to be mutated. Here are the mutated foci.Position 168999279 doesn't seem to be mutated. Here are the mutated foci.Position 14178466 doesn't seem to be mutated. Here are the mutated foci.Position 122201877 doesn't seem to be mutated. Here are the mutated foci.Position 179234297 doesn't seem to be mutated. Here are the mutated foci.Position 54267412 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 157156272 doesn't seem to be mutated. Here are the mutated foci.Position 177212487 doesn't seem to be mutated. Here are the mutated foci.Position 55098495 doesn't seem to be mutated. Here are the mutated foci.Position 95477700 doesn't seem to be mutated. Here are the mutated foci.Position 95506510 doesn't seem to be mutated. Here are the mutated foci.Position 97698537 doesn't seem to be mutated. Here are the mutated foci.Position 132907872 doesn't seem to be mutated. Here are the mutated foci.Position 78057972 doesn't seem to be mutated. Here are the mutated foci.Position 86819983 doesn't seem to be mutated. Here are the mutated foci.Position 11806414 doesn't seem to be mutated. Here are the mutated foci.Position 31291005 doesn't seem to be mutated. Here are the mutated foci.Position 59088987 doesn't seem to be mutated. Here are the mutated foci.Position 11021846 doesn't seem to be mutated. Here are the mutated foci.Position 35928581 doesn't seem to be mutated. Here are the mutated foci.Position 147916330 doesn't seem to be mutated. Here are the mutated foci.Position 156863661 doesn't seem to be mutated. Here are the mutated foci.Position 80863120 doesn't seem to be mutated. Here are the mutated foci.Position 142749506 doesn't seem to be mutated. Here are the mutated foci.Position 77722361 doesn't seem to be mutated. Here are the mutated foci.Position 147944813 doesn't seem to be mutated. Here are the mutated foci.Position 29501669 doesn't seem to be mutated. Here are the mutated foci.Position 47371256 doesn't seem to be mutated. Here are the mutated foci.Position 47643850 doesn't seem to be mutated. Here are the mutated foci.Position 69872411 doesn't seem to be mutated. Here are the mutated foci.Position 69961449 doesn't seem to be mutated. Here are the mutated foci.Position 116727118 doesn't seem to be mutated. Here are the mutated foci.Position 117939053 doesn't seem to be mutated. Here are the mutated foci.Position 111430630 doesn't seem to be mutated. Here are the mutated foci.Position 40185041 doesn't seem to be mutated. Here are the mutated foci.Position 23608021 doesn't seem to be mutated. Here are the mutated foci.Position 58695772 doesn't seem to be mutated. Here are the mutated foci.Position 58707733 doesn't seem to be mutated. Here are the mutated foci.Position 58890401 doesn't seem to be mutated. Here are the mutated foci.Position 41096162 doesn't seem to be mutated. Here are the mutated foci.Position 29482999 doesn't seem to be mutated. Here are the mutated foci.Position 132558021 doesn't seem to be mutated. Here are the mutated foci.Position 148816307 doesn't seem to be mutated. Here are the mutated foci.Position 35956984 doesn't seem to be mutated. Here are the mutated foci.Position 10230090 doesn't seem to be mutated. Here are the mutated foci.Position 47782932 doesn't seem to be mutated. Here are the mutated foci.Position 56936522 doesn't seem to be mutated. Here are the mutated foci.Position 1250260 doesn't seem to be mutated. Here are the mutated foci.Position 1295146 doesn't seem to be mutated. Here are the mutated foci.Position 138728799 doesn't seem to be mutated. Here are the mutated foci.Position 116681938 doesn't seem to be mutated. Here are the mutated foci.Position 140915997 doesn't seem to be mutated. Here are the mutated foci.Position 31040303 doesn't seem to be mutated. Here are the mutated foci.Position 44152344 doesn't seem to be mutated. Here are the mutated foci.Position 112418510 doesn't seem to be mutated. Here are the mutated foci.Position 23797372 doesn't seem to be mutated. Here are the mutated foci.Position 41148973 doesn't seem to be mutated. Here are the mutated foci.Position 133362213 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 29857070 doesn't seem to be mutated. Here are the mutated foci.Position 117961398 doesn't seem to be mutated. Here are the mutated foci.Position 118096644 doesn't seem to be mutated. Here are the mutated foci.Position 32411575 doesn't seem to be mutated. Here are the mutated foci.Position 108357745 doesn't seem to be mutated. Here are the mutated foci.Position 112450406 doesn't seem to be mutated. Here are the mutated foci.Position 2075860 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 77775751 doesn't seem to be mutated. Here are the mutated foci.Position 133840941 doesn't seem to be mutated. Here are the mutated foci.Position 193192489 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 144387046 doesn't seem to be mutated. Here are the mutated foci.Position 154280589 doesn't seem to be mutated. Here are the mutated foci.Position 161374011 doesn't seem to be mutated. Here are the mutated foci.Position 29222509 doesn't seem to be mutated. Here are the mutated foci.Position 29588425 doesn't seem to be mutated. Here are the mutated foci.Position 29624161 doesn't seem to be mutated. Here are the mutated foci.Position 29719053 doesn't seem to be mutated. Here are the mutated foci.Position 29804329 doesn't seem to be mutated. Here are the mutated foci.Position 29814069 doesn't seem to be mutated. Here are the mutated foci.Position 39113009 doesn't seem to be mutated. Here are the mutated foci.Position 47653260 doesn't seem to be mutated. Here are the mutated foci.Position 58210332 doesn't seem to be mutated. Here are the mutated foci.Position 144495140 doesn't seem to be mutated. Here are the mutated foci.Position 12592873 doesn't seem to be mutated. Here are the mutated foci.Position 12603376 doesn't seem to be mutated. Here are the mutated foci.Position 69740485 doesn't seem to be mutated. Here are the mutated foci.Position 158589794 doesn't seem to be mutated. Here are the mutated foci.Position 54244311 doesn't seem to be mutated. Here are the mutated foci.Position 104774611 doesn't seem to be mutated. Here are the mutated foci.Position 42127574 doesn't seem to be mutated. Here are the mutated foci.Position 50317206 doesn't seem to be mutated. Here are the mutated foci.Position 55055688 doesn't seem to be mutated. Here are the mutated foci.Position 55055713 doesn't seem to be mutated. Here are the mutated foci.Position 55056393 doesn't seem to be mutated. Here are the mutated foci.Position 93100965 doesn't seem to be mutated. Here are the mutated foci.Position 116767974 doesn't seem to be mutated. Here are the mutated foci.Position 124832725 doesn't seem to be mutated. Here are the mutated foci.Position 89982003 doesn't seem to be mutated. Here are the mutated foci.Position 117887722 doesn't seem to be mutated. Here are the mutated foci.Position 117888426 doesn't seem to be mutated. Here are the mutated foci.Position 117897843 doesn't seem to be mutated. Here are the mutated foci.Position 117898284 doesn't seem to be mutated. Here are the mutated foci.Position 117899699 doesn't seem to be mutated. Here are the mutated foci.Position 117915130 doesn't seem to be mutated. Here are the mutated foci.Position 117988235 doesn't seem to be mutated. Here are the mutated foci.Position 118070969 doesn't seem to be mutated. Here are the mutated foci.Position 118071000 doesn't seem to be mutated. Here are the mutated foci.Position 118089637 doesn't seem to be mutated. Here are the mutated foci.Position 223814 doesn't seem to be mutated. Here are the mutated foci.Position 2095450 doesn't seem to be mutated. Here are the mutated foci.Position 36882589 doesn't seem to be mutated. Here are the mutated foci.Position 37017353 doesn't seem to be mutated. Here are the mutated foci.Position 95324156 doesn't seem to be mutated. Here are the mutated foci.Position 99115736 doesn't seem to be mutated. Here are the mutated foci.Position 70605592 doesn't seem to be mutated. Here are the mutated foci.Position 110988673 doesn't seem to be mutated. Here are the mutated foci.Position 108256356 doesn't seem to be mutated. Here are the mutated foci.Position 119092480 doesn't seem to be mutated. Here are the mutated foci.Position 11831071 doesn't seem to be mutated. Here are the mutated foci.Position 111422508 doesn't seem to be mutated. Here are the mutated foci.Position 112418520 doesn't seem to be mutated. Here are the mutated foci.Position 132639953 doesn't seem to be mutated. Here are the mutated foci.Position 132655489 doesn't seem to be mutated. Here are the mutated foci.Position 20192797 doesn't seem to be mutated. Here are the mutated foci.Position 36514584 doesn't seem to be mutated. Here are the mutated foci.Position 65078511 doesn't seem to be mutated. Here are the mutated foci.Position 90730745 doesn't seem to be mutated. Here are the mutated foci.Position 13941883 doesn't seem to be mutated. Here are the mutated foci.Position 89805471 doesn't seem to be mutated. Here are the mutated foci.Position 7675994 doesn't seem to be mutated. Here are the mutated foci.Position 31335517 doesn't seem to be mutated. Here are the mutated foci.Position 58695773 doesn't seem to be mutated. Here are the mutated foci.Position 61780729 doesn't seem to be mutated. Here are the mutated foci.Position 11033309 doesn't seem to be mutated. Here are the mutated foci.Position 34810981 doesn't seem to be mutated. Here are the mutated foci.Position 35352422 doesn't seem to be mutated. Here are the mutated foci.Position 35405161 doesn't seem to be mutated. Here are the mutated foci.Position 193232458 doesn't seem to be mutated. Here are the mutated foci.Position 29355492 doesn't seem to be mutated. Here are the mutated foci.Position 158578381 doesn't seem to be mutated. Here are the mutated foci.Position 61969420 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 118096648 doesn't seem to be mutated. Here are the mutated foci.Position 59032263 doesn't seem to be mutated. Here are the mutated foci.Position 35683238 doesn't seem to be mutated. Here are the mutated foci.Position 232048415 doesn't seem to be mutated. Here are the mutated foci.Position 80819091 doesn't seem to be mutated. Here are the mutated foci.Position 104780282 doesn't seem to be mutated. Here are the mutated foci.Position 78059797 doesn't seem to be mutated. Here are the mutated foci.Position 11788756 doesn't seem to be mutated. Here are the mutated foci.Position 66411097 doesn't seem to be mutated. Here are the mutated foci.Position 90766292 doesn't seem to be mutated. Here are the mutated foci.Position 50782526 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 161348163 doesn't seem to be mutated. Here are the mutated foci.Position 193213386 doesn't seem to be mutated. Here are the mutated foci.Position 54295128 doesn't seem to be mutated. Here are the mutated foci.Position 80819385 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 90734613 doesn't seem to be mutated. Here are the mutated foci.Position 42344487 doesn't seem to be mutated. Here are the mutated foci.Position 140783586 doesn't seem to be mutated. Here are the mutated foci.Position 31161090 doesn't seem to be mutated. Here are the mutated foci.Position 117872398 doesn't seem to be mutated. Here are the mutated foci.Position 36929297 doesn't seem to be mutated. Here are the mutated foci.Position 12725211 doesn't seem to be mutated. Here are the mutated foci.Position 232153806 doesn't seem to be mutated. Here are the mutated foci.Position 116719320 doesn't seem to be mutated. Here are the mutated foci.Position 29773234 doesn't seem to be mutated. Here are the mutated foci.Position 50304360 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 66996041 doesn't seem to be mutated. Here are the mutated foci.Position 140775783 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 47211335 doesn't seem to be mutated. Here are the mutated foci.Position 40622964 doesn't seem to be mutated. Here are the mutated foci.Position 58708846 doesn't seem to be mutated. Here are the mutated foci.Position 11039842 doesn't seem to be mutated. Here are the mutated foci.Position 41855847 doesn't seem to be mutated. Here are the mutated foci.Position 133357398 doesn't seem to be mutated. Here are the mutated foci.Position 156872232 doesn't seem to be mutated. Here are the mutated foci.Position 193162152 doesn't seem to be mutated. Here are the mutated foci.Position 39106276 doesn't seem to be mutated. Here are the mutated foci.Position 232327159 doesn't seem to be mutated. Here are the mutated foci.Position 1292266 doesn't seem to be mutated. Here are the mutated foci.Position 80843682 doesn't seem to be mutated. Here are the mutated foci.Position 104739755 doesn't seem to be mutated. Here are the mutated foci.Position 31142486 doesn't seem to be mutated. Here are the mutated foci.Position 2109695 doesn't seem to be mutated. Here are the mutated foci.Position 43083389 doesn't seem to be mutated. Here are the mutated foci.Position 32726920 doesn't seem to be mutated. Here are the mutated foci.Position 66471992 doesn't seem to be mutated. Here are the mutated foci.Position 3819196 doesn't seem to be mutated. Here are the mutated foci.Position 7670700 doesn't seem to be mutated. Here are the mutated foci.Position 7675145 doesn't seem to be mutated. Here are the mutated foci.Position 31303158 doesn't seem to be mutated. Here are the mutated foci.Position 31351808 doesn't seem to be mutated. Here are the mutated foci.Position 31352346 doesn't seem to be mutated. Here are the mutated foci.Position 31353647 doesn't seem to be mutated. Here are the mutated foci.Position 31356582 doesn't seem to be mutated. Here are the mutated foci.Position 31357475 doesn't seem to be mutated. Here are the mutated foci.Position 31357564 doesn't seem to be mutated. Here are the mutated foci.Position 31357610 doesn't seem to be mutated. Here are the mutated foci.Position 31357649 doesn't seem to be mutated. Here are the mutated foci.Position 31357725 doesn't seem to be mutated. Here are the mutated foci.Position 31357930 doesn't seem to be mutated. Here are the mutated foci.Position 31357946 doesn't seem to be mutated. Here are the mutated foci.Position 59000922 doesn't seem to be mutated. Here are the mutated foci.Position 61676362 doesn't seem to be mutated. Here are the mutated foci.Position 35787252 doesn't seem to be mutated. Here are the mutated foci.Position 77543624 doesn't seem to be mutated. Here are the mutated foci.Position 77754954 doesn't seem to be mutated. Here are the mutated foci.Position 133637365 doesn't seem to be mutated. Here are the mutated foci.Position 29870789 doesn't seem to be mutated. Here are the mutated foci.Position 47618834 doesn't seem to be mutated. Here are the mutated foci.Position 157260075 doesn't seem to be mutated. Here are the mutated foci.Position 42115654 doesn't seem to be mutated. Here are the mutated foci.Position 117873935 doesn't seem to be mutated. Here are the mutated foci.Position 95513376 doesn't seem to be mutated. Here are the mutated foci.Position 11764777 doesn't seem to be mutated. Here are the mutated foci.Position 65078029 doesn't seem to be mutated. Here are the mutated foci.Position 65523736 doesn't seem to be mutated. Here are the mutated foci.Position 35786293 doesn't seem to be mutated. Here are the mutated foci.Position 37983439 doesn't seem to be mutated. Here are the mutated foci.Position 77593804 doesn't seem to be mutated. Here are the mutated foci.Position 158595630 doesn't seem to be mutated. Here are the mutated foci.Position 93129165 doesn't seem to be mutated. Here are the mutated foci.Position 116673022 doesn't seem to be mutated. Here are the mutated foci.Position 116673147 doesn't seem to be mutated. Here are the mutated foci.Position 32719858 doesn't seem to be mutated. Here are the mutated foci.Position 23633712 doesn't seem to be mutated. Here are the mutated foci.Position 7674238 doesn't seem to be mutated. Here are the mutated foci.Position 7676011 doesn't seem to be mutated. Here are the mutated foci.Position 29665247 doesn't seem to be mutated. Here are the mutated foci.Position 133613833 doesn't seem to be mutated. Here are the mutated foci.Position 161374760 doesn't seem to be mutated. Here are the mutated foci.Position 99112924 doesn't seem to be mutated. Here are the mutated foci.Position 61912667 doesn't seem to be mutated. Here are the mutated foci.Position 45415076 doesn't seem to be mutated. Here are the mutated foci.Position 23834165 doesn't seem to be mutated. Here are the mutated foci.Position 10227809 doesn't seem to be mutated. Here are the mutated foci.Position 138809742 doesn't seem to be mutated. Here are the mutated foci.Position 140762573 doesn't seem to be mutated. Here are the mutated foci.Position 440057 doesn't seem to be mutated. Here are the mutated foci.Position 2049073 doesn't seem to be mutated. Here are the mutated foci.Position 112506177 doesn't seem to be mutated. Here are the mutated foci.Position 38327657 doesn't seem to be mutated. Here are the mutated foci.Position 89311258 doesn't seem to be mutated. Here are the mutated foci.Position 39203516 doesn't seem to be mutated. Here are the mutated foci.Position 68511392 doesn't seem to be mutated. Here are the mutated foci.Position 68530797 doesn't seem to be mutated. Here are the mutated foci.Position 4123580 doesn't seem to be mutated. Here are the mutated foci.Position 58864976 doesn't seem to be mutated. Here are the mutated foci.Position 35362397 doesn't seem to be mutated. Here are the mutated foci.Position 28683576 doesn't seem to be mutated. Here are the mutated foci.Position 14841965 doesn't seem to be mutated. Here are the mutated foci.Position 133342809 doesn't seem to be mutated. Here are the mutated foci.Position 10212841 doesn't seem to be mutated. Here are the mutated foci.Position 54686219 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 400235 doesn't seem to be mutated. Here are the mutated foci.Position 11667537 doesn't seem to be mutated. Here are the mutated foci.Position 51083998 doesn't seem to be mutated. Here are the mutated foci.Position 48682893 doesn't seem to be mutated. Here are the mutated foci.Position 77650590 doesn't seem to be mutated. Here are the mutated foci.Position 144507438 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 133862692 doesn't seem to be mutated. Here are the mutated foci.Position 156863413 doesn't seem to be mutated. Here are the mutated foci.Position 112777270 doesn't seem to be mutated. Here are the mutated foci.Position 42353579 doesn't seem to be mutated. Here are the mutated foci.Position 56913945 doesn't seem to be mutated. Here are the mutated foci.Position 56951869 doesn't seem to be mutated. Here are the mutated foci.Position 55055705 doesn't seem to be mutated. Here are the mutated foci.Position 31093403 doesn't seem to be mutated. Here are the mutated foci.Position 117985660 doesn't seem to be mutated. Here are the mutated foci.Position 121512876 doesn't seem to be mutated. Here are the mutated foci.Position 59096256 doesn't seem to be mutated. Here are the mutated foci.Position 50413411 doesn't seem to be mutated. Here are the mutated foci.Position 35648647 doesn't seem to be mutated. Here are the mutated foci.Position 10300238 doesn't seem to be mutated. Here are the mutated foci.Position 177229082 doesn't seem to be mutated. Here are the mutated foci.Position 104858429 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 119242741 doesn't seem to be mutated. Here are the mutated foci.Position 35047858 doesn't seem to be mutated. Here are the mutated foci.Position 35577459 doesn't seem to be mutated. Here are the mutated foci.Position 133761288 doesn't seem to be mutated. Here are the mutated foci.Position 92839847 doesn't seem to be mutated. Here are the mutated foci.Position 47793314 doesn't seem to be mutated. Here are the mutated foci.Position 56931070 doesn't seem to be mutated. Here are the mutated foci.Position 66435594 doesn't seem to be mutated. Here are the mutated foci.Position 133555839 doesn't seem to be mutated. Here are the mutated foci.Position 158605473 doesn't seem to be mutated. Here are the mutated foci.Position 80771205 doesn't seem to be mutated. Here are the mutated foci.Position 116709710 doesn't seem to be mutated. Here are the mutated foci.Position 95136491 doesn't seem to be mutated. Here are the mutated foci.Position 77790922 doesn't seem to be mutated. Here are the mutated foci.Position 142746967 doesn't seem to be mutated. Here are the mutated foci.Position 142746969 doesn't seem to be mutated. Here are the mutated foci.Position 66435118 doesn't seem to be mutated. Here are the mutated foci.Position 35097518 doesn't seem to be mutated. Here are the mutated foci.Position 29665247 doesn't seem to be mutated. Here are the mutated foci.Position 29404303 doesn't seem to be mutated. Here are the mutated foci.Position 177217038 doesn't seem to be mutated. Here are the mutated foci.Position 89313931 doesn't seem to be mutated. Here are the mutated foci.Position 45412139 doesn't seem to be mutated. Here are the mutated foci.Position 35965437 doesn't seem to be mutated. Here are the mutated foci.Position 77686936 doesn't seem to be mutated. Here are the mutated foci.Position 10370515 doesn't seem to be mutated. Here are the mutated foci.Position 39081340 doesn't seem to be mutated. Here are the mutated foci.Position 127252453 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 54662994 doesn't seem to be mutated. Here are the mutated foci.Position 1284029 doesn't seem to be mutated. Here are the mutated foci.Position 112440404 doesn't seem to be mutated. Here are the mutated foci.Position 20192797 doesn't seem to be mutated. Here are the mutated foci.Position 42380640 doesn't seem to be mutated. Here are the mutated foci.Position 161345588 doesn't seem to be mutated. Here are the mutated foci.Position 12637383 doesn't seem to be mutated. Here are the mutated foci.Position 69862290 doesn't seem to be mutated. Here are the mutated foci.Position 915453 doesn't seem to be mutated. Here are the mutated foci.Position 1294779 doesn't seem to be mutated. Here are the mutated foci.Position 177515371 doesn't seem to be mutated. Here are the mutated foci.Position 5977703 doesn't seem to be mutated. Here are the mutated foci.Position 148866706 doesn't seem to be mutated. Here are the mutated foci.Position 95218575 doesn't seem to be mutated. Here are the mutated foci.Position 78033028 doesn't seem to be mutated. Here are the mutated foci.Position 12713730 doesn't seem to be mutated. Here are the mutated foci.Position 3853962 doesn't seem to be mutated. Here are the mutated foci.Position 65529191 doesn't seem to be mutated. Here are the mutated foci.Position 66399621 doesn't seem to be mutated. Here are the mutated foci.Position 58871293 doesn't seem to be mutated. Here are the mutated foci.Position 156868152 doesn't seem to be mutated. Here are the mutated foci.Position 29696925 doesn't seem to be mutated. Here are the mutated foci.Position 29733592 doesn't seem to be mutated. Here are the mutated foci.Position 157212849 doesn't seem to be mutated. Here are the mutated foci.Position 157256414 doesn't seem to be mutated. Here are the mutated foci.Position 37022944 doesn't seem to be mutated. Here are the mutated foci.Position 108288076 doesn't seem to be mutated. Here are the mutated foci.Position 50117701 doesn't seem to be mutated. Here are the mutated foci.Position 58847836 doesn't seem to be mutated. Here are the mutated foci.Position 35283337 doesn't seem to be mutated. Here are the mutated foci.Position 29673306 doesn't seem to be mutated. Here are the mutated foci.Position 3583090 doesn't seem to be mutated. Here are the mutated foci.Position 112795009 doesn't seem to be mutated. Here are the mutated foci.Position 138753655 doesn't seem to be mutated. Here are the mutated foci.Position 43595988 doesn't seem to be mutated. Here are the mutated foci.Position 50387614 doesn't seem to be mutated. Here are the mutated foci.Position 55117944 doesn't seem to be mutated. Here are the mutated foci.Position 36837093 doesn't seem to be mutated. Here are the mutated foci.Position 48320164 doesn't seem to be mutated. Here are the mutated foci.Position 1287508 doesn't seem to be mutated. Here are the mutated foci.Position 96134794 doesn't seem to be mutated. Here are the mutated foci.Position 140752571 doesn't seem to be mutated. Here are the mutated foci.Position 140752685 doesn't seem to be mutated. Here are the mutated foci.Position 102527499 doesn't seem to be mutated. Here are the mutated foci.Position 42383381 doesn't seem to be mutated. Here are the mutated foci.Position 10249327 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 914721 doesn't seem to be mutated. Here are the mutated foci.Position 86916332 doesn't seem to be mutated. Here are the mutated foci.Position 112097481 doesn't seem to be mutated. Here are the mutated foci.Position 50755145 doesn't seem to be mutated. Here are the mutated foci.Position 21802469 doesn't seem to be mutated. Here are the mutated foci.Position 95386676 doesn't seem to be mutated. Here are the mutated foci.Position 112461782 doesn't seem to be mutated. Here are the mutated foci.Position 43057875 doesn't seem to be mutated. Here are the mutated foci.Position 41112709 doesn't seem to be mutated. Here are the mutated foci.Position 41125428 doesn't seem to be mutated. Here are the mutated foci.Position 133804480 doesn't seem to be mutated. Here are the mutated foci.Position 3746350 doesn't seem to be mutated. Here are the mutated foci.Position 31283424 doesn't seem to be mutated. Here are the mutated foci.Position 77613261 doesn't seem to be mutated. Here are the mutated foci.Position 144452980 doesn't seem to be mutated. Here are the mutated foci.Position 232153819 doesn't seem to be mutated. Here are the mutated foci.Position 122275971 doesn't seem to be mutated. Here are the mutated foci.Position 178156804 doesn't seem to be mutated. Here are the mutated foci.Position 36886678 doesn't seem to be mutated. Here are the mutated foci.Position 95444024 doesn't seem to be mutated. Here are the mutated foci.Position 87914888 doesn't seem to be mutated. Here are the mutated foci.Position 35010625 doesn't seem to be mutated. Here are the mutated foci.Position 232077382 doesn't seem to be mutated. Here are the mutated foci.Position 232086350 doesn't seem to be mutated. Here are the mutated foci.Position 69814659 doesn't seem to be mutated. Here are the mutated foci.Position 93094885 doesn't seem to be mutated. Here are the mutated foci.Position 48472515 doesn't seem to be mutated. Here are the mutated foci.Position 3797598 doesn't seem to be mutated. Here are the mutated foci.Position 29821036 doesn't seem to be mutated. Here are the mutated foci.Position 168975469 doesn't seem to be mutated. Here are the mutated foci.Position 1803906 doesn't seem to be mutated. Here are the mutated foci.Position 138685701 doesn't seem to be mutated. Here are the mutated foci.Position 177203487 doesn't seem to be mutated. Here are the mutated foci.Position 55044786 doesn't seem to be mutated. Here are the mutated foci.Position 329043 doesn't seem to be mutated. Here are the mutated foci.Position 35222286 doesn't seem to be mutated. Here are the mutated foci.Position 133301005 doesn't seem to be mutated. Here are the mutated foci.Position 133342809 doesn't seem to be mutated. Here are the mutated foci.Position 47808731 doesn't seem to be mutated. Here are the mutated foci.Position 232153608 doesn't seem to be mutated. Here are the mutated foci.Position 10035159 doesn't seem to be mutated. Here are the mutated foci.Position 140752860 doesn't seem to be mutated. Here are the mutated foci.Position 95358075 doesn't seem to be mutated. Here are the mutated foci.Position 32714409 doesn't seem to be mutated. Here are the mutated foci.Position 61855554 doesn't seem to be mutated. Here are the mutated foci.Position 35805941 doesn't seem to be mutated. Here are the mutated foci.Position 29616935 doesn't seem to be mutated. Here are the mutated foci.Position 77672224 doesn't seem to be mutated. Here are the mutated foci.Position 214811141 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 1263406 doesn't seem to be mutated. Here are the mutated foci.Position 55038729 doesn't seem to be mutated. Here are the mutated foci.Position 61906221 doesn't seem to be mutated. Here are the mutated foci.Position 104765359 doesn't seem to be mutated. Here are the mutated foci.Position 1205815 doesn't seem to be mutated. Here are the mutated foci.Position 58858787 doesn't seem to be mutated. Here are the mutated foci.Position 77587357 doesn't seem to be mutated. Here are the mutated foci.Position 10333418 doesn't seem to be mutated. Here are the mutated foci.Position 144388936 doesn't seem to be mutated. Here are the mutated foci.Position 138753655 doesn't seem to be mutated. Here are the mutated foci.Position 95489839 doesn't seem to be mutated. Here are the mutated foci.Position 86751761 doesn't seem to be mutated. Here are the mutated foci.Position 121560615 doesn't seem to be mutated. Here are the mutated foci.Position 65078326 doesn't seem to be mutated. Here are the mutated foci.Position 77644719 doesn't seem to be mutated. Here are the mutated foci.Position 122202095 doesn't seem to be mutated. Here are the mutated foci.Position 80797956 doesn't seem to be mutated. Here are the mutated foci.Position 157231704 doesn't seem to be mutated. Here are the mutated foci.Position 41979197 doesn't seem to be mutated. Here are the mutated foci.Position 47218952 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 122194512 doesn't seem to be mutated. Here are the mutated foci.Position 140838582 doesn't seem to be mutated. Here are the mutated foci.Position 44131939 doesn't seem to be mutated. Here are the mutated foci.Position 77921895 doesn't seem to be mutated. Here are the mutated foci.Position 43095581 doesn't seem to be mutated. Here are the mutated foci.Position 32401560 doesn't seem to be mutated. Here are the mutated foci.Position 10048224 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 62033267 doesn't seem to be mutated. Here are the mutated foci.Position 87930178 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 11039200 doesn't seem to be mutated. Here are the mutated foci.Position 133587290 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 87955451 doesn't seem to be mutated. Here are the mutated foci.Position 42383381 doesn't seem to be mutated. Here are the mutated foci.Position 161325303 doesn't seem to be mutated. Here are the mutated foci.Position 144430483 doesn't seem to be mutated. Here are the mutated foci.Position 168997506 doesn't seem to be mutated. Here are the mutated foci.Position 41749414 doesn't seem to be mutated. Here are the mutated foci.Position 36916634 doesn't seem to be mutated. Here are the mutated foci.Position 121590990 doesn't seem to be mutated. Here are the mutated foci.Position 90728311 doesn't seem to be mutated. Here are the mutated foci.Position 17241439 doesn't seem to be mutated. Here are the mutated foci.Position 58888793 doesn't seem to be mutated. Here are the mutated foci.Position 34981764 doesn't seem to be mutated. Here are the mutated foci.Position 133655507 doesn't seem to be mutated. Here are the mutated foci.Position 44840712 doesn't seem to be mutated. Here are the mutated foci.Position 29566087 doesn't seem to be mutated. Here are the mutated foci.Position 232218730 doesn't seem to be mutated. Here are the mutated foci.Position 69913018 doesn't seem to be mutated. Here are the mutated foci.Position 138861281 doesn't seem to be mutated. Here are the mutated foci.Position 138905232 doesn't seem to be mutated. Here are the mutated foci.Position 138934382 doesn't seem to be mutated. Here are the mutated foci.Position 157173351 doesn't seem to be mutated. Here are the mutated foci.Position 116709662 doesn't seem to be mutated. Here are the mutated foci.Position 118003402 doesn't seem to be mutated. Here are the mutated foci.Position 102537415 doesn't seem to be mutated. Here are the mutated foci.Position 121503604 doesn't seem to be mutated. Here are the mutated foci.Position 121599187 doesn't seem to be mutated. Here are the mutated foci.Position 50180532 doesn't seem to be mutated. Here are the mutated foci.Position 50220244 doesn't seem to be mutated. Here are the mutated foci.Position 90775867 doesn't seem to be mutated. Here are the mutated foci.Position 58997313 doesn't seem to be mutated. Here are the mutated foci.Position 61837701 doesn't seem to be mutated. Here are the mutated foci.Position 133882536 doesn't seem to be mutated. Here are the mutated foci.Position 54662994 doesn't seem to be mutated. Here are the mutated foci.Position 157153463 doesn't seem to be mutated. Here are the mutated foci.Position 93120978 doesn't seem to be mutated. Here are the mutated foci.Position 142753107 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 102519959 doesn't seem to be mutated. Here are the mutated foci.Position 22629658 doesn't seem to be mutated. Here are the mutated foci.Position 31303544 doesn't seem to be mutated. Here are the mutated foci.Position 29306653 doesn't seem to be mutated. Here are the mutated foci.Position 80819090 doesn't seem to be mutated. Here are the mutated foci.Position 87971559 doesn't seem to be mutated. Here are the mutated foci.Position 111011051 doesn't seem to be mutated. Here are the mutated foci.Position 17058701 doesn't seem to be mutated. Here are the mutated foci.Position 58164148 doesn't seem to be mutated. Here are the mutated foci.Position 231965826 doesn't seem to be mutated. Here are the mutated foci.Position 104727643 doesn't seem to be mutated. Here are the mutated foci.Position 21976098 doesn't seem to be mutated. Here are the mutated foci.Position 95489839 doesn't seem to be mutated. Here are the mutated foci.Position 87933059 doesn't seem to be mutated. Here are the mutated foci.Position 119275608 doesn't seem to be mutated. Here are the mutated foci.Position 90728305 doesn't seem to be mutated. Here are the mutated foci.Position 47433020 doesn't seem to be mutated. Here are the mutated foci.Position 127289202 doesn't seem to be mutated. Here are the mutated foci.Position 55213703 doesn't seem to be mutated. Here are the mutated foci.Position 102591449 doesn't seem to be mutated. Here are the mutated foci.Position 121558405 doesn't seem to be mutated. Here are the mutated foci.Position 58855378 doesn't seem to be mutated. Here are the mutated foci.Position 10363411 doesn't seem to be mutated. Here are the mutated foci.Position 232250449 doesn't seem to be mutated. Here are the mutated foci.Position 69820383 doesn't seem to be mutated. Here are the mutated foci.Position 34428165 doesn't seem to be mutated. Here are the mutated foci.Position 104805708 doesn't seem to be mutated. Here are the mutated foci.Position 95215600 doesn't seem to be mutated. Here are the mutated foci.Position 108917467 doesn't seem to be mutated. Here are the mutated foci.Position 102638089 doesn't seem to be mutated. Here are the mutated foci.Position 95145790 doesn't seem to be mutated. Here are the mutated foci.Position 147916647 doesn't seem to be mutated. Here are the mutated foci.Position 96154801 doesn't seem to be mutated. Here are the mutated foci.Position 124852158 doesn't seem to be mutated. Here are the mutated foci.Position 31125537 doesn't seem to be mutated. Here are the mutated foci.Position 95199504 doesn't seem to be mutated. Here are the mutated foci.Position 87894095 doesn't seem to be mutated. Here are the mutated foci.Position 89012954 doesn't seem to be mutated. Here are the mutated foci.Position 32433468 doesn't seem to be mutated. Here are the mutated foci.Position 48466539 doesn't seem to be mutated. Here are the mutated foci.Position 7675995 doesn't seem to be mutated. Here are the mutated foci.Position 31201486 doesn't seem to be mutated. Here are the mutated foci.Position 31379431 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 133882536 doesn't seem to be mutated. Here are the mutated foci.Position 133967860 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 179238496 doesn't seem to be mutated. Here are the mutated foci.Position 1289876 doesn't seem to be mutated. Here are the mutated foci.Position 42082456 doesn't seem to be mutated. Here are the mutated foci.Position 119225050 doesn't seem to be mutated. Here are the mutated foci.Position 133358907 doesn't seem to be mutated. Here are the mutated foci.Position 47654921 doesn't seem to be mutated. Here are the mutated foci.Position 232255829 doesn't seem to be mutated. Here are the mutated foci.Position 43119366 doesn't seem to be mutated. Here are the mutated foci.Position 34893987 doesn't seem to be mutated. Here are the mutated foci.Position 35484952 doesn't seem to be mutated. Here are the mutated foci.Position 1291291 doesn't seem to be mutated. Here are the mutated foci.Position 55035522 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 142747767 doesn't seem to be mutated. Here are the mutated foci.Position 3606252 doesn't seem to be mutated. Here are the mutated foci.Position 23609309 doesn't seem to be mutated. Here are the mutated foci.Position 68745326 doesn't seem to be mutated. Here are the mutated foci.Position 45355834 doesn't seem to be mutated. Here are the mutated foci.Position 77567662 doesn't seem to be mutated. Here are the mutated foci.Position 29870504 doesn't seem to be mutated. Here are the mutated foci.Position 35466431 doesn't seem to be mutated. Here are the mutated foci.Position 50311873 doesn't seem to be mutated. Here are the mutated foci.Position 140842967 doesn't seem to be mutated. Here are the mutated foci.Position 32722391 doesn't seem to be mutated. Here are the mutated foci.Position 2078760 doesn't seem to be mutated. Here are the mutated foci.Position 68837745 doesn't seem to be mutated. Here are the mutated foci.Position 7675232 doesn't seem to be mutated. Here are the mutated foci.Position 35362397 doesn't seem to be mutated. Here are the mutated foci.Position 35693747 doesn't seem to be mutated. Here are the mutated foci.Position 29701812 doesn't seem to be mutated. Here are the mutated foci.Position 41168761 doesn't seem to be mutated. Here are the mutated foci.Position 133936210 doesn't seem to be mutated. Here are the mutated foci.Position 231421667 doesn't seem to be mutated. Here are the mutated foci.Position 144460620 doesn't seem to be mutated. Here are the mutated foci.Position 42237118 doesn't seem to be mutated. Here are the mutated foci.Position 140767709 doesn't seem to be mutated. Here are the mutated foci.Position 140774412 doesn't seem to be mutated. Here are the mutated foci.Position 95331352 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 61993132 doesn't seem to be mutated. Here are the mutated foci.Position 78030961 doesn't seem to be mutated. Here are the mutated foci.Position 29592658 doesn't seem to be mutated. Here are the mutated foci.Position 157179275 doesn't seem to be mutated. Here are the mutated foci.Position 55166601 doesn't seem to be mutated. Here are the mutated foci.Position 55166621 doesn't seem to be mutated. Here are the mutated foci.Position 55209366 doesn't seem to be mutated. Here are the mutated foci.Position 142747749 doesn't seem to be mutated. Here are the mutated foci.Position 95393819 doesn't seem to be mutated. Here are the mutated foci.Position 66485892 doesn't seem to be mutated. Here are the mutated foci.Position 193137693 doesn't seem to be mutated. Here are the mutated foci.Position 14168716 doesn't seem to be mutated. Here are the mutated foci.Position 112430739 doesn't seem to be mutated. Here are the mutated foci.Position 48313370 doesn't seem to be mutated. Here are the mutated foci.Position 89266910 doesn't seem to be mutated. Here are the mutated foci.Position 48689052 doesn't seem to be mutated. Here are the mutated foci.Position 10212882 doesn't seem to be mutated. Here are the mutated foci.Position 29619427 doesn't seem to be mutated. Here are the mutated foci.Position 39062183 doesn't seem to be mutated. Here are the mutated foci.Position 69954797 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 42209209 doesn't seem to be mutated. Here are the mutated foci.Position 55165319 doesn't seem to be mutated. Here are the mutated foci.Position 55191831 doesn't seem to be mutated. Here are the mutated foci.Position 306516 doesn't seem to be mutated. Here are the mutated foci.Position 108895096 doesn't seem to be mutated. Here are the mutated foci.Position 67488717 doesn't seem to be mutated. Here are the mutated foci.Position 119274923 doesn't seem to be mutated. Here are the mutated foci.Position 50178146 doesn't seem to be mutated. Here are the mutated foci.Position 50227065 doesn't seem to be mutated. Here are the mutated foci.Position 43062691 doesn't seem to be mutated. Here are the mutated foci.Position 58726671 doesn't seem to be mutated. Here are the mutated foci.Position 35317838 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 133842348 doesn't seem to be mutated. Here are the mutated foci.Position 144387045 doesn't seem to be mutated. Here are the mutated foci.Position 144437650 doesn't seem to be mutated. Here are the mutated foci.Position 2062676 doesn't seem to be mutated. Here are the mutated foci.Position 36863334 doesn't seem to be mutated. Here are the mutated foci.Position 108913642 doesn't seem to be mutated. Here are the mutated foci.Position 121499341 doesn't seem to be mutated. Here are the mutated foci.Position 44096330 doesn't seem to be mutated. Here are the mutated foci.Position 112502696 doesn't seem to be mutated. Here are the mutated foci.Position 45166299 doesn't seem to be mutated. Here are the mutated foci.Position 38276525 doesn't seem to be mutated. Here are the mutated foci.Position 38360652 doesn't seem to be mutated. Here are the mutated foci.Position 59068238 doesn't seem to be mutated. Here are the mutated foci.Position 51042306 doesn't seem to be mutated. Here are the mutated foci.Position 33301849 doesn't seem to be mutated. Here are the mutated foci.Position 35512081 doesn't seem to be mutated. Here are the mutated foci.Position 133299938 doesn't seem to be mutated. Here are the mutated foci.Position 10317694 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 41994118 doesn't seem to be mutated. Here are the mutated foci.Position 42202319 doesn't seem to be mutated. Here are the mutated foci.Position 62101608 doesn't seem to be mutated. Here are the mutated foci.Position 87974590 doesn't seem to be mutated. Here are the mutated foci.Position 121555537 doesn't seem to be mutated. Here are the mutated foci.Position 40699408 doesn't seem to be mutated. Here are the mutated foci.Position 43111100 doesn't seem to be mutated. Here are the mutated foci.Position 61727750 doesn't seem to be mutated. Here are the mutated foci.Position 11083054 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 77643930 doesn't seem to be mutated. Here are the mutated foci.Position 10235428 doesn't seem to be mutated. Here are the mutated foci.Position 168982800 doesn't seem to be mutated. Here are the mutated foci.Position 122212021 doesn't seem to be mutated. Here are the mutated foci.Position 122232190 doesn't seem to be mutated. Here are the mutated foci.Position 41753601 doesn't seem to be mutated. Here are the mutated foci.Position 904679 doesn't seem to be mutated. Here are the mutated foci.Position 1289151 doesn't seem to be mutated. Here are the mutated foci.Position 177186059 doesn't seem to be mutated. Here are the mutated foci.Position 177195454 doesn't seem to be mutated. Here are the mutated foci.Position 43591508 doesn't seem to be mutated. Here are the mutated foci.Position 42055115 doesn't seem to be mutated. Here are the mutated foci.Position 55181314 doesn't seem to be mutated. Here are the mutated foci.Position 116789312 doesn't seem to be mutated. Here are the mutated foci.Position 116796838 doesn't seem to be mutated. Here are the mutated foci.Position 148819398 doesn't seem to be mutated. Here are the mutated foci.Position 148819992 doesn't seem to be mutated. Here are the mutated foci.Position 148820044 doesn't seem to be mutated. Here are the mutated foci.Position 148822006 doesn't seem to be mutated. Here are the mutated foci.Position 148822368 doesn't seem to be mutated. Here are the mutated foci.Position 148822893 doesn't seem to be mutated. Here are the mutated foci.Position 148826765 doesn't seem to be mutated. Here are the mutated foci.Position 148865187 doesn't seem to be mutated. Here are the mutated foci.Position 117989239 doesn't seem to be mutated. Here are the mutated foci.Position 61920499 doesn't seem to be mutated. Here are the mutated foci.Position 87907575 doesn't seem to be mutated. Here are the mutated foci.Position 32410598 doesn't seem to be mutated. Here are the mutated foci.Position 108364485 doesn't seem to be mutated. Here are the mutated foci.Position 12717818 doesn't seem to be mutated. Here are the mutated foci.Position 40168863 doesn't seem to be mutated. Here are the mutated foci.Position 68753343 doesn't seem to be mutated. Here are the mutated foci.Position 7674954 doesn't seem to be mutated. Here are the mutated foci.Position 51071266 doesn't seem to be mutated. Here are the mutated foci.Position 58853312 doesn't seem to be mutated. Here are the mutated foci.Position 35253103 doesn't seem to be mutated. Here are the mutated foci.Position 35786293 doesn't seem to be mutated. Here are the mutated foci.Position 133655506 doesn't seem to be mutated. Here are the mutated foci.Position 155896838 doesn't seem to be mutated. Here are the mutated foci.Position 3575700 doesn't seem to be mutated. Here are the mutated foci.Position 47758130 doesn't seem to be mutated. Here are the mutated foci.Position 127266755 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 12593297 doesn't seem to be mutated. Here are the mutated foci.Position 119238315 doesn't seem to be mutated. Here are the mutated foci.Position 48427171 doesn't seem to be mutated. Here are the mutated foci.Position 104779953 doesn't seem to be mutated. Here are the mutated foci.Position 77760260 doesn't seem to be mutated. Here are the mutated foci.Position 77791186 doesn't seem to be mutated. Here are the mutated foci.Position 232140218 doesn't seem to be mutated. Here are the mutated foci.Position 140753238 doesn't seem to be mutated. Here are the mutated foci.Position 95320249 doesn't seem to be mutated. Here are the mutated foci.Position 35641213 doesn't seem to be mutated. Here are the mutated foci.Position 41182737 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 47457086 doesn't seem to be mutated. Here are the mutated foci.Position 47464402 doesn't seem to be mutated. Here are the mutated foci.Position 31341689 doesn't seem to be mutated. Here are the mutated foci.Position 47417851 doesn't seem to be mutated. Here are the mutated foci.Position 54284045 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 35503573 doesn't seem to be mutated. Here are the mutated foci.Position 29639159 doesn't seem to be mutated. Here are the mutated foci.Position 77532275 doesn't seem to be mutated. Here are the mutated foci.Position 140753337 doesn't seem to be mutated. Here are the mutated foci.Position 117898706 doesn't seem to be mutated. Here are the mutated foci.Position 95130300 doesn't seem to be mutated. Here are the mutated foci.Position 77731099 doesn't seem to be mutated. Here are the mutated foci.Position 47719389 doesn't seem to be mutated. Here are the mutated foci.Position 231966449 doesn't seem to be mutated. Here are the mutated foci.Position 104779122 doesn't seem to be mutated. Here are the mutated foci.Position 117964612 doesn't seem to be mutated. Here are the mutated foci.Position 88999168 doesn't seem to be mutated. Here are the mutated foci.Position 108283331 doesn't seem to be mutated. Here are the mutated foci.Position 112495272 doesn't seem to be mutated. Here are the mutated foci.Position 66410006 doesn't seem to be mutated. Here are the mutated foci.Position 35544986 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 10270768 doesn't seem to be mutated. Here are the mutated foci.Position 193162152 doesn't seem to be mutated. Here are the mutated foci.Position 29499085 doesn't seem to be mutated. Here are the mutated foci.Position 47601641 doesn't seem to be mutated. Here are the mutated foci.Position 37813111 doesn't seem to be mutated. Here are the mutated foci.Position 80716630 doesn't seem to be mutated. Here are the mutated foci.Position 112818834 doesn't seem to be mutated. Here are the mutated foci.Position 177169056 doesn't seem to be mutated. Here are the mutated foci.Position 124855735 doesn't seem to be mutated. Here are the mutated foci.Position 148883215 doesn't seem to be mutated. Here are the mutated foci.Position 117881350 doesn't seem to be mutated. Here are the mutated foci.Position 36955783 doesn't seem to be mutated. Here are the mutated foci.Position 132929932 doesn't seem to be mutated. Here are the mutated foci.Position 47236884 doesn't seem to be mutated. Here are the mutated foci.Position 108251499 doesn't seem to be mutated. Here are the mutated foci.Position 108251555 doesn't seem to be mutated. Here are the mutated foci.Position 108251596 doesn't seem to be mutated. Here are the mutated foci.Position 108251684 doesn't seem to be mutated. Here are the mutated foci.Position 108251706 doesn't seem to be mutated. Here are the mutated foci.Position 108330153 doesn't seem to be mutated. Here are the mutated foci.Position 108330226 doesn't seem to be mutated. Here are the mutated foci.Position 108330248 doesn't seem to be mutated. Here are the mutated foci.Position 108330275 doesn't seem to be mutated. Here are the mutated foci.Position 108330491 doesn't seem to be mutated. Here are the mutated foci.Position 108330779 doesn't seem to be mutated. Here are the mutated foci.Position 90746207 doesn't seem to be mutated. Here are the mutated foci.Position 90815908 doesn't seem to be mutated. Here are the mutated foci.Position 31371509 doesn't seem to be mutated. Here are the mutated foci.Position 61814256 doesn't seem to be mutated. Here are the mutated foci.Position 11082200 doesn't seem to be mutated. Here are the mutated foci.Position 35542661 doesn't seem to be mutated. Here are the mutated foci.Position 28686644 doesn't seem to be mutated. Here are the mutated foci.Position 77560792 doesn't seem to be mutated. Here are the mutated foci.Position 133334207 doesn't seem to be mutated. Here are the mutated foci.Position 133723642 doesn't seem to be mutated. Here are the mutated foci.Position 133918832 doesn't seem to be mutated. Here are the mutated foci.Position 54682427 doesn't seem to be mutated. Here are the mutated foci.Position 66984569 doesn't seem to be mutated. Here are the mutated foci.Position 1997622 doesn't seem to be mutated. Here are the mutated foci.Position 48564378 doesn't seem to be mutated. Here are the mutated foci.Position 38348417 doesn't seem to be mutated. Here are the mutated foci.Position 43100632 doesn't seem to be mutated. Here are the mutated foci.Position 10991153 doesn't seem to be mutated. Here are the mutated foci.Position 34846084 doesn't seem to be mutated. Here are the mutated foci.Position 35584122 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 147944813 doesn't seem to be mutated. Here are the mutated foci.Position 43343861 doesn't seem to be mutated. Here are the mutated foci.Position 47502487 doesn't seem to be mutated. Here are the mutated foci.Position 10054853 doesn't seem to be mutated. Here are the mutated foci.Position 240913 doesn't seem to be mutated. Here are the mutated foci.Position 248552 doesn't seem to be mutated. Here are the mutated foci.Position 132914291 doesn't seem to be mutated. Here are the mutated foci.Position 86785344 doesn't seem to be mutated. Here are the mutated foci.Position 21003341 doesn't seem to be mutated. Here are the mutated foci.Position 48689702 doesn't seem to be mutated. Here are the mutated foci.Position 69971174 doesn't seem to be mutated. Here are the mutated foci.Position 112808717 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 77583521 doesn't seem to be mutated. Here are the mutated foci.Position 133734719 doesn't seem to be mutated. Here are the mutated foci.Position 133824300 doesn't seem to be mutated. Here are the mutated foci.Position 29462990 doesn't seem to be mutated. Here are the mutated foci.Position 29612451 doesn't seem to be mutated. Here are the mutated foci.Position 29612456 doesn't seem to be mutated. Here are the mutated foci.Position 29729693 doesn't seem to be mutated. Here are the mutated foci.Position 29796293 doesn't seem to be mutated. Here are the mutated foci.Position 39035461 doesn't seem to be mutated. Here are the mutated foci.Position 47409597 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 80691993 doesn't seem to be mutated. Here are the mutated foci.Position 177252795 doesn't seem to be mutated. Here are the mutated foci.Position 104796712 doesn't seem to be mutated. Here are the mutated foci.Position 93094949 doesn't seem to be mutated. Here are the mutated foci.Position 148807804 doesn't seem to be mutated. Here are the mutated foci.Position 61927673 doesn't seem to be mutated. Here are the mutated foci.Position 62097513 doesn't seem to be mutated. Here are the mutated foci.Position 102503146 doesn't seem to be mutated. Here are the mutated foci.Position 44164339 doesn't seem to be mutated. Here are the mutated foci.Position 112421645 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 66387547 doesn't seem to be mutated. Here are the mutated foci.Position 80159325 doesn't seem to be mutated. Here are the mutated foci.Position 58716802 doesn't seem to be mutated. Here are the mutated foci.Position 76476365 doesn't seem to be mutated. Here are the mutated foci.Position 35864568 doesn't seem to be mutated. Here are the mutated foci.Position 77741503 doesn't seem to be mutated. Here are the mutated foci.Position 133936210 doesn't seem to be mutated. Here are the mutated foci.Position 10333418 doesn't seem to be mutated. Here are the mutated foci.Position 155230124 doesn't seem to be mutated. Here are the mutated foci.Position 231389407 doesn't seem to be mutated. Here are the mutated foci.Position 47461936 doesn't seem to be mutated. Here are the mutated foci.Position 1284082 doesn't seem to be mutated. Here are the mutated foci.Position 2158653 doesn't seem to be mutated. Here are the mutated foci.Position 32358292 doesn't seem to be mutated. Here are the mutated foci.Position 32358296 doesn't seem to be mutated. Here are the mutated foci.Position 40178906 doesn't seem to be mutated. Here are the mutated foci.Position 59040079 doesn't seem to be mutated. Here are the mutated foci.Position 857034 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 156867578 doesn't seem to be mutated. Here are the mutated foci.Position 96244386 doesn't seem to be mutated. Here are the mutated foci.Position 12635929 doesn't seem to be mutated. Here are the mutated foci.Position 12635934 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 80859120 doesn't seem to be mutated. Here are the mutated foci.Position 142754884 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 61953450 doesn't seem to be mutated. Here are the mutated foci.Position 44179821 doesn't seem to be mutated. Here are the mutated foci.Position 119238315 doesn't seem to be mutated. Here are the mutated foci.Position 50231554 doesn't seem to be mutated. Here are the mutated foci.Position 23639723 doesn't seem to be mutated. Here are the mutated foci.Position 7679510 doesn't seem to be mutated. Here are the mutated foci.Position 7679515 doesn't seem to be mutated. Here are the mutated foci.Position 31347026 doesn't seem to be mutated. Here are the mutated foci.Position 1187882 doesn't seem to be mutated. Here are the mutated foci.Position 11083054 doesn't seem to be mutated. Here are the mutated foci.Position 10251735 doesn't seem to be mutated. Here are the mutated foci.Position 10304164 doesn't seem to be mutated. Here are the mutated foci.Position 10316056 doesn't seem to be mutated. Here are the mutated foci.Position 10349624 doesn't seem to be mutated. Here are the mutated foci.Position 10352609 doesn't seem to be mutated. Here are the mutated foci.Position 10374698 doesn't seem to be mutated. Here are the mutated foci.Position 10376834 doesn't seem to be mutated. Here are the mutated foci.Position 17031731 doesn't seem to be mutated. Here are the mutated foci.Position 17032205 doesn't seem to be mutated. Here are the mutated foci.Position 43334916 doesn't seem to be mutated. Here are the mutated foci.Position 43335660 doesn't seem to be mutated. Here are the mutated foci.Position 43346867 doesn't seem to be mutated. Here are the mutated foci.Position 92831431 doesn't seem to be mutated. Here are the mutated foci.Position 154275933 doesn't seem to be mutated. Here are the mutated foci.Position 155236776 doesn't seem to be mutated. Here are the mutated foci.Position 155909379 doesn't seem to be mutated. Here are the mutated foci.Position 156872842 doesn't seem to be mutated. Here are the mutated foci.Position 161320222 doesn't seem to be mutated. Here are the mutated foci.Position 161336963 doesn't seem to be mutated. Here are the mutated foci.Position 161355812 doesn't seem to be mutated. Here are the mutated foci.Position 161363154 doesn't seem to be mutated. Here are the mutated foci.Position 161372419 doesn't seem to be mutated. Here are the mutated foci.Position 193118530 doesn't seem to be mutated. Here are the mutated foci.Position 193127288 doesn't seem to be mutated. Here are the mutated foci.Position 193137694 doesn't seem to be mutated. Here are the mutated foci.Position 193169545 doesn't seem to be mutated. Here are the mutated foci.Position 193224901 doesn't seem to be mutated. Here are the mutated foci.Position 193232239 doesn't seem to be mutated. Here are the mutated foci.Position 193236946 doesn't seem to be mutated. Here are the mutated foci.Position 193241055 doesn't seem to be mutated. Here are the mutated foci.Position 193243183 doesn't seem to be mutated. Here are the mutated foci.Position 231389407 doesn't seem to be mutated. Here are the mutated foci.Position 231389686 doesn't seem to be mutated. Here are the mutated foci.Position 29209748 doesn't seem to be mutated. Here are the mutated foci.Position 29282832 doesn't seem to be mutated. Here are the mutated foci.Position 29308039 doesn't seem to be mutated. Here are the mutated foci.Position 29390579 doesn't seem to be mutated. Here are the mutated foci.Position 29467064 doesn't seem to be mutated. Here are the mutated foci.Position 29651380 doesn't seem to be mutated. Here are the mutated foci.Position 29665004 doesn't seem to be mutated. Here are the mutated foci.Position 29701192 doesn't seem to be mutated. Here are the mutated foci.Position 29716825 doesn't seem to be mutated. Here are the mutated foci.Position 29721437 doesn't seem to be mutated. Here are the mutated foci.Position 29775538 doesn't seem to be mutated. Here are the mutated foci.Position 29814660 doesn't seem to be mutated. Here are the mutated foci.Position 38997672 doesn't seem to be mutated. Here are the mutated foci.Position 39033074 doesn't seem to be mutated. Here are the mutated foci.Position 39040858 doesn't seem to be mutated. Here are the mutated foci.Position 39067042 doesn't seem to be mutated. Here are the mutated foci.Position 47365094 doesn't seem to be mutated. Here are the mutated foci.Position 47387271 doesn't seem to be mutated. Here are the mutated foci.Position 47446711 doesn't seem to be mutated. Here are the mutated foci.Position 47454463 doesn't seem to be mutated. Here are the mutated foci.Position 47509032 doesn't seem to be mutated. Here are the mutated foci.Position 47650738 doesn't seem to be mutated. Here are the mutated foci.Position 47770130 doesn't seem to be mutated. Here are the mutated foci.Position 47776352 doesn't seem to be mutated. Here are the mutated foci.Position 47796569 doesn't seem to be mutated. Here are the mutated foci.Position 58201937 doesn't seem to be mutated. Here are the mutated foci.Position 58203027 doesn't seem to be mutated. Here are the mutated foci.Position 58221188 doesn't seem to be mutated. Here are the mutated foci.Position 58222317 doesn't seem to be mutated. Here are the mutated foci.Position 58228072 doesn't seem to be mutated. Here are the mutated foci.Position 58236051 doesn't seem to be mutated. Here are the mutated foci.Position 96253874 doesn't seem to be mutated. Here are the mutated foci.Position 127297804 doesn't seem to be mutated. Here are the mutated foci.Position 144361459 doesn't seem to be mutated. Here are the mutated foci.Position 144366321 doesn't seem to be mutated. Here are the mutated foci.Position 144385995 doesn't seem to be mutated. Here are the mutated foci.Position 144400835 doesn't seem to be mutated. Here are the mutated foci.Position 144419910 doesn't seem to be mutated. Here are the mutated foci.Position 144448981 doesn't seem to be mutated. Here are the mutated foci.Position 144472806 doesn't seem to be mutated. Here are the mutated foci.Position 144501267 doesn't seem to be mutated. Here are the mutated foci.Position 168921908 doesn't seem to be mutated. Here are the mutated foci.Position 168978320 doesn't seem to be mutated. Here are the mutated foci.Position 168997264 doesn't seem to be mutated. Here are the mutated foci.Position 169009739 doesn't seem to be mutated. Here are the mutated foci.Position 169033390 doesn't seem to be mutated. Here are the mutated foci.Position 214742330 doesn't seem to be mutated. Here are the mutated foci.Position 214771730 doesn't seem to be mutated. Here are the mutated foci.Position 214781251 doesn't seem to be mutated. Here are the mutated foci.Position 214789376 doesn't seem to be mutated. Here are the mutated foci.Position 231961845 doesn't seem to be mutated. Here are the mutated foci.Position 231990179 doesn't seem to be mutated. Here are the mutated foci.Position 231995441 doesn't seem to be mutated. Here are the mutated foci.Position 232018086 doesn't seem to be mutated. Here are the mutated foci.Position 232033295 doesn't seem to be mutated. Here are the mutated foci.Position 232052030 doesn't seem to be mutated. Here are the mutated foci.Position 232087434 doesn't seem to be mutated. Here are the mutated foci.Position 232102437 doesn't seem to be mutated. Here are the mutated foci.Position 232115306 doesn't seem to be mutated. Here are the mutated foci.Position 232133920 doesn't seem to be mutated. Here are the mutated foci.Position 232136565 doesn't seem to be mutated. Here are the mutated foci.Position 232173890 doesn't seem to be mutated. Here are the mutated foci.Position 232174837 doesn't seem to be mutated. Here are the mutated foci.Position 232300073 doesn't seem to be mutated. Here are the mutated foci.Position 232322280 doesn't seem to be mutated. Here are the mutated foci.Position 10022698 doesn't seem to be mutated. Here are the mutated foci.Position 10036684 doesn't seem to be mutated. Here are the mutated foci.Position 10083933 doesn't seem to be mutated. Here are the mutated foci.Position 10089285 doesn't seem to be mutated. Here are the mutated foci.Position 10099525 doesn't seem to be mutated. Here are the mutated foci.Position 10101066 doesn't seem to be mutated. Here are the mutated foci.Position 10141253 doesn't seem to be mutated. Here are the mutated foci.Position 10149121 doesn't seem to be mutated. Here are the mutated foci.Position 10151801 doesn't seem to be mutated. Here are the mutated foci.Position 12586402 doesn't seem to be mutated. Here are the mutated foci.Position 12627653 doesn't seem to be mutated. Here are the mutated foci.Position 36994817 doesn't seem to be mutated. Here are the mutated foci.Position 37006802 doesn't seem to be mutated. Here are the mutated foci.Position 37009979 doesn't seem to be mutated. Here are the mutated foci.Position 37047743 doesn't seem to be mutated. Here are the mutated foci.Position 69801057 doesn't seem to be mutated. Here are the mutated foci.Position 69827733 doesn't seem to be mutated. Here are the mutated foci.Position 69831242 doesn't seem to be mutated. Here are the mutated foci.Position 69881644 doesn't seem to be mutated. Here are the mutated foci.Position 69882120 doesn't seem to be mutated. Here are the mutated foci.Position 69902851 doesn't seem to be mutated. Here are the mutated foci.Position 122201529 doesn't seem to be mutated. Here are the mutated foci.Position 122218401 doesn't seem to be mutated. Here are the mutated foci.Position 122222764 doesn't seem to be mutated. Here are the mutated foci.Position 122232149 doesn't seem to be mutated. Here are the mutated foci.Position 122237681 doesn't seem to be mutated. Here are the mutated foci.Position 158584720 doesn't seem to be mutated. Here are the mutated foci.Position 158596154 doesn't seem to be mutated. Here are the mutated foci.Position 179145244 doesn't seem to be mutated. Here are the mutated foci.Position 179150170 doesn't seem to be mutated. Here are the mutated foci.Position 179172263 doesn't seem to be mutated. Here are the mutated foci.Position 179174193 doesn't seem to be mutated. Here are the mutated foci.Position 54256549 doesn't seem to be mutated. Here are the mutated foci.Position 54280755 doesn't seem to be mutated. Here are the mutated foci.Position 54298349 doesn't seem to be mutated. Here are the mutated foci.Position 54674133 doesn't seem to be mutated. Here are the mutated foci.Position 54686220 doesn't seem to be mutated. Here are the mutated foci.Position 56922680 doesn't seem to be mutated. Here are the mutated foci.Position 56930748 doesn't seem to be mutated. Here are the mutated foci.Position 56943063 doesn't seem to be mutated. Here are the mutated foci.Position 896329 doesn't seem to be mutated. Here are the mutated foci.Position 911571 doesn't seem to be mutated. Here are the mutated foci.Position 915192 doesn't seem to be mutated. Here are the mutated foci.Position 1268626 doesn't seem to be mutated. Here are the mutated foci.Position 37827930 doesn't seem to be mutated. Here are the mutated foci.Position 80662601 doesn't seem to be mutated. Here are the mutated foci.Position 80663552 doesn't seem to be mutated. Here are the mutated foci.Position 80707558 doesn't seem to be mutated. Here are the mutated foci.Position 80736717 doesn't seem to be mutated. Here are the mutated foci.Position 80797809 doesn't seem to be mutated. Here are the mutated foci.Position 112781900 doesn't seem to be mutated. Here are the mutated foci.Position 112783783 doesn't seem to be mutated. Here are the mutated foci.Position 112805009 doesn't seem to be mutated. Here are the mutated foci.Position 132592378 doesn't seem to be mutated. Here are the mutated foci.Position 132614703 doesn't seem to be mutated. Here are the mutated foci.Position 132633587 doesn't seem to be mutated. Here are the mutated foci.Position 138683584 doesn't seem to be mutated. Here are the mutated foci.Position 138713957 doesn't seem to be mutated. Here are the mutated foci.Position 138724421 doesn't seem to be mutated. Here are the mutated foci.Position 138757034 doesn't seem to be mutated. Here are the mutated foci.Position 138776040 doesn't seem to be mutated. Here are the mutated foci.Position 138806733 doesn't seem to be mutated. Here are the mutated foci.Position 138810924 doesn't seem to be mutated. Here are the mutated foci.Position 138815003 doesn't seem to be mutated. Here are the mutated foci.Position 138909364 doesn't seem to be mutated. Here are the mutated foci.Position 157178617 doesn't seem to be mutated. Here are the mutated foci.Position 157241568 doesn't seem to be mutated. Here are the mutated foci.Position 177166002 doesn't seem to be mutated. Here are the mutated foci.Position 177184532 doesn't seem to be mutated. Here are the mutated foci.Position 177184725 doesn't seem to be mutated. Here are the mutated foci.Position 177188841 doesn't seem to be mutated. Here are the mutated foci.Position 177218500 doesn't seem to be mutated. Here are the mutated foci.Position 177265278 doesn't seem to be mutated. Here are the mutated foci.Position 177282523 doesn't seem to be mutated. Here are the mutated foci.Position 178155431 doesn't seem to be mutated. Here are the mutated foci.Position 34422254 doesn't seem to be mutated. Here are the mutated foci.Position 35453313 doesn't seem to be mutated. Here are the mutated foci.Position 35455349 doesn't seem to be mutated. Here are the mutated foci.Position 35461651 doesn't seem to be mutated. Here are the mutated foci.Position 43595287 doesn't seem to be mutated. Here are the mutated foci.Position 104727403 doesn't seem to be mutated. Here are the mutated foci.Position 104751955 doesn't seem to be mutated. Here are the mutated foci.Position 104781673 doesn't seem to be mutated. Here are the mutated foci.Position 104826798 doesn't seem to be mutated. Here are the mutated foci.Position 104856238 doesn't seem to be mutated. Here are the mutated foci.Position 5972825 doesn't seem to be mutated. Here are the mutated foci.Position 5997217 doesn't seem to be mutated. Here are the mutated foci.Position 6000636 doesn't seem to be mutated. Here are the mutated foci.Position 6000859 doesn't seem to be mutated. Here are the mutated foci.Position 6003293 doesn't seem to be mutated. Here are the mutated foci.Position 6008383 doesn't seem to be mutated. Here are the mutated foci.Position 41996289 doesn't seem to be mutated. Here are the mutated foci.Position 42015472 doesn't seem to be mutated. Here are the mutated foci.Position 42082535 doesn't seem to be mutated. Here are the mutated foci.Position 42100579 doesn't seem to be mutated. Here are the mutated foci.Position 42124979 doesn't seem to be mutated. Here are the mutated foci.Position 42147519 doesn't seem to be mutated. Here are the mutated foci.Position 42159143 doesn't seem to be mutated. Here are the mutated foci.Position 42198470 doesn't seem to be mutated. Here are the mutated foci.Position 50329165 doesn't seem to be mutated. Here are the mutated foci.Position 50341834 doesn't seem to be mutated. Here are the mutated foci.Position 50362725 doesn't seem to be mutated. Here are the mutated foci.Position 50367639 doesn't seem to be mutated. Here are the mutated foci.Position 50396688 doesn't seem to be mutated. Here are the mutated foci.Position 55026869 doesn't seem to be mutated. Here are the mutated foci.Position 55075731 doesn't seem to be mutated. Here are the mutated foci.Position 55159343 doesn't seem to be mutated. Here are the mutated foci.Position 55177226 doesn't seem to be mutated. Here are the mutated foci.Position 55196783 doesn't seem to be mutated. Here are the mutated foci.Position 55209138 doesn't seem to be mutated. Here are the mutated foci.Position 66996042 doesn't seem to be mutated. Here are the mutated foci.Position 96129464 doesn't seem to be mutated. Here are the mutated foci.Position 96134794 doesn't seem to be mutated. Here are the mutated foci.Position 96146537 doesn't seem to be mutated. Here are the mutated foci.Position 96147931 doesn't seem to be mutated. Here are the mutated foci.Position 96151465 doesn't seem to be mutated. Here are the mutated foci.Position 96175578 doesn't seem to be mutated. Here are the mutated foci.Position 96189553 doesn't seem to be mutated. Here are the mutated foci.Position 96254003 doesn't seem to be mutated. Here are the mutated foci.Position 96261870 doesn't seem to be mutated. Here are the mutated foci.Position 116670779 doesn't seem to be mutated. Here are the mutated foci.Position 116741068 doesn't seem to be mutated. Here are the mutated foci.Position 124850906 doesn't seem to be mutated. Here are the mutated foci.Position 124900359 doesn't seem to be mutated. Here are the mutated foci.Position 124918080 doesn't seem to be mutated. Here are the mutated foci.Position 140732128 doesn't seem to be mutated. Here are the mutated foci.Position 140816986 doesn't seem to be mutated. Here are the mutated foci.Position 140872698 doesn't seem to be mutated. Here are the mutated foci.Position 140876917 doesn't seem to be mutated. Here are the mutated foci.Position 140900279 doesn't seem to be mutated. Here are the mutated foci.Position 140907748 doesn't seem to be mutated. Here are the mutated foci.Position 140919831 doesn't seem to be mutated. Here are the mutated foci.Position 148809131 doesn't seem to be mutated. Here are the mutated foci.Position 148844959 doesn't seem to be mutated. Here are the mutated foci.Position 148845317 doesn't seem to be mutated. Here are the mutated foci.Position 31049552 doesn't seem to be mutated. Here are the mutated foci.Position 31077385 doesn't seem to be mutated. Here are the mutated foci.Position 31097315 doesn't seem to be mutated. Here are the mutated foci.Position 31159312 doesn't seem to be mutated. Here are the mutated foci.Position 31162447 doesn't seem to be mutated. Here are the mutated foci.Position 38470209 doesn't seem to be mutated. Here are the mutated foci.Position 89935814 doesn't seem to be mutated. Here are the mutated foci.Position 89950280 doesn't seem to be mutated. Here are the mutated foci.Position 89967962 doesn't seem to be mutated. Here are the mutated foci.Position 117835392 doesn't seem to be mutated. Here are the mutated foci.Position 117840619 doesn't seem to be mutated. Here are the mutated foci.Position 117865261 doesn't seem to be mutated. Here are the mutated foci.Position 117875154 doesn't seem to be mutated. Here are the mutated foci.Position 117923593 doesn't seem to be mutated. Here are the mutated foci.Position 117927417 doesn't seem to be mutated. Here are the mutated foci.Position 117937529 doesn't seem to be mutated. Here are the mutated foci.Position 117961180 doesn't seem to be mutated. Here are the mutated foci.Position 117991555 doesn't seem to be mutated. Here are the mutated foci.Position 118035597 doesn't seem to be mutated. Here are the mutated foci.Position 118040229 doesn't seem to be mutated. Here are the mutated foci.Position 118107286 doesn't seem to be mutated. Here are the mutated foci.Position 342298 doesn't seem to be mutated. Here are the mutated foci.Position 371170 doesn't seem to be mutated. Here are the mutated foci.Position 382989 doesn't seem to be mutated. Here are the mutated foci.Position 386240 doesn't seem to be mutated. Here are the mutated foci.Position 453817 doesn't seem to be mutated. Here are the mutated foci.Position 453826 doesn't seem to be mutated. Here are the mutated foci.Position 2002817 doesn't seem to be mutated. Here are the mutated foci.Position 2024012 doesn't seem to be mutated. Here are the mutated foci.Position 2072508 doesn't seem to be mutated. Here are the mutated foci.Position 2074703 doesn't seem to be mutated. Here are the mutated foci.Position 2080226 doesn't seem to be mutated. Here are the mutated foci.Position 2122327 doesn't seem to be mutated. Here are the mutated foci.Position 2131938 doesn't seem to be mutated. Here are the mutated foci.Position 2138185 doesn't seem to be mutated. Here are the mutated foci.Position 2183278 doesn't seem to be mutated. Here are the mutated foci.Position 21967651 doesn't seem to be mutated. Here are the mutated foci.Position 21974722 doesn't seem to be mutated. Here are the mutated foci.Position 36874949 doesn't seem to be mutated. Here are the mutated foci.Position 36926760 doesn't seem to be mutated. Here are the mutated foci.Position 36962807 doesn't seem to be mutated. Here are the mutated foci.Position 36993920 doesn't seem to be mutated. Here are the mutated foci.Position 95113625 doesn't seem to be mutated. Here are the mutated foci.Position 95125275 doesn't seem to be mutated. Here are the mutated foci.Position 95159033 doesn't seem to be mutated. Here are the mutated foci.Position 95224003 doesn't seem to be mutated. Here are the mutated foci.Position 95245899 doesn't seem to be mutated. Here are the mutated foci.Position 95247210 doesn't seem to be mutated. Here are the mutated foci.Position 95291488 doesn't seem to be mutated. Here are the mutated foci.Position 95328581 doesn't seem to be mutated. Here are the mutated foci.Position 95329562 doesn't seem to be mutated. Here are the mutated foci.Position 95329931 doesn't seem to be mutated. Here are the mutated foci.Position 95423950 doesn't seem to be mutated. Here are the mutated foci.Position 95438055 doesn't seem to be mutated. Here are the mutated foci.Position 95440748 doesn't seem to be mutated. Here are the mutated foci.Position 95498527 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 95510003 doesn't seem to be mutated. Here are the mutated foci.Position 95510620 doesn't seem to be mutated. Here are the mutated foci.Position 99158202 doesn't seem to be mutated. Here are the mutated foci.Position 108905126 doesn't seem to be mutated. Here are the mutated foci.Position 108913922 doesn't seem to be mutated. Here are the mutated foci.Position 132918386 doesn't seem to be mutated. Here are the mutated foci.Position 43104521 doesn't seem to be mutated. Here are the mutated foci.Position 61901999 doesn't seem to be mutated. Here are the mutated foci.Position 61990725 doesn't seem to be mutated. Here are the mutated foci.Position 70595598 doesn't seem to be mutated. Here are the mutated foci.Position 70603391 doesn't seem to be mutated. Here are the mutated foci.Position 78050787 doesn't seem to be mutated. Here are the mutated foci.Position 86768105 doesn't seem to be mutated. Here are the mutated foci.Position 86768309 doesn't seem to be mutated. Here are the mutated foci.Position 86778233 doesn't seem to be mutated. Here are the mutated foci.Position 86825730 doesn't seem to be mutated. Here are the mutated foci.Position 86840721 doesn't seem to be mutated. Here are the mutated foci.Position 86846708 doesn't seem to be mutated. Here are the mutated foci.Position 86902287 doesn't seem to be mutated. Here are the mutated foci.Position 86920835 doesn't seem to be mutated. Here are the mutated foci.Position 87896321 doesn't seem to be mutated. Here are the mutated foci.Position 87900087 doesn't seem to be mutated. Here are the mutated foci.Position 87919023 doesn't seem to be mutated. Here are the mutated foci.Position 87950600 doesn't seem to be mutated. Here are the mutated foci.Position 87958950 doesn't seem to be mutated. Here are the mutated foci.Position 87959935 doesn't seem to be mutated. Here are the mutated foci.Position 87966130 doesn't seem to be mutated. Here are the mutated foci.Position 87967658 doesn't seem to be mutated. Here are the mutated foci.Position 102505786 doesn't seem to be mutated. Here are the mutated foci.Position 102552570 doesn't seem to be mutated. Here are the mutated foci.Position 102603632 doesn't seem to be mutated. Here are the mutated foci.Position 110936099 doesn't seem to be mutated. Here are the mutated foci.Position 113551807 doesn't seem to be mutated. Here are the mutated foci.Position 113553407 doesn't seem to be mutated. Here are the mutated foci.Position 121506377 doesn't seem to be mutated. Here are the mutated foci.Position 121524101 doesn't seem to be mutated. Here are the mutated foci.Position 121541934 doesn't seem to be mutated. Here are the mutated foci.Position 121572622 doesn't seem to be mutated. Here are the mutated foci.Position 32405537 doesn't seem to be mutated. Here are the mutated foci.Position 32407736 doesn't seem to be mutated. Here are the mutated foci.Position 32410722 doesn't seem to be mutated. Here are the mutated foci.Position 44104314 doesn't seem to be mutated. Here are the mutated foci.Position 44168076 doesn't seem to be mutated. Here are the mutated foci.Position 44217683 doesn't seem to be mutated. Here are the mutated foci.Position 44237273 doesn't seem to be mutated. Here are the mutated foci.Position 108282129 doesn't seem to be mutated. Here are the mutated foci.Position 108345750 doesn't seem to be mutated. Here are the mutated foci.Position 119215590 doesn't seem to be mutated. Here are the mutated foci.Position 119291911 doesn't seem to be mutated. Here are the mutated foci.Position 11685606 doesn't seem to be mutated. Here are the mutated foci.Position 11697418 doesn't seem to be mutated. Here are the mutated foci.Position 11759354 doesn't seem to be mutated. Here are the mutated foci.Position 11888392 doesn't seem to be mutated. Here are the mutated foci.Position 11889653 doesn't seem to be mutated. Here are the mutated foci.Position 25248014 doesn't seem to be mutated. Here are the mutated foci.Position 111402093 doesn't seem to be mutated. Here are the mutated foci.Position 112418285 doesn't seem to be mutated. Here are the mutated foci.Position 112472537 doesn't seem to be mutated. Here are the mutated foci.Position 112492523 doesn't seem to be mutated. Here are the mutated foci.Position 112493384 doesn't seem to be mutated. Here are the mutated foci.Position 132630721 doesn't seem to be mutated. Here are the mutated foci.Position 132673056 doesn't seem to be mutated. Here are the mutated foci.Position 32337923 doesn't seem to be mutated. Here are the mutated foci.Position 32339421 doesn't seem to be mutated. Here are the mutated foci.Position 32352848 doesn't seem to be mutated. Here are the mutated foci.Position 32356235 doesn't seem to be mutated. Here are the mutated foci.Position 32370241 doesn't seem to be mutated. Here are the mutated foci.Position 32393468 doesn't seem to be mutated. Here are the mutated foci.Position 48369006 doesn't seem to be mutated. Here are the mutated foci.Position 48436643 doesn't seem to be mutated. Here are the mutated foci.Position 48437641 doesn't seem to be mutated. Here are the mutated foci.Position 48472515 doesn't seem to be mutated. Here are the mutated foci.Position 45140033 doesn't seem to be mutated. Here are the mutated foci.Position 45141596 doesn't seem to be mutated. Here are the mutated foci.Position 45149286 doesn't seem to be mutated. Here are the mutated foci.Position 45178350 doesn't seem to be mutated. Here are the mutated foci.Position 45184777 doesn't seem to be mutated. Here are the mutated foci.Position 45193763 doesn't seem to be mutated. Here are the mutated foci.Position 45196266 doesn't seem to be mutated. Here are the mutated foci.Position 45202202 doesn't seem to be mutated. Here are the mutated foci.Position 50133972 doesn't seem to be mutated. Here are the mutated foci.Position 50161790 doesn't seem to be mutated. Here are the mutated foci.Position 50170392 doesn't seem to be mutated. Here are the mutated foci.Position 50173009 doesn't seem to be mutated. Here are the mutated foci.Position 50181993 doesn't seem to be mutated. Here are the mutated foci.Position 50184700 doesn't seem to be mutated. Here are the mutated foci.Position 95118801 doesn't seem to be mutated. Here are the mutated foci.Position 95134855 doesn't seem to be mutated. Here are the mutated foci.Position 103714611 doesn't seem to be mutated. Here are the mutated foci.Position 104773450 doesn't seem to be mutated. Here are the mutated foci.Position 104790277 doesn't seem to be mutated. Here are the mutated foci.Position 104793970 doesn't seem to be mutated. Here are the mutated foci.Position 32729006 doesn't seem to be mutated. Here are the mutated foci.Position 38303185 doesn't seem to be mutated. Here are the mutated foci.Position 38330961 doesn't seem to be mutated. Here are the mutated foci.Position 38355929 doesn't seem to be mutated. Here are the mutated foci.Position 38359347 doesn't seem to be mutated. Here are the mutated foci.Position 40164236 doesn't seem to be mutated. Here are the mutated foci.Position 40188933 doesn't seem to be mutated. Here are the mutated foci.Position 40208138 doesn't seem to be mutated. Here are the mutated foci.Position 40209055 doesn't seem to be mutated. Here are the mutated foci.Position 40214363 doesn't seem to be mutated. Here are the mutated foci.Position 40727681 doesn't seem to be mutated. Here are the mutated foci.Position 66385497 doesn't seem to be mutated. Here are the mutated foci.Position 66393182 doesn't seem to be mutated. Here are the mutated foci.Position 66413956 doesn't seem to be mutated. Here are the mutated foci.Position 82535779 doesn't seem to be mutated. Here are the mutated foci.Position 89260227 doesn't seem to be mutated. Here are the mutated foci.Position 89295741 doesn't seem to be mutated. Here are the mutated foci.Position 89302568 doesn't seem to be mutated. Here are the mutated foci.Position 89302578 doesn't seem to be mutated. Here are the mutated foci.Position 89309378 doesn't seem to be mutated. Here are the mutated foci.Position 90740003 doesn't seem to be mutated. Here are the mutated foci.Position 90744896 doesn't seem to be mutated. Here are the mutated foci.Position 90745107 doesn't seem to be mutated. Here are the mutated foci.Position 90816729 doesn't seem to be mutated. Here are the mutated foci.Position 2056113 doesn't seem to be mutated. Here are the mutated foci.Position 2070559 doesn't seem to be mutated. Here are the mutated foci.Position 3612493 doesn't seem to be mutated. Here are the mutated foci.Position 3763169 doesn't seem to be mutated. Here are the mutated foci.Position 3766531 doesn't seem to be mutated. Here are the mutated foci.Position 3786320 doesn't seem to be mutated. Here are the mutated foci.Position 3787630 doesn't seem to be mutated. Here are the mutated foci.Position 3833949 doesn't seem to be mutated. Here are the mutated foci.Position 3880776 doesn't seem to be mutated. Here are the mutated foci.Position 23615671 doesn't seem to be mutated. Here are the mutated foci.Position 23627614 doesn't seem to be mutated. Here are the mutated foci.Position 50754851 doesn't seem to be mutated. Here are the mutated foci.Position 50794951 doesn't seem to be mutated. Here are the mutated foci.Position 68732547 doesn't seem to be mutated. Here are the mutated foci.Position 68758810 doesn't seem to be mutated. Here are the mutated foci.Position 68826992 doesn't seem to be mutated. Here are the mutated foci.Position 89761336 doesn't seem to be mutated. Here are the mutated foci.Position 89766316 doesn't seem to be mutated. Here are the mutated foci.Position 89771500 doesn't seem to be mutated. Here are the mutated foci.Position 89784369 doesn't seem to be mutated. Here are the mutated foci.Position 7664584 doesn't seem to be mutated. Here are the mutated foci.Position 7674221 doesn't seem to be mutated. Here are the mutated foci.Position 7697871 doesn't seem to be mutated. Here are the mutated foci.Position 17221575 doesn't seem to be mutated. Here are the mutated foci.Position 17224713 doesn't seem to be mutated. Here are the mutated foci.Position 17230625 doesn't seem to be mutated. Here are the mutated foci.Position 31109395 doesn't seem to be mutated. Here are the mutated foci.Position 31112716 doesn't seem to be mutated. Here are the mutated foci.Position 31118293 doesn't seem to be mutated. Here are the mutated foci.Position 31124977 doesn't seem to be mutated. Here are the mutated foci.Position 31130978 doesn't seem to be mutated. Here are the mutated foci.Position 31225126 doesn't seem to be mutated. Here are the mutated foci.Position 31234175 doesn't seem to be mutated. Here are the mutated foci.Position 31235720 doesn't seem to be mutated. Here are the mutated foci.Position 31282382 doesn't seem to be mutated. Here are the mutated foci.Position 31286530 doesn't seem to be mutated. Here are the mutated foci.Position 31326388 doesn't seem to be mutated. Here are the mutated foci.Position 31367014 doesn't seem to be mutated. Here are the mutated foci.Position 31367337 doesn't seem to be mutated. Here are the mutated foci.Position 31385211 doesn't seem to be mutated. Here are the mutated foci.Position 35097133 doesn't seem to be mutated. Here are the mutated foci.Position 39199962 doesn't seem to be mutated. Here are the mutated foci.Position 40626222 doesn't seem to be mutated. Here are the mutated foci.Position 40633446 doesn't seem to be mutated. Here are the mutated foci.Position 42343170 doesn't seem to be mutated. Here are the mutated foci.Position 42371993 doesn't seem to be mutated. Here are the mutated foci.Position 42380097 doesn't seem to be mutated. Here are the mutated foci.Position 43041676 doesn't seem to be mutated. Here are the mutated foci.Position 43044805 doesn't seem to be mutated. Here are the mutated foci.Position 43080353 doesn't seem to be mutated. Here are the mutated foci.Position 43091990 doesn't seem to be mutated. Here are the mutated foci.Position 43100558 doesn't seem to be mutated. Here are the mutated foci.Position 43102079 doesn't seem to be mutated. Here are the mutated foci.Position 43109898 doesn't seem to be mutated. Here are the mutated foci.Position 43118762 doesn't seem to be mutated. Here are the mutated foci.Position 43150731 doesn't seem to be mutated. Here are the mutated foci.Position 58697559 doesn't seem to be mutated. Here are the mutated foci.Position 58699857 doesn't seem to be mutated. Here are the mutated foci.Position 58703796 doesn't seem to be mutated. Here are the mutated foci.Position 58716472 doesn't seem to be mutated. Here are the mutated foci.Position 58716647 doesn't seem to be mutated. Here are the mutated foci.Position 58730332 doesn't seem to be mutated. Here are the mutated foci.Position 59045638 doesn't seem to be mutated. Here are the mutated foci.Position 59048595 doesn't seem to be mutated. Here are the mutated foci.Position 59055490 doesn't seem to be mutated. Here are the mutated foci.Position 59101938 doesn't seem to be mutated. Here are the mutated foci.Position 61704233 doesn't seem to be mutated. Here are the mutated foci.Position 61719727 doesn't seem to be mutated. Here are the mutated foci.Position 61721873 doesn't seem to be mutated. Here are the mutated foci.Position 61724946 doesn't seem to be mutated. Here are the mutated foci.Position 61766560 doesn't seem to be mutated. Here are the mutated foci.Position 61771638 doesn't seem to be mutated. Here are the mutated foci.Position 61789916 doesn't seem to be mutated. Here are the mutated foci.Position 61801760 doesn't seem to be mutated. Here are the mutated foci.Position 61848492 doesn't seem to be mutated. Here are the mutated foci.Position 65532217 doesn't seem to be mutated. Here are the mutated foci.Position 65556916 doesn't seem to be mutated. Here are the mutated foci.Position 68531026 doesn't seem to be mutated. Here are the mutated foci.Position 76477721 doesn't seem to be mutated. Here are the mutated foci.Position 76482772 doesn't seem to be mutated. Here are the mutated foci.Position 76482868 doesn't seem to be mutated. Here are the mutated foci.Position 76487197 doesn't seem to be mutated. Here are the mutated foci.Position 76488821 doesn't seem to be mutated. Here are the mutated foci.Position 853123 doesn't seem to be mutated. Here are the mutated foci.Position 1181256 doesn't seem to be mutated. Here are the mutated foci.Position 1190917 doesn't seem to be mutated. Here are the mutated foci.Position 1216087 doesn't seem to be mutated. Here are the mutated foci.Position 1219076 doesn't seem to be mutated. Here are the mutated foci.Position 1227833 doesn't seem to be mutated. Here are the mutated foci.Position 4092737 doesn't seem to be mutated. Here are the mutated foci.Position 4097225 doesn't seem to be mutated. Here are the mutated foci.Position 4105271 doesn't seem to be mutated. Here are the mutated foci.Position 4113951 doesn't seem to be mutated. Here are the mutated foci.Position 4120488 doesn't seem to be mutated. Here are the mutated foci.Position 10959869 doesn't seem to be mutated. Here are the mutated foci.Position 10993652 doesn't seem to be mutated. Here are the mutated foci.Position 11033350 doesn't seem to be mutated. Here are the mutated foci.Position 11035564 doesn't seem to be mutated. Here are the mutated foci.Position 11045932 doesn't seem to be mutated. Here are the mutated foci.Position 11048796 doesn't seem to be mutated. Here are the mutated foci.Position 11057727 doesn't seem to be mutated. Here are the mutated foci.Position 11082100 doesn't seem to be mutated. Here are the mutated foci.Position 33303783 doesn't seem to be mutated. Here are the mutated foci.Position 41867742 doesn't seem to be mutated. Here are the mutated foci.Position 45358758 doesn't seem to be mutated. Here are the mutated foci.Position 45430030 doesn't seem to be mutated. Here are the mutated foci.Position 45442316 doesn't seem to be mutated. Here are the mutated foci.Position 50417604 doesn't seem to be mutated. Here are the mutated foci.Position 32379098 doesn't seem to be mutated. Here are the mutated foci.Position 32380423 doesn't seem to be mutated. Here are the mutated foci.Position 32384854 doesn't seem to be mutated. Here are the mutated foci.Position 32406389 doesn't seem to be mutated. Here are the mutated foci.Position 32409753 doesn't seem to be mutated. Here are the mutated foci.Position 58859629 doesn't seem to be mutated. Here are the mutated foci.Position 58880358 doesn't seem to be mutated. Here are the mutated foci.Position 34862329 doesn't seem to be mutated. Here are the mutated foci.Position 34870956 doesn't seem to be mutated. Here are the mutated foci.Position 34874124 doesn't seem to be mutated. Here are the mutated foci.Position 34882769 doesn't seem to be mutated. Here are the mutated foci.Position 34902100 doesn't seem to be mutated. Here are the mutated foci.Position 34930719 doesn't seem to be mutated. Here are the mutated foci.Position 34937700 doesn't seem to be mutated. Here are the mutated foci.Position 34986116 doesn't seem to be mutated. Here are the mutated foci.Position 35035758 doesn't seem to be mutated. Here are the mutated foci.Position 35152385 doesn't seem to be mutated. Here are the mutated foci.Position 35182560 doesn't seem to be mutated. Here are the mutated foci.Position 35241887 doesn't seem to be mutated. Here are the mutated foci.Position 35359092 doesn't seem to be mutated. Here are the mutated foci.Position 35359962 doesn't seem to be mutated. Here are the mutated foci.Position 35458946 doesn't seem to be mutated. Here are the mutated foci.Position 35535574 doesn't seem to be mutated. Here are the mutated foci.Position 35622485 doesn't seem to be mutated. Here are the mutated foci.Position 35640017 doesn't seem to be mutated. Here are the mutated foci.Position 35826723 doesn't seem to be mutated. Here are the mutated foci.Position 35897783 doesn't seem to be mutated. Here are the mutated foci.Position 35997433 doesn't seem to be mutated. Here are the mutated foci.Position 28704289 doesn't seem to be mutated. Here are the mutated foci.Position 28729410 doesn't seem to be mutated. Here are the mutated foci.Position 29601203 doesn't seem to be mutated. Here are the mutated foci.Position 29611369 doesn't seem to be mutated. Here are the mutated foci.Position 29618300 doesn't seem to be mutated. Here are the mutated foci.Position 29649780 doesn't seem to be mutated. Here are the mutated foci.Position 29680854 doesn't seem to be mutated. Here are the mutated foci.Position 37976239 doesn't seem to be mutated. Here are the mutated foci.Position 41091959 doesn't seem to be mutated. Here are the mutated foci.Position 41116148 doesn't seem to be mutated. Here are the mutated foci.Position 41150147 doesn't seem to be mutated. Here are the mutated foci.Position 41155422 doesn't seem to be mutated. Here are the mutated foci.Position 41160431 doesn't seem to be mutated. Here are the mutated foci.Position 41179534 doesn't seem to be mutated. Here are the mutated foci.Position 41181074 doesn't seem to be mutated. Here are the mutated foci.Position 14840162 doesn't seem to be mutated. Here are the mutated foci.Position 14858398 doesn't seem to be mutated. Here are the mutated foci.Position 14870232 doesn't seem to be mutated. Here are the mutated foci.Position 77528871 doesn't seem to be mutated. Here are the mutated foci.Position 77535018 doesn't seem to be mutated. Here are the mutated foci.Position 77598254 doesn't seem to be mutated. Here are the mutated foci.Position 77613261 doesn't seem to be mutated. Here are the mutated foci.Position 77650751 doesn't seem to be mutated. Here are the mutated foci.Position 77651619 doesn't seem to be mutated. Here are the mutated foci.Position 77658210 doesn't seem to be mutated. Here are the mutated foci.Position 77666859 doesn't seem to be mutated. Here are the mutated foci.Position 77682605 doesn't seem to be mutated. Here are the mutated foci.Position 77702730 doesn't seem to be mutated. Here are the mutated foci.Position 77724382 doesn't seem to be mutated. Here are the mutated foci.Position 77739023 doesn't seem to be mutated. Here are the mutated foci.Position 77740082 doesn't seem to be mutated. Here are the mutated foci.Position 77740082 doesn't seem to be mutated. Here are the mutated foci.Position 77762165 doesn't seem to be mutated. Here are the mutated foci.Position 77762725 doesn't seem to be mutated. Here are the mutated foci.Position 77772468 doesn't seem to be mutated. Here are the mutated foci.Position 133306231 doesn't seem to be mutated. Here are the mutated foci.Position 133337900 doesn't seem to be mutated. Here are the mutated foci.Position 133354569 doesn't seem to be mutated. Here are the mutated foci.Position 133390070 doesn't seem to be mutated. Here are the mutated foci.Position 133413631 doesn't seem to be mutated. Here are the mutated foci.Position 133569897 doesn't seem to be mutated. Here are the mutated foci.Position 133590338 doesn't seem to be mutated. Here are the mutated foci.Position 133590413 doesn't seem to be mutated. Here are the mutated foci.Position 133631918 doesn't seem to be mutated. Here are the mutated foci.Position 133650483 doesn't seem to be mutated. Here are the mutated foci.Position 133682399 doesn't seem to be mutated. Here are the mutated foci.Position 133691499 doesn't seem to be mutated. Here are the mutated foci.Position 133719469 doesn't seem to be mutated. Here are the mutated foci.Position 133772581 doesn't seem to be mutated. Here are the mutated foci.Position 133775227 doesn't seem to be mutated. Here are the mutated foci.Position 133794521 doesn't seem to be mutated. Here are the mutated foci.Position 133803103 doesn't seem to be mutated. Here are the mutated foci.Position 133816220 doesn't seem to be mutated. Here are the mutated foci.Position 133860278 doesn't seem to be mutated. Here are the mutated foci.Position 133969708 doesn't seem to be mutated. Here are the mutated foci.Position 133975436 doesn't seem to be mutated. Here are the mutated foci.Position 147932615 doesn't seem to be mutated. Here are the mutated foci.Position 147939255 doesn't seem to be mutated. Here are the mutated foci.Position 147952182 doesn't seem to be mutated. Here are the mutated foci.Position 156863661 doesn't seem to be mutated. Here are the mutated foci.Position 102570985 doesn't seem to be mutated. Here are the mutated foci.Position 17231405 doesn't seem to be mutated. Here are the mutated foci.Position 43100214 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 43344949 doesn't seem to be mutated. Here are the mutated foci.Position 158580408 doesn't seem to be mutated. Here are the mutated foci.Position 112749105 doesn't seem to be mutated. Here are the mutated foci.Position 140924756 doesn't seem to be mutated. Here are the mutated foci.Position 142748535 doesn't seem to be mutated. Here are the mutated foci.Position 95508745 doesn't seem to be mutated. Here are the mutated foci.Position 99112924 doesn't seem to be mutated. Here are the mutated foci.Position 47219527 doesn't seem to be mutated. Here are the mutated foci.Position 20192686 doesn't seem to be mutated. Here are the mutated foci.Position 31255419 doesn't seem to be mutated. Here are the mutated foci.Position 29844674 doesn't seem to be mutated. Here are the mutated foci.Position 232009421 doesn't seem to be mutated. Here are the mutated foci.Position 177200093 doesn't seem to be mutated. Here are the mutated foci.Position 104760938 doesn't seem to be mutated. Here are the mutated foci.Position 35917801 doesn't seem to be mutated. Here are the mutated foci.Position 35927386 doesn't seem to be mutated. Here are the mutated foci.Position 80869831 doesn't seem to be mutated. Here are the mutated foci.Position 140780316 doesn't seem to be mutated. Here are the mutated foci.Position 142750648 doesn't seem to be mutated. Here are the mutated foci.Position 87917230 doesn't seem to be mutated. Here are the mutated foci.Position 10253033 doesn't seem to be mutated. Here are the mutated foci.Position 69756127 doesn't seem to be mutated. Here are the mutated foci.Position 80741233 doesn't seem to be mutated. Here are the mutated foci.Position 42057715 doesn't seem to be mutated. Here are the mutated foci.Position 42233889 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 116746738 doesn't seem to be mutated. Here are the mutated foci.Position 117793999 doesn't seem to be mutated. Here are the mutated foci.Position 35063527 doesn't seem to be mutated. Here are the mutated foci.Position 35769709 doesn't seem to be mutated. Here are the mutated foci.Position 28723868 doesn't seem to be mutated. Here are the mutated foci.Position 29665247 doesn't seem to be mutated. Here are the mutated foci.Position 133654208 doesn't seem to be mutated. Here are the mutated foci.Position 133855530 doesn't seem to be mutated. Here are the mutated foci.Position 69876416 doesn't seem to be mutated. Here are the mutated foci.Position 122281881 doesn't seem to be mutated. Here are the mutated foci.Position 177207906 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 58236474 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 104780282 doesn't seem to be mutated. Here are the mutated foci.Position 38316194 doesn't seem to be mutated. Here are the mutated foci.Position 66435112 doesn't seem to be mutated. Here are the mutated foci.Position 92830886 doesn't seem to be mutated. Here are the mutated foci.Position 144369634 doesn't seem to be mutated. Here are the mutated foci.Position 56913945 doesn't seem to be mutated. Here are the mutated foci.Position 80692545 doesn't seem to be mutated. Here are the mutated foci.Position 177146081 doesn't seem to be mutated. Here are the mutated foci.Position 58708817 doesn't seem to be mutated. Here are the mutated foci.Position 168975485 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 142749506 doesn't seem to be mutated. Here are the mutated foci.Position 32720079 doesn't seem to be mutated. Here are the mutated foci.Position 114712575 doesn't seem to be mutated. Here are the mutated foci.Position 55146893 doesn't seem to be mutated. Here are the mutated foci.Position 12717479 doesn't seem to be mutated. Here are the mutated foci.Position 38346993 doesn't seem to be mutated. Here are the mutated foci.Position 59098752 doesn't seem to be mutated. Here are the mutated foci.Position 35339204 doesn't seem to be mutated. Here are the mutated foci.Position 35551069 doesn't seem to be mutated. Here are the mutated foci.Position 133415813 doesn't seem to be mutated. Here are the mutated foci.Position 58231668 doesn't seem to be mutated. Here are the mutated foci.Position 177175472 doesn't seem to be mutated. Here are the mutated foci.Position 41988053 doesn't seem to be mutated. Here are the mutated foci.Position 61940394 doesn't seem to be mutated. Here are the mutated foci.Position 232063026 doesn't seem to be mutated. Here are the mutated foci.Position 232259509 doesn't seem to be mutated. Here are the mutated foci.Position 122184543 doesn't seem to be mutated. Here are the mutated foci.Position 54264562 doesn't seem to be mutated. Here are the mutated foci.Position 223610 doesn't seem to be mutated. Here are the mutated foci.Position 1284082 doesn't seem to be mutated. Here are the mutated foci.Position 80666328 doesn't seem to be mutated. Here are the mutated foci.Position 112726941 doesn't seem to be mutated. Here are the mutated foci.Position 140729199 doesn't seem to be mutated. Here are the mutated foci.Position 113548215 doesn't seem to be mutated. Here are the mutated foci.Position 119206286 doesn't seem to be mutated. Here are the mutated foci.Position 50181223 doesn't seem to be mutated. Here are the mutated foci.Position 41865686 doesn't seem to be mutated. Here are the mutated foci.Position 35997916 doesn't seem to be mutated. Here are the mutated foci.Position 133545910 doesn't seem to be mutated. Here are the mutated foci.Position 29590191 doesn't seem to be mutated. Here are the mutated foci.Position 42179384 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 140752922 doesn't seem to be mutated. Here are the mutated foci.Position 31176306 doesn't seem to be mutated. Here are the mutated foci.Position 35084547 doesn't seem to be mutated. Here are the mutated foci.Position 41749743 doesn't seem to be mutated. Here are the mutated foci.Position 29673487 doesn't seem to be mutated. Here are the mutated foci.Position 142757385 doesn't seem to be mutated. Here are the mutated foci.Position 80680674 doesn't seem to be mutated. Here are the mutated foci.Position 112805123 doesn't seem to be mutated. Here are the mutated foci.Position 2190807 doesn't seem to be mutated. Here are the mutated foci.Position 62095102 doesn't seem to be mutated. Here are the mutated foci.Position 51061188 doesn't seem to be mutated. Here are the mutated foci.Position 35525646 doesn't seem to be mutated. Here are the mutated foci.Position 133534736 doesn't seem to be mutated. Here are the mutated foci.Position 47460843 doesn't seem to be mutated. Here are the mutated foci.Position 69908423 doesn't seem to be mutated. Here are the mutated foci.Position 55154129 doesn't seem to be mutated. Here are the mutated foci.Position 148884052 doesn't seem to be mutated. Here are the mutated foci.Position 38458550 doesn't seem to be mutated. Here are the mutated foci.Position 118068919 doesn't seem to be mutated. Here are the mutated foci.Position 36938176 doesn't seem to be mutated. Here are the mutated foci.Position 95419940 doesn't seem to be mutated. Here are the mutated foci.Position 3831960 doesn't seem to be mutated. Here are the mutated foci.Position 50743927 doesn't seem to be mutated. Here are the mutated foci.Position 7675208 doesn't seem to be mutated. Here are the mutated foci.Position 7676088 doesn't seem to be mutated. Here are the mutated foci.Position 43085359 doesn't seem to be mutated. Here are the mutated foci.Position 58728989 doesn't seem to be mutated. Here are the mutated foci.Position 10992606 doesn't seem to be mutated. Here are the mutated foci.Position 35063530 doesn't seem to be mutated. Here are the mutated foci.Position 35554793 doesn't seem to be mutated. Here are the mutated foci.Position 20997883 doesn't seem to be mutated. Here are the mutated foci.Position 41122620 doesn't seem to be mutated. Here are the mutated foci.Position 133816681 doesn't seem to be mutated. Here are the mutated foci.Position 147940475 doesn't seem to be mutated. Here are the mutated foci.Position 96277619 doesn't seem to be mutated. Here are the mutated foci.Position 140847266 doesn't seem to be mutated. Here are the mutated foci.Position 102575850 doesn't seem to be mutated. Here are the mutated foci.Position 35113271 doesn't seem to be mutated. Here are the mutated foci.Position 44067862 doesn't seem to be mutated. Here are the mutated foci.Position 23695907 doesn't seem to be mutated. Here are the mutated foci.Position 45014576 doesn't seem to be mutated. Here are the mutated foci.Position 114716176 doesn't seem to be mutated. Here are the mutated foci.Position 47373571 doesn't seem to be mutated. Here are the mutated foci.Position 10152742 doesn't seem to be mutated. Here are the mutated foci.Position 48588788 doesn't seem to be mutated. Here are the mutated foci.Position 48590354 doesn't seem to be mutated. Here are the mutated foci.Position 1804969 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 56928418 doesn't seem to be mutated. Here are the mutated foci.Position 112726045 doesn't seem to be mutated. Here are the mutated foci.Position 138852005 doesn't seem to be mutated. Here are the mutated foci.Position 177515371 doesn't seem to be mutated. Here are the mutated foci.Position 96134794 doesn't seem to be mutated. Here are the mutated foci.Position 140753338 doesn't seem to be mutated. Here are the mutated foci.Position 140915997 doesn't seem to be mutated. Here are the mutated foci.Position 19376388 doesn't seem to be mutated. Here are the mutated foci.Position 19378514 doesn't seem to be mutated. Here are the mutated foci.Position 57749318 doesn't seem to be mutated. Here are the mutated foci.Position 57750764 doesn't seem to be mutated. Here are the mutated foci.Position 57751342 doesn't seem to be mutated. Here are the mutated foci.Position 111447218 doesn't seem to be mutated. Here are the mutated foci.Position 111447543 doesn't seem to be mutated. Here are the mutated foci.Position 111447826 doesn't seem to be mutated. Here are the mutated foci.Position 132672837 doesn't seem to be mutated. Here are the mutated foci.Position 48328363 doesn't seem to be mutated. Here are the mutated foci.Position 95105784 doesn't seem to be mutated. Here are the mutated foci.Position 104773380 doesn't seem to be mutated. Here are the mutated foci.Position 104775208 doesn't seem to be mutated. Here are the mutated foci.Position 104792723 doesn't seem to be mutated. Here are the mutated foci.Position 2056768 doesn't seem to be mutated. Here are the mutated foci.Position 3724114 doesn't seem to be mutated. Here are the mutated foci.Position 68808563 doesn't seem to be mutated. Here are the mutated foci.Position 68811858 doesn't seem to be mutated. Here are the mutated foci.Position 7675237 doesn't seem to be mutated. Here are the mutated foci.Position 42322490 doesn't seem to be mutated. Here are the mutated foci.Position 42333766 doesn't seem to be mutated. Here are the mutated foci.Position 42337587 doesn't seem to be mutated. Here are the mutated foci.Position 44074769 doesn't seem to be mutated. Here are the mutated foci.Position 59064924 doesn't seem to be mutated. Here are the mutated foci.Position 68530001 doesn't seem to be mutated. Here are the mutated foci.Position 76479010 doesn't seem to be mutated. Here are the mutated foci.Position 76479277 doesn't seem to be mutated. Here are the mutated foci.Position 1219413 doesn't seem to be mutated. Here are the mutated foci.Position 10961199 doesn't seem to be mutated. Here are the mutated foci.Position 45357372 doesn't seem to be mutated. Here are the mutated foci.Position 58903586 doesn't seem to be mutated. Here are the mutated foci.Position 58909424 doesn't seem to be mutated. Here are the mutated foci.Position 58909803 doesn't seem to be mutated. Here are the mutated foci.Position 58910081 doesn't seem to be mutated. Here are the mutated foci.Position 58910401 doesn't seem to be mutated. Here are the mutated foci.Position 20996797 doesn't seem to be mutated. Here are the mutated foci.Position 23818416 doesn't seem to be mutated. Here are the mutated foci.Position 48683985 doesn't seem to be mutated. Here are the mutated foci.Position 133303068 doesn't seem to be mutated. Here are the mutated foci.Position 133827942 doesn't seem to be mutated. Here are the mutated foci.Position 133937569 doesn't seem to be mutated. Here are the mutated foci.Position 133974579 doesn't seem to be mutated. Here are the mutated foci.Position 39108895 doesn't seem to be mutated. Here are the mutated foci.Position 47809064 doesn't seem to be mutated. Here are the mutated foci.Position 69789914 doesn't seem to be mutated. Here are the mutated foci.Position 110925187 doesn't seem to be mutated. Here are the mutated foci.Position 66396462 doesn't seem to be mutated. Here are the mutated foci.Position 35268842 doesn't seem to be mutated. Here are the mutated foci.Position 41997598 doesn't seem to be mutated. Here are the mutated foci.Position 2103667 doesn't seem to be mutated. Here are the mutated foci.Position 112427268 doesn't seem to be mutated. Here are the mutated foci.Position 39045232 doesn't seem to be mutated. Here are the mutated foci.Position 232270922 doesn't seem to be mutated. Here are the mutated foci.Position 122211667 doesn't seem to be mutated. Here are the mutated foci.Position 56905316 doesn't seem to be mutated. Here are the mutated foci.Position 78048570 doesn't seem to be mutated. Here are the mutated foci.Position 86775665 doesn't seem to be mutated. Here are the mutated foci.Position 29616935 doesn't seem to be mutated. Here are the mutated foci.Position 77597484 doesn't seem to be mutated. Here are the mutated foci.Position 133313378 doesn't seem to be mutated. Here are the mutated foci.Position 133415970 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 10219110 doesn't seem to be mutated. Here are the mutated foci.Position 80819091 doesn't seem to be mutated. Here are the mutated foci.Position 142756460 doesn't seem to be mutated. Here are the mutated foci.Position 121548884 doesn't seem to be mutated. Here are the mutated foci.Position 89775089 doesn't seem to be mutated. Here are the mutated foci.Position 43073749 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 121545399 doesn't seem to be mutated. Here are the mutated foci.Position 32720079 doesn't seem to be mutated. Here are the mutated foci.Position 17222037 doesn't seem to be mutated. Here are the mutated foci.Position 58858787 doesn't seem to be mutated. Here are the mutated foci.Position 909593 doesn't seem to be mutated. Here are the mutated foci.Position 112824674 doesn't seem to be mutated. Here are the mutated foci.Position 118013202 doesn't seem to be mutated. Here are the mutated foci.Position 77760260 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 168919625 doesn't seem to be mutated. Here are the mutated foci.Position 124828701 doesn't seem to be mutated. Here are the mutated foci.Position 95179970 doesn't seem to be mutated. Here are the mutated foci.Position 95323276 doesn't seem to be mutated. Here are the mutated foci.Position 86784888 doesn't seem to be mutated. Here are the mutated foci.Position 112461781 doesn't seem to be mutated. Here are the mutated foci.Position 32720079 doesn't seem to be mutated. Here are the mutated foci.Position 66420809 doesn't seem to be mutated. Here are the mutated foci.Position 35056493 doesn't seem to be mutated. Here are the mutated foci.Position 35806076 doesn't seem to be mutated. Here are the mutated foci.Position 77617035 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 96254640 doesn't seem to be mutated. Here are the mutated foci.Position 177132805 doesn't seem to be mutated. Here are the mutated foci.Position 95496550 doesn't seem to be mutated. Here are the mutated foci.Position 61903299 doesn't seem to be mutated. Here are the mutated foci.Position 43073749 doesn't seem to be mutated. Here are the mutated foci.Position 58990772 doesn't seem to be mutated. Here are the mutated foci.Position 155238014 doesn't seem to be mutated. Here are the mutated foci.Position 140787357 doesn't seem to be mutated. Here are the mutated foci.Position 61996886 doesn't seem to be mutated. Here are the mutated foci.Position 102542442 doesn't seem to be mutated. Here are the mutated foci.Position 3820827 doesn't seem to be mutated. Here are the mutated foci.Position 41109757 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.Position 193140647 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 29700945 doesn't seem to be mutated. Here are the mutated foci.Position 50304533 doesn't seem to be mutated. Here are the mutated foci.Position 55037457 doesn't seem to be mutated. Here are the mutated foci.Position 148866706 doesn't seem to be mutated. Here are the mutated foci.Position 2078789 doesn't seem to be mutated. Here are the mutated foci.Position 36929297 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 43119368 doesn't seem to be mutated. Here are the mutated foci.Position 86928861 doesn't seem to be mutated. Here are the mutated foci.Position 35097500 doesn't seem to be mutated. Here are the mutated foci.Position 10207283 doesn't seem to be mutated. Here are the mutated foci.Position 29252831 doesn't seem to be mutated. Here are the mutated foci.Position 140855554 doesn't seem to be mutated. Here are the mutated foci.Position 117999961 doesn't seem to be mutated. Here are the mutated foci.Position 87872090 doesn't seem to be mutated. Here are the mutated foci.Position 11777454 doesn't seem to be mutated. Here are the mutated foci.Position 14861852 doesn't seem to be mutated. Here are the mutated foci.Position 77699093 doesn't seem to be mutated. Here are the mutated foci.Position 133863603 doesn't seem to be mutated. Here are the mutated foci.Position 241500775 doesn't seem to be mutated. Here are the mutated foci.Position 29651369 doesn't seem to be mutated. Here are the mutated foci.Position 177184711 doesn't seem to be mutated. Here are the mutated foci.Position 117814234 doesn't seem to be mutated. Here are the mutated foci.Position 36837267 doesn't seem to be mutated. Here are the mutated foci.Position 89003707 doesn't seem to be mutated. Here are the mutated foci.Position 58994211 doesn't seem to be mutated. Here are the mutated foci.Position 77532275 doesn't seem to be mutated. Here are the mutated foci.Position 77622667 doesn't seem to be mutated. Here are the mutated foci.Position 154762235 doesn't seem to be mutated. Here are the mutated foci.Position 47353180 doesn't seem to be mutated. Here are the mutated foci.Position 47365618 doesn't seem to be mutated. Here are the mutated foci.Position 47367425 doesn't seem to be mutated. Here are the mutated foci.Position 69762717 doesn't seem to be mutated. Here are the mutated foci.Position 69833207 doesn't seem to be mutated. Here are the mutated foci.Position 124855680 doesn't seem to be mutated. Here are the mutated foci.Position 102638046 doesn't seem to be mutated. Here are the mutated foci.Position 40160186 doesn't seem to be mutated. Here are the mutated foci.Position 50396902 doesn't seem to be mutated. Here are the mutated foci.Position 41089906 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 35465255 doesn't seem to be mutated. Here are the mutated foci.Position 39197783 doesn't seem to be mutated. Here are the mutated foci.Position 35194089 doesn't seem to be mutated. Here are the mutated foci.Position 54672305 doesn't seem to be mutated. Here are the mutated foci.Position 80797957 doesn't seem to be mutated. Here are the mutated foci.Position 132578547 doesn't seem to be mutated. Here are the mutated foci.Position 432910 doesn't seem to be mutated. Here are the mutated foci.Position 43108031 doesn't seem to be mutated. Here are the mutated foci.Position 86784888 doesn't seem to be mutated. Here are the mutated foci.Position 11647914 doesn't seem to be mutated. Here are the mutated foci.Position 1186642 doesn't seem to be mutated. Here are the mutated foci.Position 35704575 doesn't seem to be mutated. Here are the mutated foci.Position 133906974 doesn't seem to be mutated. Here are the mutated foci.Position 147939254 doesn't seem to be mutated. Here are the mutated foci.Position 47791854 doesn't seem to be mutated. Here are the mutated foci.Position 127279760 doesn't seem to be mutated. Here are the mutated foci.Position 80797956 doesn't seem to be mutated. Here are the mutated foci.Position 132649174 doesn't seem to be mutated. Here are the mutated foci.Position 177207924 doesn't seem to be mutated. Here are the mutated foci.Position 87913773 doesn't seem to be mutated. Here are the mutated foci.Position 48371669 doesn't seem to be mutated. Here are the mutated foci.Position 35500638 doesn't seem to be mutated. Here are the mutated foci.Position 77772643 doesn't seem to be mutated. Here are the mutated foci.Position 133347249 doesn't seem to be mutated. Here are the mutated foci.Position 10290064 doesn't seem to be mutated. Here are the mutated foci.Position 17031358 doesn't seem to be mutated. Here are the mutated foci.Position 29220829 doesn't seem to be mutated. Here are the mutated foci.Position 69890983 doesn't seem to be mutated. Here are the mutated foci.Position 56928418 doesn't seem to be mutated. Here are the mutated foci.Position 95505901 doesn't seem to be mutated. Here are the mutated foci.Position 102526445 doesn't seem to be mutated. Here are the mutated foci.Position 32328876 doesn't seem to be mutated. Here are the mutated foci.Position 48427171 doesn't seem to be mutated. Here are the mutated foci.Position 32380197 doesn't seem to be mutated. Here are the mutated foci.Position 41145801 doesn't seem to be mutated. Here are the mutated foci.Position 58175425 doesn't seem to be mutated. Here are the mutated foci.Position 177242086 doesn't seem to be mutated. Here are the mutated foci.Position 55016123 doesn't seem to be mutated. Here are the mutated foci.Position 142756348 doesn't seem to be mutated. Here are the mutated foci.Position 95234673 doesn't seem to be mutated. Here are the mutated foci.Position 102572888 doesn't seem to be mutated. Here are the mutated foci.Position 44154956 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 112508414 doesn't seem to be mutated. Here are the mutated foci.Position 14861852 doesn't seem to be mutated. Here are the mutated foci.Position 133299938 doesn't seem to be mutated. Here are the mutated foci.Position 231387256 doesn't seem to be mutated. Here are the mutated foci.Position 29517104 doesn't seem to be mutated. Here are the mutated foci.Position 111433352 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 35232475 doesn't seem to be mutated. Here are the mutated foci.Position 193192934 doesn't seem to be mutated. Here are the mutated foci.Position 169030812 doesn't seem to be mutated. Here are the mutated foci.Position 69857352 doesn't seem to be mutated. Here are the mutated foci.Position 117883117 doesn't seem to be mutated. Here are the mutated foci.Position 2022454 doesn't seem to be mutated. Here are the mutated foci.Position 25250549 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 58855378 doesn't seem to be mutated. Here are the mutated foci.Position 29655640 doesn't seem to be mutated. Here are the mutated foci.Position 147918162 doesn't seem to be mutated. Here are the mutated foci.Position 42002056 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 108236975 doesn't seem to be mutated. Here are the mutated foci.Position 34862116 doesn't seem to be mutated. Here are the mutated foci.Position 10309244 doesn't seem to be mutated. Here are the mutated foci.Position 10373514 doesn't seem to be mutated. Here are the mutated foci.Position 144374206 doesn't seem to be mutated. Here are the mutated foci.Position 232047880 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 50373062 doesn't seem to be mutated. Here are the mutated foci.Position 116725466 doesn't seem to be mutated. Here are the mutated foci.Position 140844920 doesn't seem to be mutated. Here are the mutated foci.Position 282417 doesn't seem to be mutated. Here are the mutated foci.Position 108295147 doesn't seem to be mutated. Here are the mutated foci.Position 20182932 doesn't seem to be mutated. Here are the mutated foci.Position 48313370 doesn't seem to be mutated. Here are the mutated foci.Position 40707054 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 35897341 doesn't seem to be mutated. Here are the mutated foci.Position 35963689 doesn't seem to be mutated. Here are the mutated foci.Position 133751309 doesn't seem to be mutated. Here are the mutated foci.Position 133892183 doesn't seem to be mutated. Here are the mutated foci.Position 133892216 doesn't seem to be mutated. Here are the mutated foci.Position 44818864 doesn't seem to be mutated. Here are the mutated foci.Position 161310206 doesn't seem to be mutated. Here are the mutated foci.Position 29661707 doesn't seem to be mutated. Here are the mutated foci.Position 10022698 doesn't seem to be mutated. Here are the mutated foci.Position 54733154 doesn't seem to be mutated. Here are the mutated foci.Position 117999935 doesn't seem to be mutated. Here are the mutated foci.Position 36914180 doesn't seem to be mutated. Here are the mutated foci.Position 121553808 doesn't seem to be mutated. Here are the mutated foci.Position 25245351 doesn't seem to be mutated. Here are the mutated foci.Position 50118288 doesn't seem to be mutated. Here are the mutated foci.Position 31248079 doesn't seem to be mutated. Here are the mutated foci.Position 31342855 doesn't seem to be mutated. Here are the mutated foci.Position 65523736 doesn't seem to be mutated. Here are the mutated foci.Position 34918044 doesn't seem to be mutated. Here are the mutated foci.Position 34930271 doesn't seem to be mutated. Here are the mutated foci.Position 35290196 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 20192686 doesn't seem to be mutated. Here are the mutated foci.Position 35946176 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 80688758 doesn't seem to be mutated. Here are the mutated foci.Position 11786013 doesn't seem to be mutated. Here are the mutated foci.Position 95335069 doesn't seem to be mutated. Here are the mutated foci.Position 156863661 doesn't seem to be mutated. Here are the mutated foci.Position 232024751 doesn't seem to be mutated. Here are the mutated foci.Position 37837588 doesn't seem to be mutated. Here are the mutated foci.Position 55115072 doesn't seem to be mutated. Here are the mutated foci.Position 93100656 doesn't seem to be mutated. Here are the mutated foci.Position 86867461 doesn't seem to be mutated. Here are the mutated foci.Position 3771819 doesn't seem to be mutated. Here are the mutated foci.Position 76488218 doesn't seem to be mutated. Here are the mutated foci.Position 41148282 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 177138194 doesn't seem to be mutated. Here are the mutated foci.Position 42237977 doesn't seem to be mutated. Here are the mutated foci.Position 62090411 doesn't seem to be mutated. Here are the mutated foci.Position 87912846 doesn't seem to be mutated. Here are the mutated foci.Position 50121174 doesn't seem to be mutated. Here are the mutated foci.Position 133624855 doesn't seem to be mutated. Here are the mutated foci.Position 232153608 doesn't seem to be mutated. Here are the mutated foci.Position 14168716 doesn't seem to be mutated. Here are the mutated foci.Position 95370484 doesn't seem to be mutated. Here are the mutated foci.Position 133934692 doesn't seem to be mutated. Here are the mutated foci.Position 12602526 doesn't seem to be mutated. Here are the mutated foci.Position 80778201 doesn't seem to be mutated. Here are the mutated foci.Position 42062713 doesn't seem to be mutated. Here are the mutated foci.Position 89977054 doesn't seem to be mutated. Here are the mutated foci.Position 117860998 doesn't seem to be mutated. Here are the mutated foci.Position 58703796 doesn't seem to be mutated. Here are the mutated foci.Position 35060608 doesn't seem to be mutated. Here are the mutated foci.Position 10341952 doesn't seem to be mutated. Here are the mutated foci.Position 29388780 doesn't seem to be mutated. Here are the mutated foci.Position 47608987 doesn't seem to be mutated. Here are the mutated foci.Position 255239 doesn't seem to be mutated. Here are the mutated foci.Position 80756384 doesn't seem to be mutated. Here are the mutated foci.Position 132558007 doesn't seem to be mutated. Here are the mutated foci.Position 177267479 doesn't seem to be mutated. Here are the mutated foci.Position 50393738 doesn't seem to be mutated. Here are the mutated foci.Position 55195753 doesn't seem to be mutated. Here are the mutated foci.Position 148866686 doesn't seem to be mutated. Here are the mutated foci.Position 38414629 doesn't seem to be mutated. Here are the mutated foci.Position 230174 doesn't seem to be mutated. Here are the mutated foci.Position 19376388 doesn't seem to be mutated. Here are the mutated foci.Position 78033977 doesn't seem to be mutated. Here are the mutated foci.Position 87956569 doesn't seem to be mutated. Here are the mutated foci.Position 64816154 doesn't seem to be mutated. Here are the mutated foci.Position 67481615 doesn't seem to be mutated. Here are the mutated foci.Position 11878825 doesn't seem to be mutated. Here are the mutated foci.Position 48552720 doesn't seem to be mutated. Here are the mutated foci.Position 3722924 doesn't seem to be mutated. Here are the mutated foci.Position 59101721 doesn't seem to be mutated. Here are the mutated foci.Position 58910081 doesn't seem to be mutated. Here are the mutated foci.Position 58910401 doesn't seem to be mutated. Here are the mutated foci.Position 35181114 doesn't seem to be mutated. Here are the mutated foci.Position 35311317 doesn't seem to be mutated. Here are the mutated foci.Position 35397777 doesn't seem to be mutated. Here are the mutated foci.Position 35545628 doesn't seem to be mutated. Here are the mutated foci.Position 35578256 doesn't seem to be mutated. Here are the mutated foci.Position 35898845 doesn't seem to be mutated. Here are the mutated foci.Position 41165610 doesn't seem to be mutated. Here are the mutated foci.Position 77523340 doesn't seem to be mutated. Here are the mutated foci.Position 29293097 doesn't seem to be mutated. Here are the mutated foci.Position 58201255 doesn't seem to be mutated. Here are the mutated foci.Position 232089310 doesn't seem to be mutated. Here are the mutated foci.Position 122219384 doesn't seem to be mutated. Here are the mutated foci.Position 132565783 doesn't seem to be mutated. Here are the mutated foci.Position 138728736 doesn't seem to be mutated. Here are the mutated foci.Position 104798692 doesn't seem to be mutated. Here are the mutated foci.Position 42082951 doesn't seem to be mutated. Here are the mutated foci.Position 42105883 doesn't seem to be mutated. Here are the mutated foci.Position 96158069 doesn't seem to be mutated. Here are the mutated foci.Position 2107326 doesn't seem to be mutated. Here are the mutated foci.Position 95463119 doesn't seem to be mutated. Here are the mutated foci.Position 95463502 doesn't seem to be mutated. Here are the mutated foci.Position 113546958 doesn't seem to be mutated. Here are the mutated foci.Position 121520163 doesn't seem to be mutated. Here are the mutated foci.Position 44239684 doesn't seem to be mutated. Here are the mutated foci.Position 40697382 doesn't seem to be mutated. Here are the mutated foci.Position 2057761 doesn't seem to be mutated. Here are the mutated foci.Position 3733084 doesn't seem to be mutated. Here are the mutated foci.Position 68814547 doesn't seem to be mutated. Here are the mutated foci.Position 14843392 doesn't seem to be mutated. Here are the mutated foci.Position 77686613 doesn't seem to be mutated. Here are the mutated foci.Position 133361874 doesn't seem to be mutated. Here are the mutated foci.Position 133394277 doesn't seem to be mutated. Here are the mutated foci.Position 133741075 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 11686537 doesn't seem to be mutated. Here are the mutated foci.Position 61749577 doesn't seem to be mutated. Here are the mutated foci.Position 69902851 doesn't seem to be mutated. Here are the mutated foci.Position 116748195 doesn't seem to be mutated. Here are the mutated foci.Position 40216569 doesn't seem to be mutated. Here are the mutated foci.Position 3745389 doesn't seem to be mutated. Here are the mutated foci.Position 7674220 doesn't seem to be mutated. Here are the mutated foci.Position 31091748 doesn't seem to be mutated. Here are the mutated foci.Position 124346163 doesn't seem to be mutated. Here are the mutated foci.Position 47440821 doesn't seem to be mutated. Here are the mutated foci.Position 112790902 doesn't seem to be mutated. Here are the mutated foci.Position 55068770 doesn't seem to be mutated. Here are the mutated foci.Position 113579255 doesn't seem to be mutated. Here are the mutated foci.Position 65078029 doesn't seem to be mutated. Here are the mutated foci.Position 61765355 doesn't seem to be mutated. Here are the mutated foci.Position 35661500 doesn't seem to be mutated. Here are the mutated foci.Position 133665030 doesn't seem to be mutated. Here are the mutated foci.Position 31065143 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 32395762 doesn't seem to be mutated. Here are the mutated foci.Position 31183290 doesn't seem to be mutated. Here are the mutated foci.Position 34847917 doesn't seem to be mutated. Here are the mutated foci.Position 29209798 doesn't seem to be mutated. Here are the mutated foci.Position 29820904 doesn't seem to be mutated. Here are the mutated foci.Position 29866009 doesn't seem to be mutated. Here are the mutated foci.Position 127258287 doesn't seem to be mutated. Here are the mutated foci.Position 144519241 doesn't seem to be mutated. Here are the mutated foci.Position 232008433 doesn't seem to be mutated. Here are the mutated foci.Position 232173883 doesn't seem to be mutated. Here are the mutated foci.Position 232259269 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 177247550 doesn't seem to be mutated. Here are the mutated foci.Position 41955970 doesn't seem to be mutated. Here are the mutated foci.Position 50367316 doesn't seem to be mutated. Here are the mutated foci.Position 50387011 doesn't seem to be mutated. Here are the mutated foci.Position 116761340 doesn't seem to be mutated. Here are the mutated foci.Position 95298407 doesn't seem to be mutated. Here are the mutated foci.Position 86843545 doesn't seem to be mutated. Here are the mutated foci.Position 121503017 doesn't seem to be mutated. Here are the mutated foci.Position 531939 doesn't seem to be mutated. Here are the mutated foci.Position 108329856 doesn't seem to be mutated. Here are the mutated foci.Position 112094806 doesn't seem to be mutated. Here are the mutated foci.Position 77906888 doesn't seem to be mutated. Here are the mutated foci.Position 77921066 doesn't seem to be mutated. Here are the mutated foci.Position 40193033 doesn't seem to be mutated. Here are the mutated foci.Position 66484413 doesn't seem to be mutated. Here are the mutated foci.Position 80163827 doesn't seem to be mutated. Here are the mutated foci.Position 90789567 doesn't seem to be mutated. Here are the mutated foci.Position 3775948 doesn't seem to be mutated. Here are the mutated foci.Position 3831954 doesn't seem to be mutated. Here are the mutated foci.Position 50776633 doesn't seem to be mutated. Here are the mutated foci.Position 61821163 doesn't seem to be mutated. Here are the mutated foci.Position 45411012 doesn't seem to be mutated. Here are the mutated foci.Position 35004828 doesn't seem to be mutated. Here are the mutated foci.Position 35680465 doesn't seem to be mutated. Here are the mutated foci.Position 77644733 doesn't seem to be mutated. Here are the mutated foci.Position 133797928 doesn't seem to be mutated. Here are the mutated foci.Position 133889630 doesn't seem to be mutated. Here are the mutated foci.Position 133986727 doesn't seem to be mutated. Here are the mutated foci.Position 10263281 doesn't seem to be mutated. Here are the mutated foci.Position 155242792 doesn't seem to be mutated. Here are the mutated foci.Position 193247383 doesn't seem to be mutated. Here are the mutated foci.Position 29784088 doesn't seem to be mutated. Here are the mutated foci.Position 47353180 doesn't seem to be mutated. Here are the mutated foci.Position 232192427 doesn't seem to be mutated. Here are the mutated foci.Position 56905231 doesn't seem to be mutated. Here are the mutated foci.Position 56953558 doesn't seem to be mutated. Here are the mutated foci.Position 66982896 doesn't seem to be mutated. Here are the mutated foci.Position 118029169 doesn't seem to be mutated. Here are the mutated foci.Position 36860578 doesn't seem to be mutated. Here are the mutated foci.Position 95458028 doesn't seem to be mutated. Here are the mutated foci.Position 99106700 doesn't seem to be mutated. Here are the mutated foci.Position 62060647 doesn't seem to be mutated. Here are the mutated foci.Position 86806731 doesn't seem to be mutated. Here are the mutated foci.Position 110940931 doesn't seem to be mutated. Here are the mutated foci.Position 121571944 doesn't seem to be mutated. Here are the mutated foci.Position 108332084 doesn't seem to be mutated. Here are the mutated foci.Position 32367272 doesn't seem to be mutated. Here are the mutated foci.Position 50204904 doesn't seem to be mutated. Here are the mutated foci.Position 65078029 doesn't seem to be mutated. Here are the mutated foci.Position 3834316 doesn't seem to be mutated. Here are the mutated foci.Position 40642349 doesn't seem to be mutated. Here are the mutated foci.Position 58694480 doesn't seem to be mutated. Here are the mutated foci.Position 77689557 doesn't seem to be mutated. Here are the mutated foci.Position 12636496 doesn't seem to be mutated. Here are the mutated foci.Position 116720961 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 117826806 doesn't seem to be mutated. Here are the mutated foci.Position 2050526 doesn't seem to be mutated. Here are the mutated foci.Position 108896879 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 32328876 doesn't seem to be mutated. Here are the mutated foci.Position 7684680 doesn't seem to be mutated. Here are the mutated foci.Position 7697180 doesn't seem to be mutated. Here are the mutated foci.Position 147916846 doesn't seem to be mutated. Here are the mutated foci.Position 154758122 doesn't seem to be mutated. Here are the mutated foci.Position 96315969 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 95508611 doesn't seem to be mutated. Here are the mutated foci.Position 40708780 doesn't seem to be mutated. Here are the mutated foci.Position 59019476 doesn't seem to be mutated. Here are the mutated foci.Position 35182783 doesn't seem to be mutated. Here are the mutated foci.Position 232086614 doesn't seem to be mutated. Here are the mutated foci.Position 140732909 doesn't seem to be mutated. Here are the mutated foci.Position 140735116 doesn't seem to be mutated. Here are the mutated foci.Position 140737918 doesn't seem to be mutated. Here are the mutated foci.Position 148864865 doesn't seem to be mutated. Here are the mutated foci.Position 249869 doesn't seem to be mutated. Here are the mutated foci.Position 282417 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 42380618 doesn't seem to be mutated. Here are the mutated foci.Position 29606653 doesn't seem to be mutated. Here are the mutated foci.Position 138901833 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 2065444 doesn't seem to be mutated. Here are the mutated foci.Position 2158653 doesn't seem to be mutated. Here are the mutated foci.Position 11734516 doesn't seem to be mutated. Here are the mutated foci.Position 77644719 doesn't seem to be mutated. Here are the mutated foci.Position 23690571 doesn't seem to be mutated. Here are the mutated foci.Position 29459325 doesn't seem to be mutated. Here are the mutated foci.Position 29604434 doesn't seem to be mutated. Here are the mutated foci.Position 29618936 doesn't seem to be mutated. Here are the mutated foci.Position 29661182 doesn't seem to be mutated. Here are the mutated foci.Position 144435925 doesn't seem to be mutated. Here are the mutated foci.Position 168962432 doesn't seem to be mutated. Here are the mutated foci.Position 214813345 doesn't seem to be mutated. Here are the mutated foci.Position 12626433 doesn't seem to be mutated. Here are the mutated foci.Position 179197037 doesn't seem to be mutated. Here are the mutated foci.Position 80830593 doesn't seem to be mutated. Here are the mutated foci.Position 138836402 doesn't seem to be mutated. Here are the mutated foci.Position 104816693 doesn't seem to be mutated. Here are the mutated foci.Position 104840294 doesn't seem to be mutated. Here are the mutated foci.Position 42155558 doesn't seem to be mutated. Here are the mutated foci.Position 42178035 doesn't seem to be mutated. Here are the mutated foci.Position 50301870 doesn't seem to be mutated. Here are the mutated foci.Position 50393242 doesn't seem to be mutated. Here are the mutated foci.Position 55151524 doesn't seem to be mutated. Here are the mutated foci.Position 93132092 doesn't seem to be mutated. Here are the mutated foci.Position 96197115 doesn't seem to be mutated. Here are the mutated foci.Position 96250534 doesn't seem to be mutated. Here are the mutated foci.Position 116684150 doesn't seem to be mutated. Here are the mutated foci.Position 124855556 doesn't seem to be mutated. Here are the mutated foci.Position 148882498 doesn't seem to be mutated. Here are the mutated foci.Position 117833244 doesn't seem to be mutated. Here are the mutated foci.Position 118103561 doesn't seem to be mutated. Here are the mutated foci.Position 266433 doesn't seem to be mutated. Here are the mutated foci.Position 292641 doesn't seem to be mutated. Here are the mutated foci.Position 311983 doesn't seem to be mutated. Here are the mutated foci.Position 2084843 doesn't seem to be mutated. Here are the mutated foci.Position 2087542 doesn't seem to be mutated. Here are the mutated foci.Position 132892390 doesn't seem to be mutated. Here are the mutated foci.Position 132904836 doesn't seem to be mutated. Here are the mutated foci.Position 43092805 doesn't seem to be mutated. Here are the mutated foci.Position 61918862 doesn't seem to be mutated. Here are the mutated foci.Position 87952260 doesn't seem to be mutated. Here are the mutated foci.Position 87957852 doesn't seem to be mutated. Here are the mutated foci.Position 102522671 doesn't seem to be mutated. Here are the mutated foci.Position 121556073 doesn't seem to be mutated. Here are the mutated foci.Position 22618124 doesn't seem to be mutated. Here are the mutated foci.Position 61440110 doesn't seem to be mutated. Here are the mutated foci.Position 111410727 doesn't seem to be mutated. Here are the mutated foci.Position 48474062 doesn't seem to be mutated. Here are the mutated foci.Position 45160490 doesn't seem to be mutated. Here are the mutated foci.Position 50121756 doesn't seem to be mutated. Here are the mutated foci.Position 89258290 doesn't seem to be mutated. Here are the mutated foci.Position 68793430 doesn't seem to be mutated. Here are the mutated foci.Position 7668991 doesn't seem to be mutated. Here are the mutated foci.Position 7674083 doesn't seem to be mutated. Here are the mutated foci.Position 43100677 doesn't seem to be mutated. Here are the mutated foci.Position 11033300 doesn't seem to be mutated. Here are the mutated foci.Position 35447991 doesn't seem to be mutated. Here are the mutated foci.Position 35619806 doesn't seem to be mutated. Here are the mutated foci.Position 35698747 doesn't seem to be mutated. Here are the mutated foci.Position 133612208 doesn't seem to be mutated. Here are the mutated foci.Position 168950242 doesn't seem to be mutated. Here are the mutated foci.Position 54745077 doesn't seem to be mutated. Here are the mutated foci.Position 2006949 doesn't seem to be mutated. Here are the mutated foci.Position 21971154 doesn't seem to be mutated. Here are the mutated foci.Position 113583808 doesn't seem to be mutated. Here are the mutated foci.Position 40218555 doesn't seem to be mutated. Here are the mutated foci.Position 37978153 doesn't seem to be mutated. Here are the mutated foci.Position 147921462 doesn't seem to be mutated. Here are the mutated foci.Position 10284168 doesn't seem to be mutated. Here are the mutated foci.Position 193176170 doesn't seem to be mutated. Here are the mutated foci.Position 39101615 doesn't seem to be mutated. Here are the mutated foci.Position 58198029 doesn't seem to be mutated. Here are the mutated foci.Position 144460620 doesn't seem to be mutated. Here are the mutated foci.Position 96324417 doesn't seem to be mutated. Here are the mutated foci.Position 87933046 doesn't seem to be mutated. Here are the mutated foci.Position 87957954 doesn't seem to be mutated. Here are the mutated foci.Position 113561688 doesn't seem to be mutated. Here are the mutated foci.Position 11704776 doesn't seem to be mutated. Here are the mutated foci.Position 112504553 doesn't seem to be mutated. Here are the mutated foci.Position 89288373 doesn't seem to be mutated. Here are the mutated foci.Position 3592738 doesn't seem to be mutated. Here are the mutated foci.Position 31322304 doesn't seem to be mutated. Here are the mutated foci.Position 58864976 doesn't seem to be mutated. Here are the mutated foci.Position 35981927 doesn't seem to be mutated. Here are the mutated foci.Position 77676684 doesn't seem to be mutated. Here are the mutated foci.Position 77709830 doesn't seem to be mutated. Here are the mutated foci.Position 133789185 doesn't seem to be mutated. Here are the mutated foci.Position 133846670 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 29298028 doesn't seem to be mutated. Here are the mutated foci.Position 231977908 doesn't seem to be mutated. Here are the mutated foci.Position 122217810 doesn't seem to be mutated. Here are the mutated foci.Position 157185816 doesn't seem to be mutated. Here are the mutated foci.Position 41976171 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 290269 doesn't seem to be mutated. Here are the mutated foci.Position 95292452 doesn't seem to be mutated. Here are the mutated foci.Position 3766431 doesn't seem to be mutated. Here are the mutated foci.Position 61735878 doesn't seem to be mutated. Here are the mutated foci.Position 124359912 doesn't seem to be mutated. Here are the mutated foci.Position 179199136 doesn't seem to be mutated. Here are the mutated foci.Position 112772604 doesn't seem to be mutated. Here are the mutated foci.Position 177154981 doesn't seem to be mutated. Here are the mutated foci.Position 124880161 doesn't seem to be mutated. Here are the mutated foci.Position 38414788 doesn't seem to be mutated. Here are the mutated foci.Position 38414790 doesn't seem to be mutated. Here are the mutated foci.Position 62017452 doesn't seem to be mutated. Here are the mutated foci.Position 232153806 doesn't seem to be mutated. Here are the mutated foci.Position 80869831 doesn't seem to be mutated. Here are the mutated foci.Position 102519959 doesn't seem to be mutated. Here are the mutated foci.Position 102540718 doesn't seem to be mutated. Here are the mutated foci.Position 3839856 doesn't seem to be mutated. Here are the mutated foci.Position 144411118 doesn't seem to be mutated. Here are the mutated foci.Position 11731545 doesn't seem to be mutated. Here are the mutated foci.Position 132658466 doesn't seem to be mutated. Here are the mutated foci.Position 48593079 doesn't seem to be mutated. Here are the mutated foci.Position 31315853 doesn't seem to be mutated. Here are the mutated foci.Position 10299068 doesn't seem to be mutated. Here are the mutated foci.Position 29361498 doesn't seem to be mutated. Here are the mutated foci.Position 214720936 doesn't seem to be mutated. Here are the mutated foci.Position 232153695 doesn't seem to be mutated. Here are the mutated foci.Position 10054337 doesn't seem to be mutated. Here are the mutated foci.Position 177194613 doesn't seem to be mutated. Here are the mutated foci.Position 124841037 doesn't seem to be mutated. Here are the mutated foci.Position 142750794 doesn't seem to be mutated. Here are the mutated foci.Position 31130025 doesn't seem to be mutated. Here are the mutated foci.Position 2097294 doesn't seem to be mutated. Here are the mutated foci.Position 19385212 doesn't seem to be mutated. Here are the mutated foci.Position 95205562 doesn't seem to be mutated. Here are the mutated foci.Position 112450394 doesn't seem to be mutated. Here are the mutated foci.Position 89309378 doesn't seem to be mutated. Here are the mutated foci.Position 90742617 doesn't seem to be mutated. Here are the mutated foci.Position 31338734 doesn't seem to be mutated. Here are the mutated foci.Position 61822204 doesn't seem to be mutated. Here are the mutated foci.Position 48371669 doesn't seem to be mutated. Here are the mutated foci.Position 36519724 doesn't seem to be mutated. Here are the mutated foci.Position 59075251 doesn't seem to be mutated. Here are the mutated foci.Position 35959791 doesn't seem to be mutated. Here are the mutated foci.Position 29643961 doesn't seem to be mutated. Here are the mutated foci.Position 80749709 doesn't seem to be mutated. Here are the mutated foci.Position 39035156 doesn't seem to be mutated. Here are the mutated foci.Position 232250262 doesn't seem to be mutated. Here are the mutated foci.Position 10044799 doesn't seem to be mutated. Here are the mutated foci.Position 157216454 doesn't seem to be mutated. Here are the mutated foci.Position 95149073 doesn't seem to be mutated. Here are the mutated foci.Position 38256822 doesn't seem to be mutated. Here are the mutated foci.Position 35967846 doesn't seem to be mutated. Here are the mutated foci.Position 77582409 doesn't seem to be mutated. Here are the mutated foci.Position 230022 doesn't seem to be mutated. Here are the mutated foci.Position 1284082 doesn't seem to be mutated. Here are the mutated foci.Position 117867260 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 132644687 doesn't seem to be mutated. Here are the mutated foci.Position 32720079 doesn't seem to be mutated. Here are the mutated foci.Position 42388252 doesn't seem to be mutated. Here are the mutated foci.Position 156863413 doesn't seem to be mutated. Here are the mutated foci.Position 161326562 doesn't seem to be mutated. Here are the mutated foci.Position 69755630 doesn't seem to be mutated. Here are the mutated foci.Position 177159273 doesn't seem to be mutated. Here are the mutated foci.Position 102619809 doesn't seem to be mutated. Here are the mutated foci.Position 42365662 doesn't seem to be mutated. Here are the mutated foci.Position 156868152 doesn't seem to be mutated. Here are the mutated foci.Position 47431334 doesn't seem to be mutated. Here are the mutated foci.Position 47590513 doesn't seem to be mutated. Here are the mutated foci.Position 47768469 doesn't seem to be mutated. Here are the mutated foci.Position 58214594 doesn't seem to be mutated. Here are the mutated foci.Position 179209483 doesn't seem to be mutated. Here are the mutated foci.Position 1268529 doesn't seem to be mutated. Here are the mutated foci.Position 93125505 doesn't seem to be mutated. Here are the mutated foci.Position 124829727 doesn't seem to be mutated. Here are the mutated foci.Position 95219445 doesn't seem to be mutated. Here are the mutated foci.Position 2885071 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 45159570 doesn't seem to be mutated. Here are the mutated foci.Position 7673776 doesn't seem to be mutated. Here are the mutated foci.Position 1208339 doesn't seem to be mutated. Here are the mutated foci.Position 133402212 doesn't seem to be mutated. Here are the mutated foci.Position 133920604 doesn't seem to be mutated. Here are the mutated foci.Position 147947709 doesn't seem to be mutated. Here are the mutated foci.Position 92828457 doesn't seem to be mutated. Here are the mutated foci.Position 161320536 doesn't seem to be mutated. Here are the mutated foci.Position 29617321 doesn't seem to be mutated. Here are the mutated foci.Position 39116432 doesn't seem to be mutated. Here are the mutated foci.Position 50344720 doesn't seem to be mutated. Here are the mutated foci.Position 43099763 doesn't seem to be mutated. Here are the mutated foci.Position 58864976 doesn't seem to be mutated. Here are the mutated foci.Position 155902839 doesn't seem to be mutated. Here are the mutated foci.Position 42202038 doesn't seem to be mutated. Here are the mutated foci.Position 50307414 doesn't seem to be mutated. Here are the mutated foci.Position 288455 doesn't seem to be mutated. Here are the mutated foci.Position 21807884 doesn't seem to be mutated. Here are the mutated foci.Position 95287928 doesn't seem to be mutated. Here are the mutated foci.Position 95323216 doesn't seem to be mutated. Here are the mutated foci.Position 11891601 doesn't seem to be mutated. Here are the mutated foci.Position 25250167 doesn't seem to be mutated. Here are the mutated foci.Position 48417577 doesn't seem to be mutated. Here are the mutated foci.Position 7675064 doesn't seem to be mutated. Here are the mutated foci.Position 35063521 doesn't seem to be mutated. Here are the mutated foci.Position 29672780 doesn't seem to be mutated. Here are the mutated foci.Position 77684961 doesn't seem to be mutated. Here are the mutated foci.Position 177165770 doesn't seem to be mutated. Here are the mutated foci.Position 55085150 doesn't seem to be mutated. Here are the mutated foci.Position 102540718 doesn't seem to be mutated. Here are the mutated foci.Position 32349322 doesn't seem to be mutated. Here are the mutated foci.Position 80797957 doesn't seem to be mutated. Here are the mutated foci.Position 138676116 doesn't seem to be mutated. Here are the mutated foci.Position 23787203 doesn't seem to be mutated. Here are the mutated foci.Position 28719384 doesn't seem to be mutated. Here are the mutated foci.Position 41130808 doesn't seem to be mutated. Here are the mutated foci.Position 43343355 doesn't seem to be mutated. Here are the mutated foci.Position 29570698 doesn't seem to be mutated. Here are the mutated foci.Position 128492859 doesn't seem to be mutated. Here are the mutated foci.Position 140772662 doesn't seem to be mutated. Here are the mutated foci.Position 87932237 doesn't seem to be mutated. Here are the mutated foci.Position 32429461 doesn't seem to be mutated. Here are the mutated foci.Position 44126232 doesn't seem to be mutated. Here are the mutated foci.Position 119084424 doesn't seem to be mutated. Here are the mutated foci.Position 3880861 doesn't seem to be mutated. Here are the mutated foci.Position 58855378 doesn't seem to be mutated. Here are the mutated foci.Position 177252795 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 117915352 doesn't seem to be mutated. Here are the mutated foci.Position 68771765 doesn't seem to be mutated. Here are the mutated foci.Position 35063550 doesn't seem to be mutated. Here are the mutated foci.Position 3573592 doesn't seem to be mutated. Here are the mutated foci.Position 29385044 doesn't seem to be mutated. Here are the mutated foci.Position 54285947 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 138904792 doesn't seem to be mutated. Here are the mutated foci.Position 42013664 doesn't seem to be mutated. Here are the mutated foci.Position 42015471 doesn't seem to be mutated. Here are the mutated foci.Position 50362781 doesn't seem to be mutated. Here are the mutated foci.Position 50375266 doesn't seem to be mutated. Here are the mutated foci.Position 116799766 doesn't seem to be mutated. Here are the mutated foci.Position 117915352 doesn't seem to be mutated. Here are the mutated foci.Position 95130299 doesn't seem to be mutated. Here are the mutated foci.Position 110990210 doesn't seem to be mutated. Here are the mutated foci.Position 112422237 doesn't seem to be mutated. Here are the mutated foci.Position 112473023 doesn't seem to be mutated. Here are the mutated foci.Position 38270245 doesn't seem to be mutated. Here are the mutated foci.Position 31375028 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 77663994 doesn't seem to be mutated. Here are the mutated foci.Position 154762072 doesn't seem to be mutated. Here are the mutated foci.Position 127294420 doesn't seem to be mutated. Here are the mutated foci.Position 11074332 doesn't seem to be mutated. Here are the mutated foci.Position 156867578 doesn't seem to be mutated. Here are the mutated foci.Position 29609278 doesn't seem to be mutated. Here are the mutated foci.Position 122253063 doesn't seem to be mutated. Here are the mutated foci.Position 117892418 doesn't seem to be mutated. Here are the mutated foci.Position 70601140 doesn't seem to be mutated. Here are the mutated foci.Position 50782526 doesn't seem to be mutated. Here are the mutated foci.Position 34904838 doesn't seem to be mutated. Here are the mutated foci.Position 35831737 doesn't seem to be mutated. Here are the mutated foci.Position 23803395 doesn't seem to be mutated. Here are the mutated foci.Position 14841965 doesn't seem to be mutated. Here are the mutated foci.Position 77773753 doesn't seem to be mutated. Here are the mutated foci.Position 104778811 doesn't seem to be mutated. Here are the mutated foci.Position 96159953 doesn't seem to be mutated. Here are the mutated foci.Position 124923625 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 148884261 doesn't seem to be mutated. Here are the mutated foci.Position 117872398 doesn't seem to be mutated. Here are the mutated foci.Position 35999298 doesn't seem to be mutated. Here are the mutated foci.Position 112801934 doesn't seem to be mutated. Here are the mutated foci.Position 138849823 doesn't seem to be mutated. Here are the mutated foci.Position 35082007 doesn't seem to be mutated. Here are the mutated foci.Position 36848447 doesn't seem to be mutated. Here are the mutated foci.Position 95419940 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 7679510 doesn't seem to be mutated. Here are the mutated foci.Position 7679515 doesn't seem to be mutated. Here are the mutated foci.Position 11073931 doesn't seem to be mutated. Here are the mutated foci.Position 58858787 doesn't seem to be mutated. Here are the mutated foci.Position 35038651 doesn't seem to be mutated. Here are the mutated foci.Position 29642475 doesn't seem to be mutated. Here are the mutated foci.Position 29244984 doesn't seem to be mutated. Here are the mutated foci.Position 214765752 doesn't seem to be mutated. Here are the mutated foci.Position 56936532 doesn't seem to be mutated. Here are the mutated foci.Position 228883 doesn't seem to be mutated. Here are the mutated foci.Position 177165245 doesn't seem to be mutated. Here are the mutated foci.Position 38428396 doesn't seem to be mutated. Here are the mutated foci.Position 62030134 doesn't seem to be mutated. Here are the mutated foci.Position 112481857 doesn't seem to be mutated. Here are the mutated foci.Position 50782526 doesn't seem to be mutated. Here are the mutated foci.Position 31135464 doesn't seem to be mutated. Here are the mutated foci.Position 45459397 doesn't seem to be mutated. Here are the mutated foci.Position 118115443 doesn't seem to be mutated. Here are the mutated foci.Position 25245348 doesn't seem to be mutated. Here are the mutated foci.Position 40691368 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 29422690 doesn't seem to be mutated. Here are the mutated foci.Position 47636597 doesn't seem to be mutated. Here are the mutated foci.Position 14159022 doesn't seem to be mutated. Here are the mutated foci.Position 55014974 doesn't seem to be mutated. Here are the mutated foci.Position 62033267 doesn't seem to be mutated. Here are the mutated foci.Position 62070052 doesn't seem to be mutated. Here are the mutated foci.Position 40691009 doesn't seem to be mutated. Here are the mutated foci.Position 89309377 doesn't seem to be mutated. Here are the mutated foci.Position 61757994 doesn't seem to be mutated. Here are the mutated foci.Position 28731597 doesn't seem to be mutated. Here are the mutated foci.Position 37977963 doesn't seem to be mutated. Here are the mutated foci.Position 10154189 doesn't seem to be mutated. Here are the mutated foci.Position 93141579 doesn't seem to be mutated. Here are the mutated foci.Position 96157225 doesn't seem to be mutated. Here are the mutated foci.Position 117843655 doesn't seem to be mutated. Here are the mutated foci.Position 31175168 doesn't seem to be mutated. Here are the mutated foci.Position 35386333 doesn't seem to be mutated. Here are the mutated foci.Position 133858426 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 47371256 doesn't seem to be mutated. Here are the mutated foci.Position 47466756 doesn't seem to be mutated. Here are the mutated foci.Position 40208021 doesn't seem to be mutated. Here are the mutated foci.Position 68743695 doesn't seem to be mutated. Here are the mutated foci.Position 42338481 doesn't seem to be mutated. Here are the mutated foci.Position 11056438 doesn't seem to be mutated. Here are the mutated foci.Position 35276996 doesn't seem to be mutated. Here are the mutated foci.Position 35769709 doesn't seem to be mutated. Here are the mutated foci.Position 23697090 doesn't seem to be mutated. Here are the mutated foci.Position 232133022 doesn't seem to be mutated. Here are the mutated foci.Position 232335578 doesn't seem to be mutated. Here are the mutated foci.Position 454286 doesn't seem to be mutated. Here are the mutated foci.Position 11849914 doesn't seem to be mutated. Here are the mutated foci.Position 89783213 doesn't seem to be mutated. Here are the mutated foci.Position 76479087 doesn't seem to be mutated. Here are the mutated foci.Position 35123287 doesn't seem to be mutated. Here are the mutated foci.Position 35289556 doesn't seem to be mutated. Here are the mutated foci.Position 77593552 doesn't seem to be mutated. Here are the mutated foci.Position 133671161 doesn't seem to be mutated. Here are the mutated foci.Position 29900980 doesn't seem to be mutated. Here are the mutated foci.Position 38417331 doesn't seem to be mutated. Here are the mutated foci.Position 2147847 doesn't seem to be mutated. Here are the mutated foci.Position 36900935 doesn't seem to be mutated. Here are the mutated foci.Position 121549626 doesn't seem to be mutated. Here are the mutated foci.Position 25245350 doesn't seem to be mutated. Here are the mutated foci.Position 154766495 doesn't seem to be mutated. Here are the mutated foci.Position 47494742 doesn't seem to be mutated. Here are the mutated foci.Position 47786719 doesn't seem to be mutated. Here are the mutated foci.Position 138927241 doesn't seem to be mutated. Here are the mutated foci.Position 55023006 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 140760463 doesn't seem to be mutated. Here are the mutated foci.Position 1984191 doesn't seem to be mutated. Here are the mutated foci.Position 102638057 doesn't seem to be mutated. Here are the mutated foci.Position 104764827 doesn't seem to be mutated. Here are the mutated foci.Position 35072210 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 193247383 doesn't seem to be mutated. Here are the mutated foci.Position 58168552 doesn't seem to be mutated. Here are the mutated foci.Position 69774522 doesn't seem to be mutated. Here are the mutated foci.Position 132567193 doesn't seem to be mutated. Here are the mutated foci.Position 177161876 doesn't seem to be mutated. Here are the mutated foci.Position 26086438 doesn't seem to be mutated. Here are the mutated foci.Position 36937274 doesn't seem to be mutated. Here are the mutated foci.Position 108931970 doesn't seem to be mutated. Here are the mutated foci.Position 110953071 doesn't seem to be mutated. Here are the mutated foci.Position 36519724 doesn't seem to be mutated. Here are the mutated foci.Position 50234239 doesn't seem to be mutated. Here are the mutated foci.Position 40188898 doesn't seem to be mutated. Here are the mutated foci.Position 7681904 doesn't seem to be mutated. Here are the mutated foci.Position 61679976 doesn't seem to be mutated. Here are the mutated foci.Position 11038377 doesn't seem to be mutated. Here are the mutated foci.Position 50391110 doesn't seem to be mutated. Here are the mutated foci.Position 35131395 doesn't seem to be mutated. Here are the mutated foci.Position 35548741 doesn't seem to be mutated. Here are the mutated foci.Position 35960221 doesn't seem to be mutated. Here are the mutated foci.Position 77748593 doesn't seem to be mutated. Here are the mutated foci.Position 231421667 doesn't seem to be mutated. Here are the mutated foci.Position 47742644 doesn't seem to be mutated. Here are the mutated foci.Position 249334 doesn't seem to be mutated. Here are the mutated foci.Position 254739 doesn't seem to be mutated. Here are the mutated foci.Position 89309377 doesn't seem to be mutated. Here are the mutated foci.Position 35217334 doesn't seem to be mutated. Here are the mutated foci.Position 44827359 doesn't seem to be mutated. Here are the mutated foci.Position 193162328 doesn't seem to be mutated. Here are the mutated foci.Position 29874749 doesn't seem to be mutated. Here are the mutated foci.Position 47427085 doesn't seem to be mutated. Here are the mutated foci.Position 168954514 doesn't seem to be mutated. Here are the mutated foci.Position 1265793 doesn't seem to be mutated. Here are the mutated foci.Position 96201689 doesn't seem to be mutated. Here are the mutated foci.Position 2127964 doesn't seem to be mutated. Here are the mutated foci.Position 95459766 doesn't seem to be mutated. Here are the mutated foci.Position 95482202 doesn't seem to be mutated. Here are the mutated foci.Position 95506522 doesn't seem to be mutated. Here are the mutated foci.Position 40198254 doesn't seem to be mutated. Here are the mutated foci.Position 50414388 doesn't seem to be mutated. Here are the mutated foci.Position 35380693 doesn't seem to be mutated. Here are the mutated foci.Position 37975475 doesn't seem to be mutated. Here are the mutated foci.Position 133976381 doesn't seem to be mutated. Here are the mutated foci.Position 116768027 doesn't seem to be mutated. Here are the mutated foci.Position 50181516 doesn't seem to be mutated. Here are the mutated foci.Position 104779606 doesn't seem to be mutated. Here are the mutated foci.Position 90733101 doesn't seem to be mutated. Here are the mutated foci.Position 29673719 doesn't seem to be mutated. Here are the mutated foci.Position 29673732 doesn't seem to be mutated. Here are the mutated foci.Position 29686974 doesn't seem to be mutated. Here are the mutated foci.Position 47450831 doesn't seem to be mutated. Here are the mutated foci.Position 54299289 doesn't seem to be mutated. Here are the mutated foci.Position 177145231 doesn't seem to be mutated. Here are the mutated foci.Position 48313370 doesn't seem to be mutated. Here are the mutated foci.Position 50226278 doesn't seem to be mutated. Here are the mutated foci.Position 32716736 doesn't seem to be mutated. Here are the mutated foci.Position 119306069 doesn't seem to be mutated. Here are the mutated foci.Position 58240111 doesn't seem to be mutated. Here are the mutated foci.Position 122211076 doesn't seem to be mutated. Here are the mutated foci.Position 54722889 doesn't seem to be mutated. Here are the mutated foci.Position 246142 doesn't seem to be mutated. Here are the mutated foci.Position 42037661 doesn't seem to be mutated. Here are the mutated foci.Position 50361827 doesn't seem to be mutated. Here are the mutated foci.Position 2160926 doesn't seem to be mutated. Here are the mutated foci.Position 36947400 doesn't seem to be mutated. Here are the mutated foci.Position 87931044 doesn't seem to be mutated. Here are the mutated foci.Position 32440525 doesn't seem to be mutated. Here are the mutated foci.Position 58851077 doesn't seem to be mutated. Here are the mutated foci.Position 35826470 doesn't seem to be mutated. Here are the mutated foci.Position 35931066 doesn't seem to be mutated. Here are the mutated foci.Position 41114076 doesn't seem to be mutated. Here are the mutated foci.Position 77620400 doesn't seem to be mutated. Here are the mutated foci.Position 77643930 doesn't seem to be mutated. Here are the mutated foci.Position 133603427 doesn't seem to be mutated. Here are the mutated foci.Position 133824567 doesn't seem to be mutated. Here are the mutated foci.Position 133840111 doesn't seem to be mutated. Here are the mutated foci.Position 133855531 doesn't seem to be mutated. Here are the mutated foci.Position 133891524 doesn't seem to be mutated. Here are the mutated foci.Position 133959398 doesn't seem to be mutated. Here are the mutated foci.Position 80690303 doesn't seem to be mutated. Here are the mutated foci.Position 45187223 doesn't seem to be mutated. Here are the mutated foci.Position 50117048 doesn't seem to be mutated. Here are the mutated foci.Position 90760096 doesn't seem to be mutated. Here are the mutated foci.Position 144402048 doesn't seem to be mutated. Here are the mutated foci.Position 232027954 doesn't seem to be mutated. Here are the mutated foci.Position 232088197 doesn't seem to be mutated. Here are the mutated foci.Position 80665210 doesn't seem to be mutated. Here are the mutated foci.Position 55055722 doesn't seem to be mutated. Here are the mutated foci.Position 118080424 doesn't seem to be mutated. Here are the mutated foci.Position 90793947 doesn't seem to be mutated. Here are the mutated foci.Position 42380872 doesn't seem to be mutated. Here are the mutated foci.Position 10290064 doesn't seem to be mutated. Here are the mutated foci.Position 47364956 doesn't seem to be mutated. Here are the mutated foci.Position 168919625 doesn't seem to be mutated. Here are the mutated foci.Position 138729099 doesn't seem to be mutated. Here are the mutated foci.Position 138729109 doesn't seem to be mutated. Here are the mutated foci.Position 177137787 doesn't seem to be mutated. Here are the mutated foci.Position 62070052 doesn't seem to be mutated. Here are the mutated foci.Position 48427171 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 42000948 doesn't seem to be mutated. Here are the mutated foci.Position 90734613 doesn't seem to be mutated. Here are the mutated foci.Position 35070054 doesn't seem to be mutated. Here are the mutated foci.Position 214761072 doesn't seem to be mutated. Here are the mutated foci.Position 12625970 doesn't seem to be mutated. Here are the mutated foci.Position 140737385 doesn't seem to be mutated. Here are the mutated foci.Position 140761960 doesn't seem to be mutated. Here are the mutated foci.Position 140786674 doesn't seem to be mutated. Here are the mutated foci.Position 140787083 doesn't seem to be mutated. Here are the mutated foci.Position 117795497 doesn't seem to be mutated. Here are the mutated foci.Position 95149074 doesn't seem to be mutated. Here are the mutated foci.Position 37042974 doesn't seem to be mutated. Here are the mutated foci.Position 104754564 doesn't seem to be mutated. Here are the mutated foci.Position 140922568 doesn't seem to be mutated. Here are the mutated foci.Position 118045022 doesn't seem to be mutated. Here are the mutated foci.Position 13943010 doesn't seem to be mutated. Here are the mutated foci.Position 43116070 doesn't seem to be mutated. Here are the mutated foci.Position 43338603 doesn't seem to be mutated. Here are the mutated foci.Position 1295113 doesn't seem to be mutated. Here are the mutated foci.Position 138686710 doesn't seem to be mutated. Here are the mutated foci.Position 157212993 doesn't seem to be mutated. Here are the mutated foci.Position 55154129 doesn't seem to be mutated. Here are the mutated foci.Position 55165344 doesn't seem to be mutated. Here are the mutated foci.Position 93106493 doesn't seem to be mutated. Here are the mutated foci.Position 21971030 doesn't seem to be mutated. Here are the mutated foci.Position 12710371 doesn't seem to be mutated. Here are the mutated foci.Position 35097518 doesn't seem to be mutated. Here are the mutated foci.Position 10956932 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.Position 29831118 doesn't seem to be mutated. Here are the mutated foci.Position 47778623 doesn't seem to be mutated. Here are the mutated foci.Position 232270970 doesn't seem to be mutated. Here are the mutated foci.Position 157247935 doesn't seem to be mutated. Here are the mutated foci.Position 6000992 doesn't seem to be mutated. Here are the mutated foci.Position 36947714 doesn't seem to be mutated. Here are the mutated foci.Position 11743471 doesn't seem to be mutated. Here are the mutated foci.Position 38299686 doesn't seem to be mutated. Here are the mutated foci.Position 38353890 doesn't seem to be mutated. Here are the mutated foci.Position 80171688 doesn't seem to be mutated. Here are the mutated foci.Position 31373680 doesn't seem to be mutated. Here are the mutated foci.Position 58699857 doesn't seem to be mutated. Here are the mutated foci.Position 32386425 doesn't seem to be mutated. Here are the mutated foci.Position 35352822 doesn't seem to be mutated. Here are the mutated foci.Position 35882147 doesn't seem to be mutated. Here are the mutated foci.Position 29564137 doesn't seem to be mutated. Here are the mutated foci.Position 138769380 doesn't seem to be mutated. Here are the mutated foci.Position 95317766 doesn't seem to be mutated. Here are the mutated foci.Position 10054337 doesn't seem to be mutated. Here are the mutated foci.Position 69961550 doesn't seem to be mutated. Here are the mutated foci.Position 38445705 doesn't seem to be mutated. Here are the mutated foci.Position 48304764 doesn't seem to be mutated. Here are the mutated foci.Position 11014818 doesn't seem to be mutated. Here are the mutated foci.Position 11074580 doesn't seem to be mutated. Here are the mutated foci.Position 34814046 doesn't seem to be mutated. Here are the mutated foci.Position 29473707 doesn't seem to be mutated. Here are the mutated foci.Position 144376990 doesn't seem to be mutated. Here are the mutated foci.Position 140727122 doesn't seem to be mutated. Here are the mutated foci.Position 140738763 doesn't seem to be mutated. Here are the mutated foci.Position 140745411 doesn't seem to be mutated. Here are the mutated foci.Position 140829187 doesn't seem to be mutated. Here are the mutated foci.Position 110973881 doesn't seem to be mutated. Here are the mutated foci.Position 31172344 doesn't seem to be mutated. Here are the mutated foci.Position 43058380 doesn't seem to be mutated. Here are the mutated foci.Position 51057322 doesn't seem to be mutated. Here are the mutated foci.Position 50396902 doesn't seem to be mutated. Here are the mutated foci.Position 34965724 doesn't seem to be mutated. Here are the mutated foci.Position 47782321 doesn't seem to be mutated. Here are the mutated foci.Position 1292529 doesn't seem to be mutated. Here are the mutated foci.Position 96234808 doesn't seem to be mutated. Here are the mutated foci.Position 95489839 doesn't seem to be mutated. Here are the mutated foci.Position 108925398 doesn't seem to be mutated. Here are the mutated foci.Position 102546077 doesn't seem to be mutated. Here are the mutated foci.Position 110925187 doesn't seem to be mutated. Here are the mutated foci.Position 68784403 doesn't seem to be mutated. Here are the mutated foci.Position 31114802 doesn't seem to be mutated. Here are the mutated foci.Position 59077970 doesn't seem to be mutated. Here are the mutated foci.Position 29654670 doesn't seem to be mutated. Here are the mutated foci.Position 47592614 doesn't seem to be mutated. Here are the mutated foci.Position 232002641 doesn't seem to be mutated. Here are the mutated foci.Position 37815541 doesn't seem to be mutated. Here are the mutated foci.Position 116779722 doesn't seem to be mutated. Here are the mutated foci.Position 140735558 doesn't seem to be mutated. Here are the mutated foci.Position 32747624 doesn't seem to be mutated. Here are the mutated foci.Position 31134022 doesn't seem to be mutated. Here are the mutated foci.Position 61786198 doesn't seem to be mutated. Here are the mutated foci.Position 133862692 doesn't seem to be mutated. Here are the mutated foci.Position 93138432 doesn't seem to be mutated. Here are the mutated foci.Position 116757082 doesn't seem to be mutated. Here are the mutated foci.Position 31106892 doesn't seem to be mutated. Here are the mutated foci.Position 118114322 doesn't seem to be mutated. Here are the mutated foci.Position 108267267 doesn't seem to be mutated. Here are the mutated foci.Position 102849933 doesn't seem to be mutated. Here are the mutated foci.Position 90734613 doesn't seem to be mutated. Here are the mutated foci.Position 31302677 doesn't seem to be mutated. Here are the mutated foci.Position 61758980 doesn't seem to be mutated. Here are the mutated foci.Position 41855847 doesn't seem to be mutated. Here are the mutated foci.Position 177515371 doesn't seem to be mutated. Here are the mutated foci.Position 102540718 doesn't seem to be mutated. Here are the mutated foci.Position 119228814 doesn't seem to be mutated. Here are the mutated foci.Position 58720427 doesn't seem to be mutated. Here are the mutated foci.Position 35232475 doesn't seem to be mutated. Here are the mutated foci.Position 35252864 doesn't seem to be mutated. Here are the mutated foci.Position 77616014 doesn't seem to be mutated. Here are the mutated foci.Position 114716176 doesn't seem to be mutated. Here are the mutated foci.Position 156825158 doesn't seem to be mutated. Here are the mutated foci.Position 29432378 doesn't seem to be mutated. Here are the mutated foci.Position 39006679 doesn't seem to be mutated. Here are the mutated foci.Position 47373571 doesn't seem to be mutated. Here are the mutated foci.Position 168953753 doesn't seem to be mutated. Here are the mutated foci.Position 10152570 doesn't seem to be mutated. Here are the mutated foci.Position 1805475 doesn't seem to be mutated. Here are the mutated foci.Position 80753168 doesn't seem to be mutated. Here are the mutated foci.Position 138734514 doesn't seem to be mutated. Here are the mutated foci.Position 55057793 doesn't seem to be mutated. Here are the mutated foci.Position 96281909 doesn't seem to be mutated. Here are the mutated foci.Position 140911458 doesn't seem to be mutated. Here are the mutated foci.Position 38414287 doesn't seem to be mutated. Here are the mutated foci.Position 19380122 doesn't seem to be mutated. Here are the mutated foci.Position 99101125 doesn't seem to be mutated. Here are the mutated foci.Position 99101583 doesn't seem to be mutated. Here are the mutated foci.Position 132896754 doesn't seem to be mutated. Here are the mutated foci.Position 86825168 doesn't seem to be mutated. Here are the mutated foci.Position 121538654 doesn't seem to be mutated. Here are the mutated foci.Position 11888195 doesn't seem to be mutated. Here are the mutated foci.Position 12721673 doesn't seem to be mutated. Here are the mutated foci.Position 57751342 doesn't seem to be mutated. Here are the mutated foci.Position 104775208 doesn't seem to be mutated. Here are the mutated foci.Position 40729621 doesn't seem to be mutated. Here are the mutated foci.Position 3780879 doesn't seem to be mutated. Here are the mutated foci.Position 7673838 doesn't seem to be mutated. Here are the mutated foci.Position 31100660 doesn't seem to be mutated. Here are the mutated foci.Position 42323354 doesn't seem to be mutated. Here are the mutated foci.Position 42324847 doesn't seem to be mutated. Here are the mutated foci.Position 42337587 doesn't seem to be mutated. Here are the mutated foci.Position 68530001 doesn't seem to be mutated. Here are the mutated foci.Position 11003159 doesn't seem to be mutated. Here are the mutated foci.Position 11059886 doesn't seem to be mutated. Here are the mutated foci.Position 58909424 doesn't seem to be mutated. Here are the mutated foci.Position 58909579 doesn't seem to be mutated. Here are the mutated foci.Position 58909803 doesn't seem to be mutated. Here are the mutated foci.Position 58910401 doesn't seem to be mutated. Here are the mutated foci.Position 35540418 doesn't seem to be mutated. Here are the mutated foci.Position 35786712 doesn't seem to be mutated. Here are the mutated foci.Position 20991828 doesn't seem to be mutated. Here are the mutated foci.Position 23803411 doesn't seem to be mutated. Here are the mutated foci.Position 28731597 doesn't seem to be mutated. Here are the mutated foci.Position 124366869 doesn't seem to be mutated. Here are the mutated foci.Position 147945227 doesn't seem to be mutated. Here are the mutated foci.Position 10219433 doesn't seem to be mutated. Here are the mutated foci.Position 114705630 doesn't seem to be mutated. Here are the mutated foci.Position 193250456 doesn't seem to be mutated. Here are the mutated foci.Position 29685171 doesn't seem to be mutated. Here are the mutated foci.Position 47382997 doesn't seem to be mutated. Here are the mutated foci.Position 47590923 doesn't seem to be mutated. Here are the mutated foci.Position 168950141 doesn't seem to be mutated. Here are the mutated foci.Position 232259302 doesn't seem to be mutated. Here are the mutated foci.Position 69788390 doesn't seem to be mutated. Here are the mutated foci.Position 37833041 doesn't seem to be mutated. Here are the mutated foci.Position 80692739 doesn't seem to be mutated. Here are the mutated foci.Position 34421436 doesn't seem to be mutated. Here are the mutated foci.Position 34421438 doesn't seem to be mutated. Here are the mutated foci.Position 104771784 doesn't seem to be mutated. Here are the mutated foci.Position 55024092 doesn't seem to be mutated. Here are the mutated foci.Position 2128864 doesn't seem to be mutated. Here are the mutated foci.Position 21826274 doesn't seem to be mutated. Here are the mutated foci.Position 132921551 doesn't seem to be mutated. Here are the mutated foci.Position 87933061 doesn't seem to be mutated. Here are the mutated foci.Position 121572622 doesn't seem to be mutated. Here are the mutated foci.Position 95151279 doesn't seem to be mutated. Here are the mutated foci.Position 40179164 doesn't seem to be mutated. Here are the mutated foci.Position 82539688 doesn't seem to be mutated. Here are the mutated foci.Position 2085231 doesn't seem to be mutated. Here are the mutated foci.Position 68758424 doesn't seem to be mutated. Here are the mutated foci.Position 7674957 doesn't seem to be mutated. Here are the mutated foci.Position 42328037 doesn't seem to be mutated. Here are the mutated foci.Position 43072568 doesn't seem to be mutated. Here are the mutated foci.Position 58737135 doesn't seem to be mutated. Here are the mutated foci.Position 58738526 doesn't seem to be mutated. Here are the mutated foci.Position 1188040 doesn't seem to be mutated. Here are the mutated foci.Position 32434639 doesn't seem to be mutated. Here are the mutated foci.Position 34857755 doesn't seem to be mutated. Here are the mutated foci.Position 34946907 doesn't seem to be mutated. Here are the mutated foci.Position 34962074 doesn't seem to be mutated. Here are the mutated foci.Position 35360232 doesn't seem to be mutated. Here are the mutated foci.Position 29618310 doesn't seem to be mutated. Here are the mutated foci.Position 77599405 doesn't seem to be mutated. Here are the mutated foci.Position 77765539 doesn't seem to be mutated. Here are the mutated foci.Position 133862077 doesn't seem to be mutated. Here are the mutated foci.Position 117806230 doesn't seem to be mutated. Here are the mutated foci.Position 102637251 doesn't seem to be mutated. Here are the mutated foci.Position 58864976 doesn't seem to be mutated. Here are the mutated foci.Position 156860858 doesn't seem to be mutated. Here are the mutated foci.Position 168956304 doesn't seem to be mutated. Here are the mutated foci.Position 37839639 doesn't seem to be mutated. Here are the mutated foci.Position 138674325 doesn't seem to be mutated. Here are the mutated foci.Position 177162237 doesn't seem to be mutated. Here are the mutated foci.Position 177252795 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 119253666 doesn't seem to be mutated. Here are the mutated foci.Position 11649546 doesn't seem to be mutated. Here are the mutated foci.Position 35105960 doesn't seem to be mutated. Here are the mutated foci.Position 65560952 doesn't seem to be mutated. Here are the mutated foci.Position 154763031 doesn't seem to be mutated. Here are the mutated foci.Position 47779774 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 54284554 doesn't seem to be mutated. Here are the mutated foci.Position 138643116 doesn't seem to be mutated. Here are the mutated foci.Position 142748535 doesn't seem to be mutated. Here are the mutated foci.Position 142753322 doesn't seem to be mutated. Here are the mutated foci.Position 68751679 doesn't seem to be mutated. Here are the mutated foci.Position 68751692 doesn't seem to be mutated. Here are the mutated foci.Position 59078973 doesn't seem to be mutated. Here are the mutated foci.Position 28723082 doesn't seem to be mutated. Here are the mutated foci.Position 140820486 doesn't seem to be mutated. Here are the mutated foci.Position 140832717 doesn't seem to be mutated. Here are the mutated foci.Position 142757385 doesn't seem to be mutated. Here are the mutated foci.Position 10971200 doesn't seem to be mutated. Here are the mutated foci.Position 34993764 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 29773234 doesn't seem to be mutated. Here are the mutated foci.Position 47353180 doesn't seem to be mutated. Here are the mutated foci.Position 21831574 doesn't seem to be mutated. Here are the mutated foci.Position 11731545 doesn't seem to be mutated. Here are the mutated foci.Position 89267332 doesn't seem to be mutated. Here are the mutated foci.Position 86795170 doesn't seem to be mutated. Here are the mutated foci.Position 48357089 doesn't seem to be mutated. Here are the mutated foci.Position 29366994 doesn't seem to be mutated. Here are the mutated foci.Position 47791155 doesn't seem to be mutated. Here are the mutated foci.Position 37042975 doesn't seem to be mutated. Here are the mutated foci.Position 158595534 doesn't seem to be mutated. Here are the mutated foci.Position 1283659 doesn't seem to be mutated. Here are the mutated foci.Position 157252234 doesn't seem to be mutated. Here are the mutated foci.Position 132644687 doesn't seem to be mutated. Here are the mutated foci.Position 40180774 doesn't seem to be mutated. Here are the mutated foci.Position 3743784 doesn't seem to be mutated. Here are the mutated foci.Position 7674044 doesn't seem to be mutated. Here are the mutated foci.Position 51087667 doesn't seem to be mutated. Here are the mutated foci.Position 23834167 doesn't seem to be mutated. Here are the mutated foci.Position 29520745 doesn't seem to be mutated. Here are the mutated foci.Position 10082836 doesn't seem to be mutated. Here are the mutated foci.Position 5978122 doesn't seem to be mutated. Here are the mutated foci.Position 124905520 doesn't seem to be mutated. Here are the mutated foci.Position 31341689 doesn't seem to be mutated. Here are the mutated foci.Position 29682404 doesn't seem to be mutated. Here are the mutated foci.Position 29829064 doesn't seem to be mutated. Here are the mutated foci.Position 168999279 doesn't seem to be mutated. Here are the mutated foci.Position 69783488 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 179226302 doesn't seem to be mutated. Here are the mutated foci.Position 55196178 doesn't seem to be mutated. Here are the mutated foci.Position 116791596 doesn't seem to be mutated. Here are the mutated foci.Position 117957576 doesn't seem to be mutated. Here are the mutated foci.Position 409792 doesn't seem to be mutated. Here are the mutated foci.Position 444882 doesn't seem to be mutated. Here are the mutated foci.Position 95257720 doesn't seem to be mutated. Here are the mutated foci.Position 31090250 doesn't seem to be mutated. Here are the mutated foci.Position 41865991 doesn't seem to be mutated. Here are the mutated foci.Position 133963998 doesn't seem to be mutated. Here are the mutated foci.Position 147944813 doesn't seem to be mutated. Here are the mutated foci.Position 161372287 doesn't seem to be mutated. Here are the mutated foci.Position 29546590 doesn't seem to be mutated. Here are the mutated foci.Position 69820913 doesn't seem to be mutated. Here are the mutated foci.Position 41966230 doesn't seem to be mutated. Here are the mutated foci.Position 140790181 doesn't seem to be mutated. Here are the mutated foci.Position 140790216 doesn't seem to be mutated. Here are the mutated foci.Position 140791961 doesn't seem to be mutated. Here are the mutated foci.Position 140792682 doesn't seem to be mutated. Here are the mutated foci.Position 142747749 doesn't seem to be mutated. Here are the mutated foci.Position 142747767 doesn't seem to be mutated. Here are the mutated foci.Position 54717355 doesn't seem to be mutated. Here are the mutated foci.Position 95234673 doesn't seem to be mutated. Here are the mutated foci.Position 87911586 doesn't seem to be mutated. Here are the mutated foci.Position 11788756 doesn't seem to be mutated. Here are the mutated foci.Position 41122620 doesn't seem to be mutated. Here are the mutated foci.Position 133667015 doesn't seem to be mutated. Here are the mutated foci.Position 161338292 doesn't seem to be mutated. Here are the mutated foci.Position 232167871 doesn't seem to be mutated. Here are the mutated foci.Position 122212107 doesn't seem to be mutated. Here are the mutated foci.Position 179203763 doesn't seem to be mutated. Here are the mutated foci.Position 54256152 doesn't seem to be mutated. Here are the mutated foci.Position 54713115 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 124902256 doesn't seem to be mutated. Here are the mutated foci.Position 36857223 doesn't seem to be mutated. Here are the mutated foci.Position 95175811 doesn't seem to be mutated. Here are the mutated foci.Position 86890311 doesn't seem to be mutated. Here are the mutated foci.Position 102612308 doesn't seem to be mutated. Here are the mutated foci.Position 108240216 doesn't seem to be mutated. Here are the mutated foci.Position 119285273 doesn't seem to be mutated. Here are the mutated foci.Position 48429648 doesn't seem to be mutated. Here are the mutated foci.Position 23121570 doesn't seem to be mutated. Here are the mutated foci.Position 45187314 doesn't seem to be mutated. Here are the mutated foci.Position 31214453 doesn't seem to be mutated. Here are the mutated foci.Position 31327694 doesn't seem to be mutated. Here are the mutated foci.Position 58858371 doesn't seem to be mutated. Here are the mutated foci.Position 23812032 doesn't seem to be mutated. Here are the mutated foci.Position 29643979 doesn't seem to be mutated. Here are the mutated foci.Position 77672562 doesn't seem to be mutated. Here are the mutated foci.Position 77685007 doesn't seem to be mutated. Here are the mutated foci.Position 77759358 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 144445462 doesn't seem to be mutated. Here are the mutated foci.Position 214797650 doesn't seem to be mutated. Here are the mutated foci.Position 232043868 doesn't seem to be mutated. Here are the mutated foci.Position 179218294 doesn't seem to be mutated. Here are the mutated foci.Position 112762545 doesn't seem to be mutated. Here are the mutated foci.Position 138903827 doesn't seem to be mutated. Here are the mutated foci.Position 42176724 doesn't seem to be mutated. Here are the mutated foci.Position 42184608 doesn't seem to be mutated. Here are the mutated foci.Position 55089715 doesn't seem to be mutated. Here are the mutated foci.Position 93143164 doesn't seem to be mutated. Here are the mutated foci.Position 96300790 doesn't seem to be mutated. Here are the mutated foci.Position 117807866 doesn't seem to be mutated. Here are the mutated foci.Position 394548 doesn't seem to be mutated. Here are the mutated foci.Position 400246 doesn't seem to be mutated. Here are the mutated foci.Position 403978 doesn't seem to be mutated. Here are the mutated foci.Position 95364072 doesn't seem to be mutated. Here are the mutated foci.Position 61912609 doesn't seem to be mutated. Here are the mutated foci.Position 89012671 doesn't seem to be mutated. Here are the mutated foci.Position 44235408 doesn't seem to be mutated. Here are the mutated foci.Position 108358000 doesn't seem to be mutated. Here are the mutated foci.Position 48369006 doesn't seem to be mutated. Here are the mutated foci.Position 50173421 doesn't seem to be mutated. Here are the mutated foci.Position 50766152 doesn't seem to be mutated. Here are the mutated foci.Position 7674200 doesn't seem to be mutated. Here are the mutated foci.Position 31208132 doesn't seem to be mutated. Here are the mutated foci.Position 35105298 doesn't seem to be mutated. Here are the mutated foci.Position 35553376 doesn't seem to be mutated. Here are the mutated foci.Position 29653142 doesn't seem to be mutated. Here are the mutated foci.Position 29655214 doesn't seem to be mutated. Here are the mutated foci.Position 77754665 doesn't seem to be mutated. Here are the mutated foci.Position 133543385 doesn't seem to be mutated. Here are the mutated foci.Position 133634710 doesn't seem to be mutated. Here are the mutated foci.Position 133779742 doesn't seem to be mutated. Here are the mutated foci.Position 133828021 doesn't seem to be mutated. Here are the mutated foci.Position 133943900 doesn't seem to be mutated. Here are the mutated foci.Position 154279187 doesn't seem to be mutated. Here are the mutated foci.Position 29497922 doesn't seem to be mutated. Here are the mutated foci.Position 80821091 doesn't seem to be mutated. Here are the mutated foci.Position 112804487 doesn't seem to be mutated. Here are the mutated foci.Position 117881319 doesn't seem to be mutated. Here are the mutated foci.Position 453125 doesn't seem to be mutated. Here are the mutated foci.Position 2162848 doesn't seem to be mutated. Here are the mutated foci.Position 95493555 doesn't seem to be mutated. Here are the mutated foci.Position 62070659 doesn't seem to be mutated. Here are the mutated foci.Position 44186909 doesn't seem to be mutated. Here are the mutated foci.Position 7675143 doesn't seem to be mutated. Here are the mutated foci.Position 7676259 doesn't seem to be mutated. Here are the mutated foci.Position 7676629 doesn't seem to be mutated. Here are the mutated foci.Position 7676986 doesn't seem to be mutated. Here are the mutated foci.Position 7677664 doesn't seem to be mutated. Here are the mutated foci.Position 7677839 doesn't seem to be mutated. Here are the mutated foci.Position 7677874 doesn't seem to be mutated. Here are the mutated foci.Position 51056834 doesn't seem to be mutated. Here are the mutated foci.Position 37973818 doesn't seem to be mutated. Here are the mutated foci.Position 133856973 doesn't seem to be mutated. Here are the mutated foci.Position 232270922 doesn't seem to be mutated. Here are the mutated foci.Position 80823685 doesn't seem to be mutated. Here are the mutated foci.Position 31164458 doesn't seem to be mutated. Here are the mutated foci.Position 31302678 doesn't seem to be mutated. Here are the mutated foci.Position 12609136 doesn't seem to be mutated. Here are the mutated foci.Position 42015680 doesn't seem to be mutated. Here are the mutated foci.Position 95339284 doesn't seem to be mutated. Here are the mutated foci.Position 11655528 doesn't seem to be mutated. Here are the mutated foci.Position 35481351 doesn't seem to be mutated. Here are the mutated foci.Position 161359774 doesn't seem to be mutated. Here are the mutated foci.Position 29512554 doesn't seem to be mutated. Here are the mutated foci.Position 29788531 doesn't seem to be mutated. Here are the mutated foci.Position 69856264 doesn't seem to be mutated. Here are the mutated foci.Position 179199144 doesn't seem to be mutated. Here are the mutated foci.Position 55038526 doesn't seem to be mutated. Here are the mutated foci.Position 117987517 doesn't seem to be mutated. Here are the mutated foci.Position 226913 doesn't seem to be mutated. Here are the mutated foci.Position 403947 doesn't seem to be mutated. Here are the mutated foci.Position 2091573 doesn't seem to be mutated. Here are the mutated foci.Position 2108125 doesn't seem to be mutated. Here are the mutated foci.Position 111011086 doesn't seem to be mutated. Here are the mutated foci.Position 113571612 doesn't seem to be mutated. Here are the mutated foci.Position 13953949 doesn't seem to be mutated. Here are the mutated foci.Position 7675995 doesn't seem to be mutated. Here are the mutated foci.Position 133687938 doesn't seem to be mutated. Here are the mutated foci.Position 116694249 doesn't seem to be mutated. Here are the mutated foci.Position 43046762 doesn't seem to be mutated. Here are the mutated foci.Position 45447234 doesn't seem to be mutated. Here are the mutated foci.Position 35365995 doesn't seem to be mutated. Here are the mutated foci.Position 47660953 doesn't seem to be mutated. Here are the mutated foci.Position 42029410 doesn't seem to be mutated. Here are the mutated foci.Position 42147103 doesn't seem to be mutated. Here are the mutated foci.Position 140753338 doesn't seem to be mutated. Here are the mutated foci.Position 42312156 doesn't seem to be mutated. Here are the mutated foci.Position 43057381 doesn't seem to be mutated. Here are the mutated foci.Position 61753771 doesn't seem to be mutated. Here are the mutated foci.Position 23797372 doesn't seem to be mutated. Here are the mutated foci.Position 10273544 doesn't seem to be mutated. Here are the mutated foci.Position 17017613 doesn't seem to be mutated. Here are the mutated foci.Position 29713372 doesn't seem to be mutated. Here are the mutated foci.Position 47717936 doesn't seem to be mutated. Here are the mutated foci.Position 47780508 doesn't seem to be mutated. Here are the mutated foci.Position 58182116 doesn't seem to be mutated. Here are the mutated foci.Position 96263158 doesn't seem to be mutated. Here are the mutated foci.Position 127278335 doesn't seem to be mutated. Here are the mutated foci.Position 144376913 doesn't seem to be mutated. Here are the mutated foci.Position 169003350 doesn't seem to be mutated. Here are the mutated foci.Position 214753075 doesn't seem to be mutated. Here are the mutated foci.Position 12623498 doesn't seem to be mutated. Here are the mutated foci.Position 54269610 doesn't seem to be mutated. Here are the mutated foci.Position 43595856 doesn't seem to be mutated. Here are the mutated foci.Position 41967521 doesn't seem to be mutated. Here are the mutated foci.Position 42173972 doesn't seem to be mutated. Here are the mutated foci.Position 50399889 doesn't seem to be mutated. Here are the mutated foci.Position 55072324 doesn't seem to be mutated. Here are the mutated foci.Position 55141612 doesn't seem to be mutated. Here are the mutated foci.Position 55197447 doesn't seem to be mutated. Here are the mutated foci.Position 116717361 doesn't seem to be mutated. Here are the mutated foci.Position 116785081 doesn't seem to be mutated. Here are the mutated foci.Position 116785081 doesn't seem to be mutated. Here are the mutated foci.Position 116785082 doesn't seem to be mutated. Here are the mutated foci.Position 148827985 doesn't seem to be mutated. Here are the mutated foci.Position 38462502 doesn't seem to be mutated. Here are the mutated foci.Position 117833447 doesn't seem to be mutated. Here are the mutated foci.Position 118031982 doesn't seem to be mutated. Here are the mutated foci.Position 118057233 doesn't seem to be mutated. Here are the mutated foci.Position 284344 doesn't seem to be mutated. Here are the mutated foci.Position 409159 doesn't seem to be mutated. Here are the mutated foci.Position 2182988 doesn't seem to be mutated. Here are the mutated foci.Position 87948915 doesn't seem to be mutated. Here are the mutated foci.Position 108364595 doesn't seem to be mutated. Here are the mutated foci.Position 11795538 doesn't seem to be mutated. Here are the mutated foci.Position 132664774 doesn't seem to be mutated. Here are the mutated foci.Position 45162499 doesn't seem to be mutated. Here are the mutated foci.Position 65084338 doesn't seem to be mutated. Here are the mutated foci.Position 65093520 doesn't seem to be mutated. Here are the mutated foci.Position 32715603 doesn't seem to be mutated. Here are the mutated foci.Position 32732489 doesn't seem to be mutated. Here are the mutated foci.Position 68791930 doesn't seem to be mutated. Here are the mutated foci.Position 7674256 doesn't seem to be mutated. Here are the mutated foci.Position 31327694 doesn't seem to be mutated. Here are the mutated foci.Position 51062164 doesn't seem to be mutated. Here are the mutated foci.Position 35028558 doesn't seem to be mutated. Here are the mutated foci.Position 35160714 doesn't seem to be mutated. Here are the mutated foci.Position 35359492 doesn't seem to be mutated. Here are the mutated foci.Position 35426716 doesn't seem to be mutated. Here are the mutated foci.Position 35519878 doesn't seem to be mutated. Here are the mutated foci.Position 35677371 doesn't seem to be mutated. Here are the mutated foci.Position 35703297 doesn't seem to be mutated. Here are the mutated foci.Position 35951532 doesn't seem to be mutated. Here are the mutated foci.Position 35960567 doesn't seem to be mutated. Here are the mutated foci.Position 35981876 doesn't seem to be mutated. Here are the mutated foci.Position 29632194 doesn't seem to be mutated. Here are the mutated foci.Position 124347885 doesn't seem to be mutated. Here are the mutated foci.Position 133314710 doesn't seem to be mutated. Here are the mutated foci.Position 133327433 doesn't seem to be mutated. Here are the mutated foci.Position 43347228 doesn't seem to be mutated. Here are the mutated foci.Position 29719782 doesn't seem to be mutated. Here are the mutated foci.Position 138706237 doesn't seem to be mutated. Here are the mutated foci.Position 108292596 doesn't seem to be mutated. Here are the mutated foci.Position 119289163 doesn't seem to be mutated. Here are the mutated foci.Position 48304764 doesn't seem to be mutated. Here are the mutated foci.Position 68757541 doesn't seem to be mutated. Here are the mutated foci.Position 45367376 doesn't seem to be mutated. Here are the mutated foci.Position 34868494 doesn't seem to be mutated. Here are the mutated foci.Position 23819752 doesn't seem to be mutated. Here are the mutated foci.Position 41107874 doesn't seem to be mutated. Here are the mutated foci.Position 133594861 doesn't seem to be mutated. Here are the mutated foci.Position 133619478 doesn't seem to be mutated. Here are the mutated foci.Position 87912846 doesn't seem to be mutated. Here are the mutated foci.Position 58858371 doesn't seem to be mutated. Here are the mutated foci.Position 10227703 doesn't seem to be mutated. Here are the mutated foci.Position 29710510 doesn't seem to be mutated. Here are the mutated foci.Position 157224626 doesn't seem to be mutated. Here are the mutated foci.Position 59077970 doesn't seem to be mutated. Here are the mutated foci.Position 52406594 doesn't seem to be mutated. Here are the mutated foci.Position 138775889 doesn't seem to be mutated. Here are the mutated foci.Position 140854826 doesn't seem to be mutated. Here are the mutated foci.Position 112453581 doesn't seem to be mutated. Here are the mutated foci.Position 133545911 doesn't seem to be mutated. Here are the mutated foci.Position 132619872 doesn't seem to be mutated. Here are the mutated foci.Position 118111944 doesn't seem to be mutated. Here are the mutated foci.Position 95444489 doesn't seem to be mutated. Here are the mutated foci.Position 102619391 doesn't seem to be mutated. Here are the mutated foci.Position 58892240 doesn't seem to be mutated. Here are the mutated foci.Position 3585522 doesn't seem to be mutated. Here are the mutated foci.Position 29506365 doesn't seem to be mutated. Here are the mutated foci.Position 29556765 doesn't seem to be mutated. Here are the mutated foci.Position 39125891 doesn't seem to be mutated. Here are the mutated foci.Position 47577895 doesn't seem to be mutated. Here are the mutated foci.Position 144480892 doesn't seem to be mutated. Here are the mutated foci.Position 232176915 doesn't seem to be mutated. Here are the mutated foci.Position 69900433 doesn't seem to be mutated. Here are the mutated foci.Position 179162859 doesn't seem to be mutated. Here are the mutated foci.Position 179172643 doesn't seem to be mutated. Here are the mutated foci.Position 116777114 doesn't seem to be mutated. Here are the mutated foci.Position 36875417 doesn't seem to be mutated. Here are the mutated foci.Position 36878669 doesn't seem to be mutated. Here are the mutated foci.Position 86840041 doesn't seem to be mutated. Here are the mutated foci.Position 102638149 doesn't seem to be mutated. Here are the mutated foci.Position 38263874 doesn't seem to be mutated. Here are the mutated foci.Position 7674249 doesn't seem to be mutated. Here are the mutated foci.Position 7675157 doesn't seem to be mutated. Here are the mutated foci.Position 35318709 doesn't seem to be mutated. Here are the mutated foci.Position 29228692 doesn't seem to be mutated. Here are the mutated foci.Position 158578506 doesn't seem to be mutated. Here are the mutated foci.Position 54286319 doesn't seem to be mutated. Here are the mutated foci.Position 42060510 doesn't seem to be mutated. Here are the mutated foci.Position 140915997 doesn't seem to be mutated. Here are the mutated foci.Position 117851510 doesn't seem to be mutated. Here are the mutated foci.Position 118004153 doesn't seem to be mutated. Here are the mutated foci.Position 118004157 doesn't seem to be mutated. Here are the mutated foci.Position 37026733 doesn't seem to be mutated. Here are the mutated foci.Position 95180655 doesn't seem to be mutated. Here are the mutated foci.Position 38265621 doesn't seem to be mutated. Here are the mutated foci.Position 3807974 doesn't seem to be mutated. Here are the mutated foci.Position 31341578 doesn't seem to be mutated. Here are the mutated foci.Position 133923132 doesn't seem to be mutated. Here are the mutated foci.Position 168919625 doesn't seem to be mutated. Here are the mutated foci.Position 138612313 doesn't seem to be mutated. Here are the mutated foci.Position 119084424 doesn't seem to be mutated. Here are the mutated foci.Position 23804108 doesn't seem to be mutated. Here are the mutated foci.Position 95352344 doesn't seem to be mutated. Here are the mutated foci.Position 119206261 doesn't seem to be mutated. Here are the mutated foci.Position 66435118 doesn't seem to be mutated. Here are the mutated foci.Position 11081421 doesn't seem to be mutated. Here are the mutated foci.Position 58890401 doesn't seem to be mutated. Here are the mutated foci.Position 29245845 doesn't seem to be mutated. Here are the mutated foci.Position 144395954 doesn't seem to be mutated. Here are the mutated foci.Position 232064037 doesn't seem to be mutated. Here are the mutated foci.Position 42074978 doesn't seem to be mutated. Here are the mutated foci.Position 42094401 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 2140909 doesn't seem to be mutated. Here are the mutated foci.Position 99105712 doesn't seem to be mutated. Here are the mutated foci.Position 44096330 doesn't seem to be mutated. Here are the mutated foci.Position 31327606 doesn't seem to be mutated. Here are the mutated foci.Position 4116437 doesn't seem to be mutated. Here are the mutated foci.Position 50396902 doesn't seem to be mutated. Here are the mutated foci.Position 77592962 doesn't seem to be mutated. Here are the mutated foci.Position 47408041 doesn't seem to be mutated. Here are the mutated foci.Position 144363163 doesn't seem to be mutated. Here are the mutated foci.Position 116692446 doesn't seem to be mutated. Here are the mutated foci.Position 2086188 doesn't seem to be mutated. Here are the mutated foci.Position 124373556 doesn't seem to be mutated. Here are the mutated foci.Position 193142099 doesn't seem to be mutated. Here are the mutated foci.Position 54274917 doesn't seem to be mutated. Here are the mutated foci.Position 95503551 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 10235428 doesn't seem to be mutated. Here are the mutated foci.Position 168939247 doesn't seem to be mutated. Here are the mutated foci.Position 168982800 doesn't seem to be mutated. Here are the mutated foci.Position 12619553 doesn't seem to be mutated. Here are the mutated foci.Position 69950628 doesn't seem to be mutated. Here are the mutated foci.Position 56928861 doesn't seem to be mutated. Here are the mutated foci.Position 138634731 doesn't seem to be mutated. Here are the mutated foci.Position 43612871 doesn't seem to be mutated. Here are the mutated foci.Position 104844412 doesn't seem to be mutated. Here are the mutated foci.Position 95201210 doesn't seem to be mutated. Here are the mutated foci.Position 97692031 doesn't seem to be mutated. Here are the mutated foci.Position 86809298 doesn't seem to be mutated. Here are the mutated foci.Position 86895786 doesn't seem to be mutated. Here are the mutated foci.Position 32427484 doesn't seem to be mutated. Here are the mutated foci.Position 50802983 doesn't seem to be mutated. Here are the mutated foci.Position 31094675 doesn't seem to be mutated. Here are the mutated foci.Position 44843901 doesn't seem to be mutated. Here are the mutated foci.Position 80776929 doesn't seem to be mutated. Here are the mutated foci.Position 177161374 doesn't seem to be mutated. Here are the mutated foci.Position 96244957 doesn't seem to be mutated. Here are the mutated foci.Position 140753336 doesn't seem to be mutated. Here are the mutated foci.Position 41855843 doesn't seem to be mutated. Here are the mutated foci.Position 44827481 doesn't seem to be mutated. Here are the mutated foci.Position 47470525 doesn't seem to be mutated. Here are the mutated foci.Position 56929001 doesn't seem to be mutated. Here are the mutated foci.Position 1273006 doesn't seem to be mutated. Here are the mutated foci.Position 37840052 doesn't seem to be mutated. Here are the mutated foci.Position 55034617 doesn't seem to be mutated. Here are the mutated foci.Position 95489839 doesn't seem to be mutated. Here are the mutated foci.Position 24242777 doesn't seem to be mutated. Here are the mutated foci.Position 65101998 doesn't seem to be mutated. Here are the mutated foci.Position 89781981 doesn't seem to be mutated. Here are the mutated foci.Position 47719247 doesn't seem to be mutated. Here are the mutated foci.Position 80655285 doesn't seem to be mutated. Here are the mutated foci.Position 42172024 doesn't seem to be mutated. Here are the mutated foci.Position 2065444 doesn't seem to be mutated. Here are the mutated foci.Position 21974720 doesn't seem to be mutated. Here are the mutated foci.Position 48330109 doesn't seem to be mutated. Here are the mutated foci.Position 34899401 doesn't seem to be mutated. Here are the mutated foci.Position 232139554 doesn't seem to be mutated. Here are the mutated foci.Position 104825077 doesn't seem to be mutated. Here are the mutated foci.Position 44174411 doesn't seem to be mutated. Here are the mutated foci.Position 7670685 doesn't seem to be mutated. Here are the mutated foci.Position 7670702 doesn't seem to be mutated. Here are the mutated foci.Position 31197051 doesn't seem to be mutated. Here are the mutated foci.Position 42368876 doesn't seem to be mutated. Here are the mutated foci.Position 35437241 doesn't seem to be mutated. Here are the mutated foci.Position 77531923 doesn't seem to be mutated. Here are the mutated foci.Position 77636058 doesn't seem to be mutated. Here are the mutated foci.Position 77717076 doesn't seem to be mutated. Here are the mutated foci.Position 47433020 doesn't seem to be mutated. Here are the mutated foci.Position 168919625 doesn't seem to be mutated. Here are the mutated foci.Position 69937170 doesn't seem to be mutated. Here are the mutated foci.Position 138895505 doesn't seem to be mutated. Here are the mutated foci.Position 138933645 doesn't seem to be mutated. Here are the mutated foci.Position 157150477 doesn't seem to be mutated. Here are the mutated foci.Position 177218501 doesn't seem to be mutated. Here are the mutated foci.Position 140798271 doesn't seem to be mutated. Here are the mutated foci.Position 117883016 doesn't seem to be mutated. Here are the mutated foci.Position 118091798 doesn't seem to be mutated. Here are the mutated foci.Position 110953731 doesn't seem to be mutated. Here are the mutated foci.Position 47217048 doesn't seem to be mutated. Here are the mutated foci.Position 11668400 doesn't seem to be mutated. Here are the mutated foci.Position 132638325 doesn't seem to be mutated. Here are the mutated foci.Position 45187314 doesn't seem to be mutated. Here are the mutated foci.Position 3850587 doesn't seem to be mutated. Here are the mutated foci.Position 31152869 doesn't seem to be mutated. Here are the mutated foci.Position 11023575 doesn't seem to be mutated. Here are the mutated foci.Position 77532275 doesn't seem to be mutated. Here are the mutated foci.Position 124343978 doesn't seem to be mutated. Here are the mutated foci.Position 133574350 doesn't seem to be mutated. Here are the mutated foci.Position 154762309 doesn't seem to be mutated. Here are the mutated foci.Position 10035159 doesn't seem to be mutated. Here are the mutated foci.Position 69739991 doesn't seem to be mutated. Here are the mutated foci.Position 54742274 doesn't seem to be mutated. Here are the mutated foci.Position 112800833 doesn't seem to be mutated. Here are the mutated foci.Position 95217481 doesn't seem to be mutated. Here are the mutated foci.Position 99114245 doesn't seem to be mutated. Here are the mutated foci.Position 104765360 doesn't seem to be mutated. Here are the mutated foci.Position 31303486 doesn't seem to be mutated. Here are the mutated foci.Position 31323832 doesn't seem to be mutated. Here are the mutated foci.Position 11081104 doesn't seem to be mutated. Here are the mutated foci.Position 77589682 doesn't seem to be mutated. Here are the mutated foci.Position 80692198 doesn't seem to be mutated. Here are the mutated foci.Position 148879805 doesn't seem to be mutated. Here are the mutated foci.Position 400616 doesn't seem to be mutated. Here are the mutated foci.Position 48547520 doesn't seem to be mutated. Here are the mutated foci.Position 17237587 doesn't seem to be mutated. Here are the mutated foci.Position 133908732 doesn't seem to be mutated. Here are the mutated foci.Position 122179979 doesn't seem to be mutated. Here are the mutated foci.Position 10970664 doesn't seem to be mutated. Here are the mutated foci.Position 69778801 doesn't seem to be mutated. Here are the mutated foci.Position 69971174 doesn't seem to be mutated. Here are the mutated foci.Position 179167301 doesn't seem to be mutated. Here are the mutated foci.Position 138710724 doesn't seem to be mutated. Here are the mutated foci.Position 177241508 doesn't seem to be mutated. Here are the mutated foci.Position 95235343 doesn't seem to be mutated. Here are the mutated foci.Position 48348848 doesn't seem to be mutated. Here are the mutated foci.Position 35118401 doesn't seem to be mutated. Here are the mutated foci.Position 35870213 doesn't seem to be mutated. Here are the mutated foci.Position 37977963 doesn't seem to be mutated. Here are the mutated foci.Position 156878218 doesn't seem to be mutated. Here are the mutated foci.Position 29670569 doesn't seem to be mutated. Here are the mutated foci.Position 69862993 doesn't seem to be mutated. Here are the mutated foci.Position 41752528 doesn't seem to be mutated. Here are the mutated foci.Position 31065159 doesn't seem to be mutated. Here are the mutated foci.Position 89988584 doesn't seem to be mutated. Here are the mutated foci.Position 36863149 doesn't seem to be mutated. Here are the mutated foci.Position 95339797 doesn't seem to be mutated. Here are the mutated foci.Position 32425594 doesn't seem to be mutated. Here are the mutated foci.Position 47214675 doesn't seem to be mutated. Here are the mutated foci.Position 112493961 doesn't seem to be mutated. Here are the mutated foci.Position 7673776 doesn't seem to be mutated. Here are the mutated foci.Position 31334869 doesn't seem to be mutated. Here are the mutated foci.Position 59089858 doesn't seem to be mutated. Here are the mutated foci.Position 58903004 doesn't seem to be mutated. Here are the mutated foci.Position 35214596 doesn't seem to be mutated. Here are the mutated foci.Position 35447153 doesn't seem to be mutated. Here are the mutated foci.Position 35523027 doesn't seem to be mutated. Here are the mutated foci.Position 35573416 doesn't seem to be mutated. Here are the mutated foci.Position 77599476 doesn't seem to be mutated. Here are the mutated foci.Position 77750298 doesn't seem to be mutated. Here are the mutated foci.Position 133646767 doesn't seem to be mutated. Here are the mutated foci.Position 133818447 doesn't seem to be mutated. Here are the mutated foci.Position 133842441 doesn't seem to be mutated. Here are the mutated foci.Position 133910798 doesn't seem to be mutated. Here are the mutated foci.Position 29234875 doesn't seem to be mutated. Here are the mutated foci.Position 47604010 doesn't seem to be mutated. Here are the mutated foci.Position 214765752 doesn't seem to be mutated. Here are the mutated foci.Position 117915352 doesn't seem to be mutated. Here are the mutated foci.Position 118043834 doesn't seem to be mutated. Here are the mutated foci.Position 95317661 doesn't seem to be mutated. Here are the mutated foci.Position 110962899 doesn't seem to be mutated. Here are the mutated foci.Position 110994122 doesn't seem to be mutated. Here are the mutated foci.Position 50210176 doesn't seem to be mutated. Here are the mutated foci.Position 89772385 doesn't seem to be mutated. Here are the mutated foci.Position 31137719 doesn't seem to be mutated. Here are the mutated foci.Position 43121027 doesn't seem to be mutated. Here are the mutated foci.Position 68529332 doesn't seem to be mutated. Here are the mutated foci.Position 147909269 doesn't seem to be mutated. Here are the mutated foci.
Error in lollipopPlot(plot_maf, gene = gene, AACol = "HGVSp_Short", showDomainLabel = FALSE,  : 
  

Print session info

sessionInfo()
R version 4.4.0 (2024-04-24)
Platform: aarch64-apple-darwin20
Running under: macOS Ventura 13.6.2

Matrix products: default
BLAS:   /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 
LAPACK: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRlapack.dylib;  LAPACK version 3.12.0

locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8

time zone: America/New_York
tzcode source: internal

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] mgsub_1.7.3     maftools_2.20.0 lubridate_1.9.3 forcats_1.0.0   stringr_1.5.1   dplyr_1.1.4     purrr_1.0.2     readr_2.1.5     tidyr_1.3.1     tibble_3.2.1    ggplot2_3.5.1  
[12] tidyverse_2.0.0

loaded via a namespace (and not attached):
 [1] sass_0.4.9         utf8_1.2.4         generics_0.1.3     stringi_1.8.4      lattice_0.22-6     hms_1.1.3          digest_0.6.35      magrittr_2.0.3     timechange_0.3.0  
[10] evaluate_0.24.0    grid_4.4.0         RColorBrewer_1.1-3 fastmap_1.2.0      rprojroot_2.0.4    jsonlite_1.8.8     Matrix_1.7-0       survival_3.7-0     fansi_1.0.6       
[19] scales_1.3.0       jquerylib_0.1.4    cli_3.6.2          crayon_1.5.2       rlang_1.1.4        bit64_4.0.5        munsell_0.5.1      splines_4.4.0      withr_3.0.0       
[28] cachem_1.1.0       yaml_2.3.8         DNAcopy_1.78.0     parallel_4.4.0     tools_4.4.0        tzdb_0.4.0         colorspace_2.1-1   vctrs_0.6.5        R6_2.5.1          
[37] lifecycle_1.0.4    bit_4.0.5          vroom_1.6.5        pkgconfig_2.0.3    pillar_1.9.0       bslib_0.7.0        gtable_0.3.5       data.table_1.15.4  glue_1.7.0        
[46] xfun_0.45          tidyselect_1.2.1   rstudioapi_0.16.0  knitr_1.47         htmltools_0.5.8.1  rmarkdown_2.27     compiler_4.4.0    
LS0tCnRpdGxlOiAiQXNzZXNzIHNlY29uZCBoaXRzIgpvdXRwdXQ6IAogIGh0bWxfbm90ZWJvb2s6CiAgdG9jOiBUUlVFCnRvY19mbG9hdDogVFJVRQphdXRob3I6IEpvIEx5bm5lIFJva2l0YQpwYXJhbXM6CiAgbWFmX2luOgogICAgbGFiZWw6ICJPbmNvS0ItQW5ub3RhdGVkIE1BRiBpbnB1dCBmaWxlIgogICAgdmFsdWU6IGFuYWx5c2VzL29uY29rYi1hbm5vdGF0aW9uL3Jlc3VsdHMvc252LWNvbnNlbnN1cy1wbHVzLWhvdHNwb3RzLWdvaS1vbmNva2IubWFmLnRzdgogICAgaW5wdXQ6IGZpbGUKICBnZXJtX2luOgogICAgbGFiZWw6ICJnZXJtbGluZSBmaWxlIgogICAgdmFsdWU6IGRhdGEvcGJ0YS1tZXJnZWQtcGxwLXZhcmlhbnRzLWF1dG9ndnAtYWJyaWRnZWQudHN2CiAgICBpbnB1dDogZmlsZQplZGl0b3Jfb3B0aW9uczogCiAgY2h1bmtfb3V0cHV0X3R5cGU6IGlubGluZQotLS0KIyMjIFNldCBsaWJyYXJpZXMgYW5kIGZpbGUgcGF0aHMKCmBgYHtyIGxvYWQgbGlicmFyaWVzfQojIGxvYWQgbGlicmFyaWVzCmxpYnJhcnkodGlkeXZlcnNlKQpsaWJyYXJ5KG1hZnRvb2xzKQoKIyBkZWZpbmUgZGlyZWN0b3JpZXMgCnJvb3RfZGlyIDwtIHJwcm9qcm9vdDo6ZmluZF9yb290KHJwcm9qcm9vdDo6aGFzX2RpcigiLmdpdCIpKQphbmFseXNpc19kaXIgPC0gZmlsZS5wYXRoKHJvb3RfZGlyLCAiYW5hbHlzZXMiLCAidHdvLWhpdHMiKQppbnB1dF9kaXIgPC0gZmlsZS5wYXRoKGFuYWx5c2lzX2RpciwgImlucHV0IikKcmVzdWx0c19kaXIgPC0gZmlsZS5wYXRoKGFuYWx5c2lzX2RpciwgInJlc3VsdHMiKQpkYXRhX2RpciA8LSBmaWxlLnBhdGgocm9vdF9kaXIsICJkYXRhIikKcGxvdF9kaXIgPC0gZmlsZS5wYXRoKGFuYWx5c2lzX2RpciwgInBsb3RzIikKCiMgSWYgdGhlIGlucHV0IGFuZCByZXN1bHRzIGRpcmVjdG9yaWVzIGRvIG5vdCBleGlzdCwgY3JlYXRlIGl0CmlmICghZGlyLmV4aXN0cyhyZXN1bHRzX2RpcikpIHsKICBkaXIuY3JlYXRlKHJlc3VsdHNfZGlyLCByZWN1cnNpdmUgPSBUUlVFKQp9CgojIGFkZCBoaXN0b2xvZ2llcyBmaWxlIHNvIHdlIGNhbiBzdWJzZXQgbWFmCmhpc3RvbG9naWVzX2ZpbGUgPC0gZmlsZS5wYXRoKHJvb3RfZGlyLCJhbmFseXNlcyIsIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29sbGFwc2UtdHVtb3ItaGlzdG9sb2dpZXMiLCAicmVzdWx0cyIsIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiZ2VybWxpbmUtcHJpbWFyeS1wbHVzLXR1bW9yLWhpc3RvbG9naWVzLXBsb3QtZ3JvdXBzLWNsaW4tbWV0YS50c3YiKQoKIyByZW1vdmUgY2VsbCBsaW5lcyBmcm9tIGhpc3RvbG9naWVzIGZpbGUKb3BjX2hpc3RfZmlsZSA8LSBmaWxlLnBhdGgoZGF0YV9kaXIsICJoaXN0b2xvZ2llcy50c3YiKQoKcGxwX3N2X2ZpbGUgPC0gZmlsZS5wYXRoKGRhdGFfZGlyLCAicGJ0YV9nZXJtbGluZV9zdnMudHN2IikKCiMgZ29pIGZpbGUKY3BnX2ZpbGUgPC0gZmlsZS5wYXRoKHJvb3RfZGlyLCAiYW5hbHlzZXMiLCAib25jb2tiLWFubm90YXRpb24iLCAiaW5wdXQiLCAiY3BnLnR4dCIpCmBgYAoKIyMjIExvYWQgb25jb2tiIGFubm90YXRlZCBtYWYgYW5kIGV4cGxvcmUgZGF0YQoKYGBge3IgbG9hZCBmaWxlc30KZ2VybWxpbmUgPC0gcmVhZF90c3YoZmlsZS5wYXRoKHJvb3RfZGlyLCBwYXJhbXMkZ2VybV9pbikpICU+JQogIGJpbmRfcm93cyhyZWFkX3RzdihmaWxlLnBhdGgoZGF0YV9kaXIsCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGJ0YS1tZXJnZWQtcGxwLXZhcmlhbnRzLWF1dG9ndnAtYWJyaWRnZWQtbG93VkFGLWNwZ3MudHN2IikpKSAlPiUKICBkcGx5cjo6cmVuYW1lKE1hdGNoZWRfTm9ybV9TYW1wbGVfQmFyY29kZSA9IEtpZHNfRmlyc3RfQmlvc3BlY2ltZW5fSURfbm9ybWFsLAogICAgICAgICAgICAgICAgSHVnb19TeW1ib2wgPSBnZW5lX3N5bWJvbF92ZXAsCiAgICAgICAgICAgICAgICBIR1ZTY19nZXJtID0gSEdWU2MsCiAgICAgICAgICAgICAgICBIR1ZTcF9nZXJtID0gSEdWU3ApIAoKaW50ZWdyYXRlZF9oaXN0IDwtIHJlYWRfdHN2KGhpc3RvbG9naWVzX2ZpbGUpCm9wY19oaXN0IDwtIHJlYWRfdHN2KG9wY19oaXN0X2ZpbGUsIGd1ZXNzX21heCA9IDMwMDApICU+JQogIGZpbHRlcighaXMubmEocGF0aG9sb2d5X2RpYWdub3NpcyksCiAgICAgICAgIGV4cGVyaW1lbnRhbF9zdHJhdGVneSA9PSAiV0dTIiwKICAgICAgICAgdHVtb3JfZGVzY3JpcHRvciAhPSAiRGVyaXZlZCBDZWxsIExpbmUiKQoKIyBDUEdzCmNwZyA8LSByZWFkX2xpbmVzKGNwZ19maWxlKQoKIyBsb2FkIG1hZgptYWYgPC0gZGF0YS50YWJsZTo6ZnJlYWQoZmlsZS5wYXRoKHJvb3RfZGlyLCBwYXJhbXMkbWFmX2luKSwgZGF0YS50YWJsZSA9IEYpICU+JQogIGZpbHRlcihUdW1vcl9TYW1wbGVfQmFyY29kZSAlaW4lIG9wY19oaXN0JEtpZHNfRmlyc3RfQmlvc3BlY2ltZW5fSUQpCgojIENQR3Mgd2l0aG91dCBzb21hdGljIGhpdHMKc2V0ZGlmZihjcGcsIHVuaXF1ZShtYWYkSHVnb19TeW1ib2wpKQoKIyB0YWJsZSBvZiBnZW5lIGNvdW50cyBieSBvbmNvZ2VuaWMgZWZmZWN0Cm1hZiAlPiUKICBjb3VudChPTkNPR0VOSUMpICU+JQogIGFycmFuZ2UoLW4pCgojIGV4dHJhY3Qgb25jb2dlbmljL2xpa2VseSBvbmNvZ2VuaWMgYW5kL29yIG90aGVyIExPRiB2YXJpYW50cwpsb2ZfaGl0cyA8LSBtYWYgJT4lCiAgZmlsdGVyKE9OQ09HRU5JQyAlaW4lIGMoIkxpa2VseSBPbmNvZ2VuaWMiLCAiT25jb2dlbmljIiwgIlJlc2lzdGFuY2UiKSB8CiAgICAgICAgICAgVmFyaWFudF9DbGFzc2lmaWNhdGlvbiAlaW4lIGMoIkZyYW1lX1NoaWZ0X0RlbCIsICJGcmFtZV9TaGlmdF9JbnMiLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJNaXNzZW5zZV9NdXRhdGlvbiIsICJOb25zZW5zZV9NdXRhdGlvbiIsCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIlNwbGljZV9TaXRlIiwgIlRyYW5zbGF0aW9uX1N0YXJ0X1NpdGUiKSkgJT4lCiAgd3JpdGVfdHN2KGZpbGUucGF0aChyZXN1bHRzX2RpciwgInBidGEtb25jb2tiLW9uY29nZW5pYy1sb2YtbWFmLnRzdiIpKQoKIyBwcmV2YWxlbmNlIGJ5IGdlbmUKbG9mX2hpdHMgJT4lCiAgY291bnQoSHVnb19TeW1ib2wpICU+JQogIGFycmFuZ2UoLW4pCgojIHByZXZhbGVuY2UgYnkgdmFyaWFudCBpbiBvbmNva2IKbG9mX2hpdHMgJT4lCiAgY291bnQoVkFSSUFOVF9JTl9PTkNPS0IpICU+JQogIGFycmFuZ2UoLW4pCgojIHByZXZhbGVuY2UgYnkgdmFyaWFudCBpbiBvbmNva2IKbG9mX2hpdHMgJT4lCiAgY291bnQoTVVUQVRJT05fRUZGRUNUKSAlPiUKICBhcnJhbmdlKC1uKQoKIyBob3cgbWFueSBhcmUgaG90c3BvdHM/CmxvZl9oaXRzICU+JQogIGNvdW50KEhvdFNwb3RBbGxlbGUpICU+JQogIGFycmFuZ2UoLW4pCgpgYGAKCiMjIyBJbnRlZ3JhdGUgd2l0aCBnZXJtbGluZSBkYXRhCgpgYGB7ciB0d28gaGl0cyBzYW1lIGdlbmV9CiMgY29sbGFwc2UgY2FsbHMgYSBiaXQKbG9mX2hpdHNfc3Vic2V0IDwtIGxvZl9oaXRzICU+JQogIG11dGF0ZShWQUYgPSB0X2FsdF9jb3VudCAvIHRfZGVwdGgpICU+JQogIHNlbGVjdChNYXRjaGVkX05vcm1fU2FtcGxlX0JhcmNvZGUsIFR1bW9yX1NhbXBsZV9CYXJjb2RlLCBIdWdvX1N5bWJvbCwgVHJhbnNjcmlwdF9JRCwgSEdWU2MsIEhHVlNwLCBWQUYsIFNJRlQsIFBvbHlQaGVuLCBWYXJpYW50X0NsYXNzaWZpY2F0aW9uLCBIb3RTcG90QWxsZWxlLCBPTkNPR0VOSUMsIE1VVEFUSU9OX0VGRkVDVCwgVkFSSUFOVF9JTl9PTkNPS0IpCgojIHR3byBoaXQgQ1BHIG1hdGNoZXMKZ2VybWxpbmVfc29tYXRpY19nZW5lX21hdGNoZXMgPC0gZ2VybWxpbmUgJT4lCiAgaW5uZXJfam9pbihsb2ZfaGl0c19zdWJzZXQsIGJ5ID0gYygiTWF0Y2hlZF9Ob3JtX1NhbXBsZV9CYXJjb2RlIiwgIkh1Z29fU3ltYm9sIikpICU+JQogIHdyaXRlX3RzdihmaWxlLnBhdGgocmVzdWx0c19kaXIsICJnZXJtbGluZS1zb21hdGljLXR3by1nZW5lLWhpdHMudHN2IikpCmBgYAoKIyMjIExpc3QgZ2VybWxpbmUgKyBzb21hdGljIGdlbmUgaGl0cyBieSBzYW1wbGUKCmBgYHtyIGdlbmUgaGl0cyBieSBwYXRpZW50fQpjb2xsYXBzZWQgPC0gZ2VybWxpbmUgJT4lCiAgZmlsdGVyKEh1Z29fU3ltYm9sICVpbiUgY3BnKSAlPiUKICBkcGx5cjo6cmVuYW1lKEtpZHNfRmlyc3RfQmlvc3BlY2ltZW5fSURfbm9ybWFsID0gTWF0Y2hlZF9Ob3JtX1NhbXBsZV9CYXJjb2RlKSAlPiUKICBncm91cF9ieShLaWRzX0ZpcnN0X0Jpb3NwZWNpbWVuX0lEX25vcm1hbCkgJT4lCiAgc3VtbWFyaXNlKEh1Z29fU3ltYm9sID0gc3RyX2Moc29ydCh1bmlxdWUoSHVnb19TeW1ib2wpKSwgY29sbGFwc2UgPSAiOyAiKSkgJT4lCiAgbGVmdF9qb2luKGludGVncmF0ZWRfaGlzdCkKCmNvbGxhcHNlZF9sb2YgPC0gbG9mX2hpdHNfc3Vic2V0ICU+JQogIGRwbHlyOjpyZW5hbWUoS2lkc19GaXJzdF9CaW9zcGVjaW1lbl9JRF9ub3JtYWwgPSBNYXRjaGVkX05vcm1fU2FtcGxlX0JhcmNvZGUsCiAgICAgICAgICAgICAgICBLaWRzX0ZpcnN0X0Jpb3NwZWNpbWVuX0lEX3R1bW9yX21hZiA9IFR1bW9yX1NhbXBsZV9CYXJjb2RlLAogICAgICAgICAgICAgICAgSHVnb19TeW1ib2xfc29tYXRpYyA9IEh1Z29fU3ltYm9sKSAlPiUKICBncm91cF9ieShLaWRzX0ZpcnN0X0Jpb3NwZWNpbWVuX0lEX25vcm1hbCwgS2lkc19GaXJzdF9CaW9zcGVjaW1lbl9JRF90dW1vcl9tYWYpICU+JQogIHN1bW1hcmlzZShIdWdvX1N5bWJvbF9zb21hdGljID0gc3RyX2Moc29ydCh1bmlxdWUoSHVnb19TeW1ib2xfc29tYXRpYykpLCBjb2xsYXBzZSA9ICI7ICIpKQoKY29sbGFwc2VkX2dlcm1fc29tIDwtIGNvbGxhcHNlZCAlPiUKICBsZWZ0X2pvaW4oY29sbGFwc2VkX2xvZiwgYnkgPSAiS2lkc19GaXJzdF9CaW9zcGVjaW1lbl9JRF9ub3JtYWwiKSAlPiUKICB3cml0ZV90c3YoZmlsZS5wYXRoKHJlc3VsdHNfZGlyLCAiZ2VybWxpbmUtc29tYXRpYy1jb2xsYXBzZWQtYnktZ2VuZS50c3YiKSkKYGBgCgoKYGBge3J9Cmdlcm1saW5lX3N2IDwtIHJlYWRfdHN2KHBscF9zdl9maWxlKSAlPiUKICBkcGx5cjo6cmVuYW1lKE1hdGNoZWRfTm9ybV9TYW1wbGVfQmFyY29kZSA9IEtpZHNfRmlyc3RfQmlvc3BlY2ltZW5fSURfbm9ybWFsLAogICAgICAgICAgICAgICAgSHVnb19TeW1ib2wgPSBIdWdvX1N5bWJvbF9jcGcpIAoKIyB0d28gaGl0IENQRyBtYXRjaGVzCmdlcm1saW5lX3N2X3NvbWF0aWNfZ2VuZV9tYXRjaGVzIDwtIGdlcm1saW5lX3N2ICU+JQogIGlubmVyX2pvaW4obG9mX2hpdHNfc3Vic2V0LCBieSA9IGMoIk1hdGNoZWRfTm9ybV9TYW1wbGVfQmFyY29kZSIsICJIdWdvX1N5bWJvbCIpKSAlPiUKICB3cml0ZV90c3YoZmlsZS5wYXRoKHJlc3VsdHNfZGlyLCAiZ2VybWxpbmUtc3Ytc29tYXRpYy10d28tZ2VuZS1oaXRzLnRzdiIpKQpgYGAKCkNyZWF0ZSBsb2xsaXBvcCBwbG90cyBvZiBnZXJtbGluZSB2YXJpYW50cyArIHNvbWF0aWMgbXV0YXRpb25zLiBGaXJzdCwgbW9kaWZ5IGdlcm1saW5lIHZhcmlhbnQgZGYgdG8gYmUgY29tcGF0aWJsZSB3aXRoIG1hZiBjb2x1bW5zOgoKYGBge3J9CiMgTG9hZCBhbWlubyBhY2lkIGFiYnJldmlhdGlvbiBrZXkKYWFfa2V5IDwtIHJlYWRfdHN2KGZpbGUucGF0aChpbnB1dF9kaXIsICJhYV9zeW1ib2xfa2V5LnRzdiIpKQoKZ2VybV9tYWYgPC0gZ2VybWxpbmVfc29tYXRpY19nZW5lX21hdGNoZXMgJT4lCiAgZHBseXI6OnNlbGVjdCgtSEdWU2MsIC1IR1ZTcCwgLVZhcmlhbnRfQ2xhc3NpZmljYXRpb24pICU+JQogICMgcmVuYW1lIGNvbHVtbnMgdG8gbWF0Y2ggbWFmIGNvbHVtbnMKICBkcGx5cjo6cmVuYW1lKENocm9tb3NvbWUgPSBjaHIsCiAgICAgICAgICAgICAgICBTdGFydF9Qb3NpdGlvbiA9IHN0YXJ0LAogICAgICAgICAgICAgICAgVmFyaWFudF9DbGFzc2lmaWNhdGlvbiA9IHZhcmlhbnRfY2xhc3NpZmljYXRpb25fdmVwLAogICAgICAgICAgICAgICAgUmVmZXJlbmNlX0FsbGVsZSA9IHJlZiwKICAgICAgICAgICAgICAgIEhHVlNjID0gSEdWU2NfZ2VybSwKICAgICAgICAgICAgICAgIEhHVlNwX1Nob3J0ID0gSEdWU3BfZ2VybSkgJT4lCiAgIyBtb2RpZnkgdmFyaWFudCBjbGFzc2lmaWNhdGlvbnMgdG8gbWF0Y2ggdGhvc2UgaW4gbWFmCiAgZHBseXI6Om11dGF0ZShWYXJpYW50X0NsYXNzaWZpY2F0aW9uID0gY2FzZV93aGVuKAogICAgVmFyaWFudF9DbGFzc2lmaWNhdGlvbiA9PSAibWlzc2Vuc2VfdmFyaWFudCIgfiAiTWlzc2Vuc2VfTXV0YXRpb24iLAogICAgZ3JlcGwoInN0b3BfZ2FpbmVkIiwgVmFyaWFudF9DbGFzc2lmaWNhdGlvbikgfiAiTm9uc2Vuc2VfTXV0YXRpb24iLAogICAgZ3JlcGwoInNwbGljZV9hY2NlcHRvcnxzcGxpY2VfZG9ub3IiLCBWYXJpYW50X0NsYXNzaWZpY2F0aW9uKSB+ICJTcGxpY2VfU2l0ZSIsCiAgICBWYXJpYW50X0NsYXNzaWZpY2F0aW9uID09ICJmcmFtZXNoaWZ0X3ZhcmlhbnQiICYgbmNoYXIoYWx0KSA+IG5jaGFyKFJlZmVyZW5jZV9BbGxlbGUpIH4gIkZyYW1lX1NoaWZ0X0lucyIsCiAgICBWYXJpYW50X0NsYXNzaWZpY2F0aW9uID09ICJmcmFtZXNoaWZ0X3ZhcmlhbnQiICYgbmNoYXIoYWx0KSA8IG5jaGFyKFJlZmVyZW5jZV9BbGxlbGUpIH4gIkZyYW1lX1NoaWZ0X0RlbCIsCiAgICBWYXJpYW50X0NsYXNzaWZpY2F0aW9uID09ICJpbmZyYW1lX2RlbGV0aW9uIiB+ICJJbl9GcmFtZV9EZWwiLAogICAgVFJVRSB+IFZhcmlhbnRfQ2xhc3NpZmljYXRpb24KICApKSAlPiUKICAjIGFkZCB2YXJpYW50X3R5cGUgY29sdW1uCiAgZHBseXI6Om11dGF0ZShWYXJpYW50X1R5cGUgPSBjYXNlX3doZW4oCiAgICBuY2hhcihhbHQpID09IG5jaGFyKFJlZmVyZW5jZV9BbGxlbGUpIH4gIlNOUCIsCiAgICBuY2hhcihhbHQpIDwgbmNoYXIoUmVmZXJlbmNlX0FsbGVsZSkgfiAiREVMIiwKICAgIG5jaGFyKGFsdCkgPiBuY2hhcihSZWZlcmVuY2VfQWxsZWxlKSB+ICJJTlMiCiAgKSkgJT4lCiAgZHBseXI6OnNlbGVjdChNYXRjaGVkX05vcm1fU2FtcGxlX0JhcmNvZGUsIEh1Z29fU3ltYm9sLAogICAgICAgICAgICAgICAgVHVtb3JfU2FtcGxlX0JhcmNvZGUsCiAgICAgICAgICAgICAgICBDaHJvbW9zb21lLCBTdGFydF9Qb3NpdGlvbiwgVmFyaWFudF9DbGFzc2lmaWNhdGlvbiwKICAgICAgICAgICAgICAgIFJlZmVyZW5jZV9BbGxlbGUsIEhHVlNjLCBIR1ZTcF9TaG9ydCwgVmFyaWFudF9UeXBlKQoKbWVyZ2VkX21hZiA8LSBtYWYgJT4lCiAgYmluZF9yb3dzKGdlcm1fbWFmKSAlPiUKICAjIFJlcGxhY2UgQUEgc3ltYm9scyB3aXRoIG9uZS1sZXR0ZXIgc3ltYm9scwogIGRwbHlyOjptdXRhdGUoSEdWU3BfU2hvcnQgPSByZWR1Y2UyKGFhX2tleSRBQV90aHJlZV9sZXR0ZXIsIGFhX2tleSRBQV9vbmVfbGV0dGVyLAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIC5pbml0ID0gSEdWU3BfU2hvcnQsIHN0cl9yZXBsYWNlKSkKCndyaXRlX3RzdihtZXJnZWRfbWFmLCBmaWxlLnBhdGgocmVzdWx0c19kaXIsICJnZXJtLXNvbWF0aWMtbWVyZ2VkLW1hZi50c3YiKSkKYGBgCgpSZS1sb2FkIG1lcmdlZF9tYWYgYXMgbWFmIG9iamVjdCBhbmQgZ2VuZXJhdGUgbG9sbGlwb3AgcGxvdHMKCmBgYHtyfQptZXJnZWRfbWFmIDwtIG1hZnRvb2xzOjpyZWFkLm1hZihmaWxlLnBhdGgocmVzdWx0c19kaXIsICJnZXJtLXNvbWF0aWMtbWVyZ2VkLW1hZi50c3YiKSkKCmlkcyA8LSBnZXJtbGluZV9zb21hdGljX2dlbmVfbWF0Y2hlcyAlPiUKICBkaXN0aW5jdChUdW1vcl9TYW1wbGVfQmFyY29kZSkgJT4lCiAgcHVsbChUdW1vcl9TYW1wbGVfQmFyY29kZSkKCmZvciAoaWQgaW4gaWRzKXsKICAKICBnZW5lIDwtIGdlcm1saW5lX3NvbWF0aWNfZ2VuZV9tYXRjaGVzICU+JQogICAgZHBseXI6OmZpbHRlcihUdW1vcl9TYW1wbGVfQmFyY29kZSA9PSBpZCkgJT4lCiAgICBwdWxsKEh1Z29fU3ltYm9sKSAlPiUKICAgIHVuaXF1ZSgpCiAgCiAgdG9fcm0gPC0gdW5pcXVlKG1hZiRUdW1vcl9TYW1wbGVfQmFyY29kZVttYWYkVHVtb3JfU2FtcGxlX0JhcmNvZGUgIT0gaWRdKQoKICBwbG90X21hZiA8LSBtYWZ0b29sczo6ZmlsdGVyTWFmKG1lcmdlZF9tYWYsIHRzYiA9IHRvX3JtKQogIAogIHBkZihmaWxlLnBhdGgocGxvdF9kaXIsCiAgICAgICAgICAgICAgICAgICBnbHVlOjpnbHVlKCJ7aWR9LXtnZW5lfS1sb2xsaXBvcC5wZGYiKSksCiAgICAgICAgIHdpZHRoID0gNiwgaGVpZ2h0ID0gNCkKICAKICBsb2xsaXBvcFBsb3QocGxvdF9tYWYsIGdlbmUgPSBnZW5lLCBBQUNvbCA9ICJIR1ZTcF9TaG9ydCIsIAogICAgICAgICAgICAgICBzaG93RG9tYWluTGFiZWwgPSBGQUxTRSwgbGFiUG9zQW5nbGUgPSA0NSwgCiAgICAgICAgICAgICAgIGxhYmVsUG9zID0gImFsbCIsIGxlZ2VuZFR4dFNpemUgPSAxLCAKICAgICAgICAgICAgICAgbGFiUG9zU2l6ZSA9IDEuMjUsCiAgICAgICAgICAgICAgIHBvaW50U2l6ZSA9IDIuNSwKICAgICAgICAgICAgICAgcmVwZWwgPSBUUlVFLAogICAgICAgICAgICAgICBzaG93TXV0YXRpb25SYXRlID0gRkFMU0UsCiAgICAgICAgICAgICAgIGNvbGxhcHNlUG9zTGFiZWwgPSBUUlVFKQogIAogIGRldi5vZmYoKQogIAp9CmBgYAoKUHJpbnQgc2Vzc2lvbiBpbmZvCmBgYHtyfQpzZXNzaW9uSW5mbygpCmBgYA==